Page 54 of 57 FirstFirst ... 4445253545556 ... LastLast
Results 531 to 540 of 567
  1. #531
    Join Date
    Jun 2007
    Posts
    47
    Plugin Contributions
    0

    Default Re: Installation of Numinix Google Merchant v12.5 on Zen Cart 1.5 Part 2

    I cannot install the sql patch. I get error msg. WARNING: An Error occurred, please refresh the page and try again. I tried running the different sections individiually and all the other parts ran fine. This is the part it gags on:
    Code:
    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, 'Version', 'GOOGLE_PRODUCTS_VERSION', '1.13.0', 'Version Installed:', @configuration_group_id, 0, NOW(), NULL, NULL),
    (NULL, 'Debug', 'GOOGLE_PRODUCTS_DEBUG', 'false', 'Turn on simple debug?', @configuration_group_id, 0, NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),'), 
    (NULL, 'Google Merchant Center FTP Username', 'GOOGLE_PRODUCTS_USERNAME', 'ftp_username', 'Enter your Google Merchant Center FTP username', @configuration_group_id, 1, NOW(), NULL, NULL),
    (NULL, 'Google Merchant Center FTP Password', 'GOOGLE_PRODUCTS_PASSWORD', 'ftp_password', 'Enter your Google Merchant Center FTP password', @configuration_group_id, 2, NOW(), NULL, NULL),
    (NULL, 'Google Merchant Center Server', 'GOOGLE_PRODUCTS_SERVER', 'uploads.google.com', 'Enter froogle server<br />default: hedwig.google.com', @configuration_group_id, 3, NOW(), NULL, NULL),
    (NULL, 'Google Merchant Center PASV', 'GOOGLE_PRODUCTS_PASV', 'true', 'Turn PASV mode on or off for FTP upload?', @configuration_group_id, 4, NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),'),
    (NULL, 'Security Key', 'GOOGLE_PRODUCTS_KEY', @security_key, 'Enter a random string of numbers and characters to ensure only the admin accesses the file', @configuration_group_id, 5, NOW(), NULL, NULL),
    (NULL, 'Store Address', 'GOOGLE_PRODUCTS_ADDRESS', 'http://www.domain.com', 'Enter your website address', @configuration_group_id, 6, NOW(), NULL, NULL),
    (NULL, 'Store Description', 'GOOGLE_PRODUCTS_DESCRIPTION', '', 'Enter a short description of your store', @configuration_group_id, 7, NOW(), NULL, NULL),
    (NULL, 'Output File Name', 'GOOGLE_PRODUCTS_OUTPUT_FILENAME', 'domain', 'Set the name of your froogle output file', @configuration_group_id, 8, NOW(), NULL, NULL),
    (NULL, 'Compress Feed File', 'GOOGLE_PRODUCTS_COMPRESS', 'false', 'Compress Google Merchant Center file', @configuration_group_id, 9, NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),'),
    (NULL, 'Uploaded date', 'GOOGLE_PRODUCTS_UPLOADED_DATE', '', 'Date and time of the last upload', @configuration_group_id, 10, NOW(), NULL, NULL),
    (NULL, 'Output Directory', 'GOOGLE_PRODUCTS_DIRECTORY', 'feed/google/', 'Set the name of your froogle output directory', @configuration_group_id, 11, NOW(), NULL, NULL),
    (NULL, 'Enable Advanced XML Sanitization', 'GOOGLE_PRODUCTS_XML_SANITIZATION', 'false', 'If weird characters are causing your feed to not validate and you have already ensured your Zen Cart has been properly updated to use the UTF-8 charset, try enabling this option.  If this option is already enabled, try disabling it.', @configuration_group_id, 12, NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),'),
    
    (NULL, 'Max Execution Time', 'GOOGLE_PRODUCTS_MAX_EXECUTION_TIME', '300', 'Override your PHP configuration by entering a max execution time in seconds for the tool (leave blank to disable):', @configuration_group_id, 13, NOW(), NULL, NULL),
    (NULL, 'Memory Limit', 'GOOGLE_PRODUCTS_MEMORY_LIMIT', '128M', 'Override your PHP configuration by entering a memory limit for the tool (i.e. 128M or leave blank to disable):', @configuration_group_id, 14, NOW(), NULL, NULL),
    
    (NULL, 'Max products', 'GOOGLE_PRODUCTS_MAX_PRODUCTS', '0', 'Default = 0 for infinite # of products', @configuration_group_id, 20, NOW(), NULL, NULL),
    (NULL, 'Starting Point', 'GOOGLE_PRODUCTS_START_PRODUCTS', '0', 'Start at which entry (not product_id)?<br />Default=0', @configuration_group_id, 21, NOW(), NULL, NULL),
    (NULL, 'Included Categories', 'GOOGLE_PRODUCTS_POS_CATEGORIES', '', 'Enter category ids separated by commas <br>(i.e. 1,2,3)<br>Leave blank to allow all categories', @configuration_group_id, 22, NOW(), NULL, NULL),
    (NULL, 'Excluded Categories', 'GOOGLE_PRODUCTS_NEG_CATEGORIES', '', 'Enter category ids separated by commas <br>(i.e. 1,2,3)<br>Leave blank to deactivate', @configuration_group_id, 23, NOW(), NULL, NULL),
    (NULL, 'Included Manufacturers', 'GOOGLE_PRODUCTS_POS_MANUFACTURERS', '', 'Enter manufacturer ids separated by commas <br>(i.e. 1,2,3)<br>Leave blank to allow all categories', @configuration_group_id, 24, NOW(), NULL, NULL),
    (NULL, 'Excluded Manufacturers', 'GOOGLE_PRODUCTS_NEG_MANUFACTURERS', '', 'Enter manufacturer ids separated by commas <br>(i.e. 1,2,3)<br>Leave blank to deactivate', @configuration_group_id, 25, NOW(), NULL, NULL),
    
    (NULL, 'Expiration Date Base', 'GOOGLE_PRODUCTS_EXPIRATION_BASE', 'now', 'Expiration Date Base:<ul><li>now - add Adjust to current date;</li><li>product - add Adjust to product date (max(date_added, last_modified, date_available))</li></ul>', @configuration_group_id, 30, NOW(), NULL, 'zen_cfg_select_option(array(\'now\', \'product\'),'),
    (NULL, 'Expiration Date Adjust', 'GOOGLE_PRODUCTS_EXPIRATION_DAYS', '29', 'Expiration Date Adjust in Days', @configuration_group_id, 31, NOW(), NULL, NULL),
    
    (NULL, 'Show Default Currency', 'GOOGLE_PRODUCTS_CURRENCY_DISPLAY', 'true', 'Display Currency', @configuration_group_id, 40, NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),'),
    (NULL, 'Default Currency', 'GOOGLE_PRODUCTS_CURRENCY', 'USD', 'Select currency', @configuration_group_id, 41, NOW(), NULL, 'google_cfg_pull_down_currencies('),
    (NULL, 'Show Offer ID', 'GOOGLE_PRODUCTS_OFFER_ID', 'id', 'A unique alphanumeric identifier for the item - products_id code. ', @configuration_group_id, 42, NOW(), NULL, 'zen_cfg_select_option(array(\'id\', \'model\', \'UPC\', \'ISBN\', \'EAN\', \'false\'),'),
    (NULL, 'Shipping Options', 'GOOGLE_PRODUCTS_SHIPPING', '', 'The shipping options available for an item', @configuration_group_id, 46, NOW(), NULL, NULL),
    (NULL, 'Default Condition', 'GOOGLE_PRODUCTS_CONDITION', 'new', 'Choose your default condition', @configuration_group_id, 47, NOW(), NULL, 'zen_cfg_select_option(array(\'new\', \'used\', \'refurbished\'),'),
    (NULL, 'Condition', 'GOOGLE_PRODUCTS_PRODUCT_CONDITION', 'false', 'If using Numinix Product Fields, include condition?', @configuration_group_id, 48, NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),'),
    (NULL, 'Default Product Type', 'GOOGLE_PRODUCTS_DEFAULT_PRODUCT_TYPE', '', 'Enter your product type if using default', @configuration_group_id, 49, NOW(), NULL, NULL),
    (NULL, 'Product Type', 'GOOGLE_PRODUCTS_PRODUCT_TYPE', 'top', 'Use top-level, bottom-level, full-path, or your default setting as product_type?', @configuration_group_id, 50, NOW(), NULL, 'zen_cfg_select_option(array(\'default\', \'top\', \'bottom\', \'full\'),'),
    (NULL, 'Show Feed Language', 'GOOGLE_PRODUCTS_LANGUAGE_DISPLAY', 'false', 'Display Feed Language', @configuration_group_id, 51, NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),'),
    (NULL, 'Feed Language', 'GOOGLE_PRODUCTS_LANGUAGE', '1', 'Set your feed language (required):', @configuration_group_id, 53, NOW(), NULL, 'google_cfg_pull_down_languages_list('),
    (NULL, 'Show Weight', 'GOOGLE_PRODUCTS_WEIGHT', 'false', 'Include products weight?', @configuration_group_id, 53, NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),'),
    (NULL, 'Weight Units', 'GOOGLE_PRODUCTS_UNITS', 'pounds', 'What unit of weight measure?<br />pounds OR kilograms', @configuration_group_id, 54, NOW(), NULL, 'zen_cfg_select_option(array(\'pounds\', \'kilograms\'),'),
    (NULL, 'UPC/ISBN/EAN', 'GOOGLE_PRODUCTS_ASA_UPC', 'false', 'If using Numinix Product Fields, include UPC/ISBN/EAN?', @configuration_group_id, 55, NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),'),
    (NULL, 'Description 2', 'GOOGLE_PRODUCTS_ASA_DESCRIPTION_2', 'false', 'If using Numinix Product Fields, append description 2 to description?', @configuration_group_id, 56, NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),'),
    (NULL, 'Use Meta Title', 'GOOGLE_PRODUCTS_META_TITLE', 'false', 'Use meta title as the title if it exists (for products only)?', @configuration_group_id, 57, NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),'),
    (NULL, 'Enable Map Pricing', 'GOOGLE_PRODUCTS_MAP_PRICING', 'false', 'Enable MAP Pricing (requires separate add-on)?', @configuration_group_id, 58, NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),'), 
    (NULL, 'Use cPath in url', 'GOOGLE_PRODUCTS_USE_CPATH', 'false', 'Use cPath in product info url', @configuration_group_id, 59, NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),'),
    (NULL, 'Google Product Category Default', 'GOOGLE_PRODUCTS_DEFAULT_PRODUCT_CATEGORY', '', 'Enter a default Google product category from the <a href="http://www.google.com/support/merchants/bin/answer.py?answer=160081" target="_blank">Google Category Taxonomy</a> or leave blank (note: you can override this default setting by creating a Google Product Category attribute as per the documentation):', @configuration_group_id, 60, NOW(), NULL, NULL),
    
    (NULL, 'Display Tax', 'GOOGLE_PRODUCTS_TAX_DISPLAY', 'false', 'Display tax per product? (US only)', @configuration_group_id, 70, NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),'),
    (NULL, 'Tax Country', 'GOOGLE_PRODUCTS_TAX_COUNTRY', 'US', 'The country an item is taxed in (2-letter ISO CODE)', @configuration_group_id, 71, NOW(), NULL, NULL),
    (NULL, 'Tax Region', 'GOOGLE_PRODUCTS_TAX_REGION', 'CA', 'The geographic region that a tax rate applies to, e.g., in the US, the two-letter state abbreviation, ZIP code, or ZIP code range using * wildcard (examples: CA, 946*)', @configuration_group_id, 72, NOW(), NULL, NULL),
    (NULL, 'Tax Rate', 'GOOGLE_PRODUCTS_TAX_RATE', '5.00', 'Enter the percentage as a decimal number (without "%" symbol)', @configuration_group_id, 73, NOW(), NULL, NULL),
    (NULL, 'Tax on Shipping', 'GOOGLE_PRODUCTS_TAX_SHIPPING', 'n', 'Boolean value for whether you charge tax on shipping, y for yes or n for no - the default value is n', @configuration_group_id, 74, NOW(), NULL, 'zen_cfg_select_option(array(\'y\', \'n\'),'),
    
    (NULL, 'Payments Accepted', 'GOOGLE_PRODUCTS_PAYMENT_METHODS', 'Cash,Check,Visa,MasterCard,AmericanExpress,Discover,WireTransfer', 'What payment methods do you accept?', @configuration_group_id, 80, NOW(), NULL, NULL),
    (NULL, 'Payment Notes', 'GOOGLE_PRODUCTS_PAYMENT_NOTES', 'GoogleCheckout', 'Add payment notes (use this for showing you accept Google Checkout)', @configuration_group_id, 81, NOW(), NULL, NULL),
    
    (NULL, 'Select Shipping Method', 'GOOGLE_PRODUCTS_SHIPPING_METHOD', 'none', 'Select a shipping method from the drop-down list that is used in your store, or leave as none', @configuration_group_id, 90, NOW(), NULL, 'zen_cfg_select_option(array(\'zones table rate\', \'flat rate\', \'per item\', \'per weight unit\', \'table rate\', \'zones\', \'percategory\', \'free shipping\', \'free rules shipping\', \'none\'),'),
    (NULL, 'Table Zone ID', 'GOOGLE_PRODUCTS_RATE_ZONE', '', 'Enter the table rate ID if using a shipping method that uses table rates:', @configuration_group_id, 91, NOW(), NULL, NULL),  
    (NULL, 'Shipping Country', 'GOOGLE_PRODUCTS_SHIPPING_COUNTRY', '', 'Select the destination country for the shipping rates:', @configuration_group_id, 92, NOW(), NULL, 'google_cfg_pull_down_country_list('),
    (NULL, 'Shipping Region', 'GOOGLE_PRODUCTS_SHIPPING_REGION', '', 'Enter the destination region within the selected country (state code, or zip with wildcard *):', @configuration_group_id, 93, NOW(), NULL, NULL),
    (NULL, 'Shipping Service', 'GOOGLE_PRODUCTS_SHIPPING_SERVICE', '', 'Enter the shipping service type (i.e. Ground):', @configuration_group_id, 94, NOW(), NULL, NULL),
    (NULL, 'Pickup', 'GOOGLE_PRODUCTS_PICKUP', 'do not display', 'Local pickup available?', @configuration_group_id, 95, NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\', \'do not display\'),'),
    
    (NULL, 'Alternate Image URL', 'GOOGLE_PRODUCTS_ALTERNATE_IMAGE_URL', '', 'Add an alternate URL if your images are hosted offsite (i.e. http://www.domain.com/images/).  Your defined image will be appended to the end of this URL.', @configuration_group_id, 100, NOW(), NULL, NULL),
    (NULL, 'Image Handler', 'GOOGLE_PRODUCTS_IMAGE_HANDLER', 'false', 'Resize images using image handler (separate module required)?', @configuration_group_id, 101, NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),'),
    
    (NULL, 'Magic SEO URLs', 'GOOGLE_PRODUCTS_MAGIC_SEO_URLS', 'false', 'Output Magic SEO URLs (separate module required)?', @configuration_group_id, 999, NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),');
    Any ideas on how to fix this?

  2. #532
    Join Date
    Jun 2007
    Posts
    47
    Plugin Contributions
    0

    Default Re: Installation of Numinix Google Merchant v12.5 on Zen Cart 1.5 Part 2

    I completely uninstalled and reinstalled and it worked. I don't know why it was not working before. Gremlins??

  3. #533

    Default how to auto fill products_model

    Hello

    How can i set up the table products_model in order to get something automatically filled with whatever numbers or letters when i add a product?


    I sell minerals, none of my products has a model number, each piece is unique, i just need a generated unique model number for Google feed...

    Thanks

    L.

    version zencart 1.3.9h

  4. #534
    Join Date
    Feb 2007
    Posts
    1,704
    Plugin Contributions
    0

    Default Re: how to auto fill products_model

    With the transition of Google Shopping to a commercial model built on Product Listing Ads, we have updated our international feed specifications . These changes will take effect in March 2013. Advertisers who are using the reduced Product Ads feed spec will need to bring their feeds into compliance with these new requirements.]

    are we all still compatible??


  5. #535
    Join Date
    Mar 2013
    Location
    Bloomfield Hills, Michigan, United States
    Posts
    3
    Plugin Contributions
    0

    Default Re: how to auto fill products_model

    Hi, I recently took over a client account using Zen-Cart 1.39e. I installed the correct version of Google Merchant Center Feeder, following the instructions very carefully, and do see Admin > Configuration > Google Merchant Center Feeder Configuration with the long list of parameters, some of which are already filled out, others of which are blank or have placeholder data.

    However, I don't see Admin > Tools > Google Merchant Center Feeder.

    There aren't any error messages or anything; it just isn't there.

    Have I done something wrong, or do I have to fill in the missing parameters before it will appear, or what?

    Thanks in advance.

  6. #536
    Join Date
    Mar 2013
    Location
    Bloomfield Hills, Michigan, United States
    Posts
    3
    Plugin Contributions
    0

    Default Re: how to auto fill products_model

    UPDATE:

    OK, never mind...it turns out there were several problems:

    1. I had one of the files in the wrong directory, D'oh!
    2. a couple of files had to have their CHMOD changed (NOT the feeds directory; some others which weren't referenced in the install instructions)

    Once both of these were resolved, voila. Still have to familiarize myself with the actual categorization etc, but that's just to match Google's requirements, not a problem with the script I presume.

    Thanks anyway :)

    Quote Originally Posted by Charles Gaba View Post
    Hi, I recently took over a client account using Zen-Cart 1.39e. I installed the correct version of Google Merchant Center Feeder, following the instructions very carefully, and do see Admin > Configuration > Google Merchant Center Feeder Configuration with the long list of parameters, some of which are already filled out, others of which are blank or have placeholder data.

    However, I don't see Admin > Tools > Google Merchant Center Feeder.

    There aren't any error messages or anything; it just isn't there.

    Have I done something wrong, or do I have to fill in the missing parameters before it will appear, or what?

    Thanks in advance.

  7. #537
    Join Date
    Jun 2012
    Posts
    94
    Plugin Contributions
    0

    Default Re: how to auto fill products_model

    Hi, I've been using Zen Cart 1.5 since July of 2012 and Google Merchant Center Feeder.

    I have not had any issues with the Google Merchant Center Feeder until today. I put a few items back in-stock that have not been active for the last 3 years. Now I'm getting an error in the XML feed from google. It is giving me an error on "Product_Type" for the product that was put back in-stock only. When I look at the XML file the "Product_Type" is missing. The Google Merchant Center Feeder created the "Product Type" on the newly added items in the same category. Why would the Google Merchant Center Feeder not create a "Product_type"?

  8. #538
    Join Date
    Jun 2012
    Posts
    41
    Plugin Contributions
    0

    Default Re: how to auto fill products_model

    Well, it took me three days, but I think I've read all the thread...

    Obviously running on ZC 1.3.9h and GMCF v1.12.5 with some "last minutes patches applied" already (thank you torvista !).
    Beside some problems on some items, which I already know (less than 1%), I'm currently uploading my feeds correctly and with success.

    I've some of questions which are not yet too clear to me and I hope to find someone willing to clean my ideas a little bit...

    1.
    Being Italian and running a "international store", I've decided to start with the English translation, which is something not too difficult for me, so the website is actually available both in Italian and English.

    Being so, I can set up my feed correctly for the Italian market, but I would start setting up a feed for other countries too.

    Does this NECESSARLY involve manually making all the variations within the GMCF configuration each time, or is there any way of having a "double configuration", so that I might avoid worrying about forgetting a needed detail when switching ?

    Does anyone know of a possible solution, if externally available ?

    Or am I so dumb and I really did not understand how this really works ??? (it might be !!!)

    2.
    I've seen that someone had some problems of images used by GMC without having the necessary WATERMARK.
    I run IH3 too (recently upgraded it from IH2), I have the same problem (images without watermark) and I've seen no clear answer of how others solved this, if a solution is available...
    Anyone ?

    3.
    When switching from language to language, does anyone know if the Google Taxonomy should be translated too, or if leaving the previous language one, it will be still correct (being changed by Google to its related one in the other language) ???

    Sorry if some of my questions seems dumb: sometimes (and with Google very often) I think I really am...
    ABANDONED PROJECT

  9. #539
    Join Date
    Jun 2012
    Posts
    41
    Plugin Contributions
    0

    Default Re: how to auto fill products_model

    Quote Originally Posted by mickymix View Post
    2.
    I've seen that someone had some problems of images used by GMC without having the necessary WATERMARK.
    I run IH3 too (recently upgraded it from IH2), I have the same problem (images without watermark) and I've seen no clear answer of how others solved this, if a solution is available...
    Anyone ?
    I've some more details on this, while still not having a solution yet...

    The switch for IH2 or IH3 actually works... if it is OFF the feed file contains the path to the original picture of the item, if it is ON it gets the image from the bmz_cache folder...

    The problem is (and I don't know if it is a IH3 or GMFM fault) that the image to which the links points is of a UN-WATERMARKETED image (present, I don't know for which reason, inside bmz_cache folder...).

    Is this a "middle" image used by IH ?
    Is this a wrong image to which GMFM points to ?

    Anyone ?
    ABANDONED PROJECT

  10. #540
    Join Date
    Jun 2012
    Posts
    41
    Plugin Contributions
    0

    Default Re: how to auto fill products_model

    Well,
    not seing so much activity here, but making a lot of activity on my side, instead of BUMPING my question, I add some more details to the problem, so that maybe, the first one reading and having a clue, might add his experience...

    I've tried investigating HOW it was possible that IH3 could make a copy without watermark in the bmz_cache folder, where it keeps it cached images, but I haven't been able yet to find an answer...

    Trying many things, I also cleared the bmz_cache contents... and guess what ???

    I've discovered that, for unknown reasons, while the watermarked images are present in the bmz_cache folder, when I launch the feed generation, the contents of the feed ONLY GET THE IMAGES from bmz_cache folder for some articles (not all of them), while the others are sourced out from the original images repository...

    This is a non-sense, at least until I understand HOW IH3 generates its filenames (and WHERE it stores such information !!!).

    Really, I'm getting crazy !!!
    ABANDONED PROJECT

 

 
Page 54 of 57 FirstFirst ... 4445253545556 ... LastLast

Similar Threads

  1. v139h Adding GTIN values to Numinix Google Merchant Feeder
    By longstockings in forum All Other Contributions/Addons
    Replies: 2
    Last Post: 22 Nov 2016, 08:01 PM
  2. v155 Numinix Product Fields / Google Merchant feed error
    By CandleMan in forum All Other Contributions/Addons
    Replies: 9
    Last Post: 22 Nov 2016, 07:10 PM
  3. v154 Numinix Module Version Plugin
    By DarkAngel in forum General Questions
    Replies: 2
    Last Post: 16 Jul 2015, 01:00 AM
  4. v150 Need someone to volunteer to install Numinix Merchant feed. Google base feeder.
    By coucho in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 29 Jun 2012, 04:18 AM
  5. Google Chrome Reporting Old Version on Product Page
    By drkramer in forum General Questions
    Replies: 3
    Last Post: 4 Sep 2008, 06:44 PM

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