Page 55 of 68 FirstFirst ... 545535455565765 ... LastLast
Results 541 to 550 of 672
  1. #541

    Default Re: Froogle Merchant Center merged into GoogleBase

    Now the feed file is 4 mb.
    Rich People scream, Wealthy people whisper

    www.cooltechcentral.com

  2. #542
    Join Date
    Dec 2006
    Location
    Vermont
    Posts
    128
    Plugin Contributions
    0

    Default Re: Froogle Merchant Center merged into GoogleBase

    I just noticed that I'm having a problem with the Google Froogle feed.

    I HAD a "Salemaker" sale, that ended 4/15. However, the froogle feeder is STILL sending the SALE price to the TXT file.

    I even DELETED all of the "Sales" I had set up, but it's still sending the sale price.

    Has anybody seen this and/or fixed it? Or does anyone have a cure for it?

    I also checked to be sure I don't have "specials" on the items, and don't.

    Thanks.

  3. #543
    Join Date
    Dec 2006
    Location
    Vermont
    Posts
    128
    Plugin Contributions
    0

    Default Re: Froogle Merchant Center merged into GoogleBase

    Quote Originally Posted by rcrosier View Post
    I just noticed that I'm having a problem with the Google Froogle feed.

    I HAD a "Salemaker" sale, that ended 4/15. However, the froogle feeder is STILL sending the SALE price to the TXT file.

    I even DELETED all of the "Sales" I had set up, but it's still sending the sale price.

    Has anybody seen this and/or fixed it? Or does anyone have a cure for it?

    I also checked to be sure I don't have "specials" on the items, and don't.

    Thanks.
    OK, I did a little digging, and it looks like the Froogle Feeder is using 'products_price_sorter' for the data, and in my 'products' file, many of my products SALE price is in there...

    how do I clean that up? What is that field for?

    Thanks!

  4. #544
    Join Date
    Dec 2006
    Location
    Vermont
    Posts
    128
    Plugin Contributions
    0

    Default Re: Froogle Merchant Center merged into GoogleBase

    Quote Originally Posted by rcrosier View Post
    OK, I did a little digging, and it looks like the Froogle Feeder is using 'products_price_sorter' for the data, and in my 'products' file, many of my products SALE price is in there...

    how do I clean that up? What is that field for?

    Thanks!
    SOLVED! FYI, somehow, during setup, ZenCart must have used a different currency conversion...??? I deleted all that we don't use (Euros, GB lbs, etc) and ran the 'update products price sorter' in store manager, and that fixed them all.

    Anybody know what can cause those prices to be wrong? We have never KNOWINGLY used anything but USD...

  5. #545
    Join Date
    Dec 2005
    Location
    Perth, Western Australia, Australia
    Posts
    781
    Plugin Contributions
    0

    red flag Re: Froogle Merchant Center merged into GoogleBase

    Hi,

    I ran your sql code but received the following error. What went wrong? Please advise. Thanks.

    1146 Table 'dealbyet_zc2.configuration_group' doesn't exist
    in:
    [SELECT @configuration_group_id:=configuration_group_id FROM configuration_group WHERE configuration_group_title= 'Google Froogle Configuration' LIMIT 1;]
    If you were entering information, press the BACK button in your browser and re-check the information you had entered to be sure you left no blank fields.



    Quote Originally Posted by kbalona View Post
    WOOOOOOOHOOOOOOO!!!!!
    Yes! It's working! Apparently I hadn't uploaded the new googlefroogle.php to the store's root. (Actually, I believe what happened is that I forgot to check "overwrite old file", and I uploaded but it did not overwrite the old file).

    Just make sure you upload all the new files correctly, and use this SQL code (I wonder if someone could change it in the download section?)

    Code:
    DELETE FROM configuration WHERE configuration_key='GOOGLE_FROOGLE_MANUFACTURER';
    
    DELETE FROM configuration WHERE configuration_key='GOOGLE_FROOGLE_PRODUCT_TYPE_SHOW';
    UPDATE configuration SET configuration_description='Choose your product type' WHERE configuration_key='GOOGLE_FROOGLE_PRODUCT_TYPE';
    
    
    SET @configuration_group_id=0;
    SELECT @configuration_group_id:=configuration_group_id FROM configuration_group WHERE configuration_group_title= 'Google Froogle Configuration' LIMIT 1;
    
    INSERT INTO configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added, use_function, set_function) VALUES (NULL, 'Condition', 'GOOGLE_FROOGLE_CONDITION', 'new', 'Choose your Product\'s Condition', @configuration_group_id, 12, NOW(), NULL, 'zen_cfg_select_option(array(\'new\', \'used\', \'refurbished\'),');
    The Team Behind DealByEthan.com | Curating unique finds for a discerning community. Committed to a seamless and inspiring shopping experience. Connect with us: https://linktr.ee/dealbyethan


  6. #546
    Join Date
    Sep 2004
    Posts
    2,420
    Plugin Contributions
    2

    Default Re: Froogle Merchant Center merged into GoogleBase

    Quote Originally Posted by dealbyethan.com View Post
    Hi,

    I ran your sql code but received the following error. What went wrong? Please advise. Thanks.

    1146 Table 'dealbyet_zc2.configuration_group' doesn't exist
    in:
    [SELECT @configuration_group_id:=configuration_group_id FROM configuration_group WHERE configuration_group_title= 'Google Froogle Configuration' LIMIT 1;]
    If you were entering information, press the BACK button in your browser and re-check the information you had entered to be sure you left no blank fields.
    Note your TABLE Names have a prefix:

    dealbyet_zc2.configuration_group'

    Prefix is:

    dealbyet_zc2

    You can edit the SQL to append your prefix (wherever a TABLE name is observed).

    But if you copy the existing SQL from a text editor and then paste into Tools >Install SQL patches it should work, without first editing SQL. But do NOT upload. (Install SQL Patches is suppose to auto append you DB table prefix but some issues with different server configurations).

    Much previous discussion about this common issue in this thread (and same discussion in Google Sitemap and User Tracking support threads in this forum).

    Good luck,
    Woody

  7. #547
    Join Date
    Sep 2006
    Location
    Leeds, UK
    Posts
    174
    Plugin Contributions
    1

    Default Re: Froogle Merchant Center merged into GoogleBase

    Woody,

    Google have started rejecting my feed due to now unsupported field "label" and also they are not allowing the product type to be called "other". I've had a look at the feed and the easiest way to fix is to rename the label field and call it product_type. Have you already done this or should I get hacking code?

  8. #548
    Join Date
    Aug 2004
    Location
    Saint Petersburg, Russia
    Posts
    1,786
    Plugin Contributions
    13

    Default Re: Froogle Merchant Center merged into GoogleBase

    Quote Originally Posted by Woodymon View Post
    Note your TABLE Names have a prefix:

    dealbyet_zc2.configuration_group'

    Prefix is:

    dealbyet_zc2

    It not prefix, this name of a database

  9. #549
    Join Date
    Dec 2005
    Location
    Perth, Western Australia, Australia
    Posts
    781
    Plugin Contributions
    0

    red flag Re: Froogle Merchant Center merged into GoogleBase

    Hi,

    This is confusing. I previously run the sql by pasting and sending it in the admin but it didn't work. Can someone please tell me the exact sql code I need to use based on the error I get in order to make the froogle module work on my website? Thanks.
    The Team Behind DealByEthan.com | Curating unique finds for a discerning community. Committed to a seamless and inspiring shopping experience. Connect with us: https://linktr.ee/dealbyethan


  10. #550
    Join Date
    Sep 2004
    Posts
    2,420
    Plugin Contributions
    2

    Default Re: Froogle Merchant Center merged into GoogleBase

    Note your TABLE Names have a prefix:
    dealbyet_zc2.configuration_group'
    Prefix is: dealbyet_zc2
    Quote Originally Posted by a_berezin View Post
    It not prefix, this name of a database
    Andrew is of course correct. I'm not dyslexic but the mind was somehow registering the underscore (_) and period (.) in reverse. My apologies.

    What is the name of the SQL file you are attempting to patch with and what version of the GoogleFroogle mod?

    It appears the SQL patch you may be running is a version updater and not the full SQL patch.

    Did you have this mod (or a previous version) installed previously and are trying to upgrade? Or is this suppose to be a fresh install?

    Try running googlefroogle.sql (this is the patch for new installs as described in the readme). Then no need to run the other sql patches

    Woody

 

 
Page 55 of 68 FirstFirst ... 545535455565765 ... LastLast

Similar Threads

  1. Google Merchant Center
    By ccn1 in forum All Other Contributions/Addons
    Replies: 3
    Last Post: 24 Oct 2011, 12:07 PM
  2. Froogle / GoogleBase Feeds (PC Based )
    By Scrat in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 9 Feb 2007, 11:25 PM
  3. GoogleBase/Froogle
    By sschueller in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 12 Dec 2006, 11:54 PM
  4. Which Googlebase Froogle Feed Works With 1.35??????
    By mfreund in forum All Other Contributions/Addons
    Replies: 2
    Last Post: 28 Oct 2006, 08:52 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR