Page 168 of 357 FirstFirst ... 68118158166167168169170178218268 ... LastLast
Results 1,671 to 1,680 of 3563
  1. #1671
    Join Date
    Jul 2007
    Posts
    2,169
    Plugin Contributions
    16

    Default Re: Google Base Feeder Support Thread

    Quote Originally Posted by dannyd View Post
    I tried the above and my feed is only processing 46/91 products .. any ideas ?

    What version of Google base are you using?
    Have you ran the GOOGLE_BASE_DEBUG yet? If not run that and see what kind of errors it's showing if any.
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

  2. #1672
    Join Date
    Jul 2007
    Posts
    2,169
    Plugin Contributions
    16

    Default Re: Google Base Feeder Support Thread

    Quote Originally Posted by dannyd View Post
    I tried the above and my feed is only processing 46/91 products .. any ideas ?
    I am running the latest version of Google Base 1.7.4 I replaced this portion of the xml sanitizer code in includes/classes/google_base.php in 1.7.4 with the one from 1.7.0a
    This is what version 1.7.4 looks like

    // sanitizes code for XML
    function google_base_xml_sanitizer($str, $cdata = false) {
    $str = str_replace(array("\t" , "\n", "\r"), ' ', $str);
    $str = html_entity_decode($str);
    $str = strip_tags($str);
    $str = htmlentities($str);
    $str = utf8_encode(str_replace(array("®", "©", "™", " "), array('(r)', '(c)', '(tm)', ' '), $str));
    $str = eregi_replace("[^[:alnum:][:space:].,!()'-_/+=?ÀÂÄßÈÉÊËÎÏÔÖÙÛÜàâäèéêëîïôöùûüÿÇç«»]", "", $str);
    $out = "";
    $length = strlen($str);
    for ($i = 0; $i < $length; $i++) {
    $current = ord($str{$i});
    if ((($current == 0x9) || ($current == 0xA) || ($current == 0xD) || (($current >= 0x20) && ($current <= 0xD7FF)) || (($current >= 0xE000) && ($current <= 0xFFFD)) || (($current >= 0x10000) && ($current <= 0x10FFFF))) && ($current > 10) ) {
    $out .= chr($current);
    } else {
    $out .= " ";
    }
    }
    $str = trim($out);
    $str = str_replace(array("&lt;", "&gt;"), array("<", ">"), $str);
    if ($cdata) {
    $str = '<![CDATA[' . $str . ']]>';
    }
    return $str;
    }
    Replace with this one from 1.7.0a

    // sanitizes code for XML
    function google_base_xml_sanitizer($str, $cdata = false) {
    $_strip_search = array("![\t ]+$|^[\t ]+!m",'%[\r\n]+%m'); // remove CRs and newlines
    $_strip_replace = array('',' ');
    $_cleaner_array = array(">" => "> ", "&reg;" => "", "®" => "", "&trade;" => "", "™" => "", "\t" => "", " " => "");
    $str = html_entity_decode($str);
    $str = strtr($str, $_cleaner_array);
    $str = preg_replace($_strip_search, $_strip_replace, $str);
    $str = strip_tags($str);
    $str = eregi_replace("[^[:alnum:][:space:].,!()'-_/+=?äÂÄöÖüÜß]", "", $str);
    $str = utf8_encode(htmlentities($str));
    //$str = $str;
    $str = str_replace('&amp;amp;', '&amp;', $str);
    //if (!$cdata) {
    //$str = htmlentities(html_entity_decode($str));
    //$in = $out = array();
    //$in[] = "&reg;"; $out[] = '(r)';
    //$in[] = "&copy;"; $out[] = '(c)';
    //$in[] = "&trade;"; $out[] = '(tm)';
    //$str = html_translate($str);
    $str = trim($str);
    if ($cdata) {
    $str = '<![CDATA[' . $str . ']]>';
    }
    return $str;
    }

    Make sure you Include Zero Quantity" is ON and it is included all your items.
    Create another feed and see what happens. Hope this helps.
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

  3. #1673
    Join Date
    Feb 2007
    Posts
    513
    Plugin Contributions
    2

    Default Re: Google Base Feeder Support Thread

    When I go into the cpanel to add a cron job

    Am I suppose to add 0 5 * * *

    in the "Command to run:" 0 5 * * * GET http://www.tack2u.co.uk/googlefroogle.php?feed=fy_uy_tp

    if it gives me the options on when to run in underneath?

  4. #1674
    Join Date
    Feb 2007
    Posts
    513
    Plugin Contributions
    2

    Default Re: Google Base Feeder Support Thread

    sorry I went into the Advanced (Unix Style) option and I see what its there for now.

  5. #1675
    Join Date
    Jul 2008
    Posts
    360
    Plugin Contributions
    0

    Default Re: Google Base Feeder Support Thread

    Quote Originally Posted by countrycharm View Post
    Make sure your feed cache is set to 777
    Go to your store admin/configurations/google_base_feeder_configurations and cut on the debug and create another feed and see what errors it tells you there.
    If that don't show anything lets try one more thing Look in your server root for a file named php.ini. If you don't have one create/open a file called php.ini and add the following lines:
    Feed cache? where is it? the only feed in the store's tree is the feed directory which has 777 permissions.

    My php.ini is controlled by my host I have no access to it, so I can't pass any parameters.

    I am sure if I am allowed to write my own php.ini on my root folder ... with just these parameters ...

    Thanks

  6. #1676
    Join Date
    Mar 2006
    Location
    Rosebud, Victoria, Australia
    Posts
    310
    Plugin Contributions
    2

    Default Re: Google Base Feeder Support Thread

    G'day,

    I think that in the function google_base_xml_sanitizer in file includes/classes/google_base.php needs the line

    Code:
    $str = preg_replace('/\s+/', ' ', $str);
    added to replace muliple spaces with a single space, somewhere just before it finishes.

    This will help Google Base Feeder's test for a description length of at least 15 characters work better.

    I'm not sure how to handle this length test treating HTML entities in the sanitized description as multiple characters instead of just one caracter.

    Cheers, Lloyd Borrett.
    Zen Cart 1.5.5e, PHP 5.3.29 MySQL 5.5.42

  7. #1677
    Join Date
    Apr 2009
    Location
    Los Angeles, California
    Posts
    128
    Plugin Contributions
    0

    Default Re: Google Base Feeder Support Thread

    i have been reading this thread all night and cant find the solution.

    Zencart 1.3.8a
    Google Base Feeder 1.7.4

    i am getting these errors:

    Code:
    Feed status summary
    
    1153 of 1538 items inserted - Processed on Jun 14, 2009 12:15 am PDT
    
    Detected file format: XML
    Feed Level Messages
    Warning: Missing recommended attribute: upc
    While items missing recommended attributes will process successfully, we recommend including relevant attributes if they are available.
    Item Errors - 385 items with errors
    383
    Missing required attribute: description
    Please make sure you include all required attributes in your data feed.
    
    Examples:
    Item Nr. 	Line Nr.
    15 	273
    387 	7,341
    390 	7,398
    591 	11,217
    905 	17,183
    36
    Missing title
    You must enter an item title. "Title" is a required attribute.
    
    Examples:
    Item Nr. 	Line Nr.
    111 	2,097
    118 	2,230
    288 	5,460
    1,415 	26,873
    1,420 	26,968
    Item Warnings - 382 items with warnings
    380
    Invalid encoding
    Some of the characters in your data feed seem to be invalid. Please verify all the characters in your feed are valid for your selected encoding.
    Learn more.
    
    Examples:
    Item Nr. 	Line Nr.
    15 	290
    387 	7,358
    390 	7,415
    591 	11,234
    905 	17,200
    36
    Invalid encoding
    Some of the characters in your data feed seem to be invalid. Please verify all the characters in your feed are valid for your selected encoding.
    Learn more.
    
    Examples:
    Item Nr. 	Line Nr.
    111 	2,098
    118 	2,231
    288 	5,461
    1,415 	26,874
    1,420 	26,969
    i went back and checked the examples and all seemed fine. all of my products have Titles & Descriptions

  8. #1678

    Default Re: Google Base Feeder Support Thread

    Quote Originally Posted by ams30gts View Post
    i have been reading this thread all night and cant find the solution.

    Zencart 1.3.8a
    Google Base Feeder 1.7.4

    i am getting these errors:

    Code:
    Feed status summary
    
    1153 of 1538 items inserted - Processed on Jun 14, 2009 12:15 am PDT
    
    Detected file format: XML
    Feed Level Messages
    Warning: Missing recommended attribute: upc
    While items missing recommended attributes will process successfully, we recommend including relevant attributes if they are available.
    Item Errors - 385 items with errors
    383
    Missing required attribute: description
    Please make sure you include all required attributes in your data feed.
    
    Examples:
    Item Nr. 	Line Nr.
    15 	273
    387 	7,341
    390 	7,398
    591 	11,217
    905 	17,183
    36
    Missing title
    You must enter an item title. "Title" is a required attribute.
    
    Examples:
    Item Nr. 	Line Nr.
    111 	2,097
    118 	2,230
    288 	5,460
    1,415 	26,873
    1,420 	26,968
    Item Warnings - 382 items with warnings
    380
    Invalid encoding
    Some of the characters in your data feed seem to be invalid. Please verify all the characters in your feed are valid for your selected encoding.
    Learn more.
    
    Examples:
    Item Nr. 	Line Nr.
    15 	290
    387 	7,358
    390 	7,415
    591 	11,234
    905 	17,200
    36
    Invalid encoding
    Some of the characters in your data feed seem to be invalid. Please verify all the characters in your feed are valid for your selected encoding.
    Learn more.
    
    Examples:
    Item Nr. 	Line Nr.
    111 	2,098
    118 	2,231
    288 	5,461
    1,415 	26,874
    1,420 	26,969
    i went back and checked the examples and all seemed fine. all of my products have Titles & Descriptions
    yeah, this is something new that google base is doing now. For the last month mine were fine, then i checked it last night and now this screen pops up.
    Have you looked thru the file and see what those lines are indicating yet?
    http://www.fusionspiritualemporium.com
    Contrib: Events Calender v1.02 update

  9. #1679
    Join Date
    Nov 2008
    Posts
    6
    Plugin Contributions
    0

    Default Re: Google Base Feeder Support Thread

    I just receive an email from GOOGLE BASE ,,, With those terms ,, I suppose lots of people use Zencart can not use google base in the future ?
    (((( I AM USING ZENCART too )))

    ---------------------------------------------------------------
    Hello,

    Thank you for your email. While reviewing your data feed we noticed that
    your site isn't compliant with our Program Policies. We have therefore
    disabled your Google Base account.

    You must own any products that you submit to Google Base and ship these
    products directly to the buyer. We aren't accepting sites which sell
    products on commission, including, but not limited to:

    - Affiliate sites
    - Comparison shopping sites
    - Readymade 'wholesale' or 'drop ship' sites

    Please visit
    http://base.google.com/support/bin/a...er=61118&hl=en for more
    details on our Program Policies.

    Sincerely,

    The Google Team
    ----------------------------------------------------------

  10. #1680
    Join Date
    Oct 2005
    Posts
    287
    Plugin Contributions
    0

    Default Re: Google Base Feeder Support Thread

    HI,
    I run Google Base Feeder successfully , however on my other website the base file name is domain_base_us_feed ,
    whenever I run the upload to google script the file uploaded is domain_base_us_feed_products , due to this extra word "products" I cannot auto update.

    Any solutions ?

 

 

Similar Threads

  1. v150 Google Merchant Center Feeder for ZC v1.5.x [Support Thread]
    By DivaVocals in forum Addon Admin Tools
    Replies: 504
    Last Post: 19 Nov 2024, 03:50 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