Zen Cart Logo
Forums / All Other Contributions/Addons / Google Base Feeder Support Thread [OLD]

Google Base Feeder Support Thread [OLD]

Locked

Views: 806,496

Results 1,581 to 1,600 of 3,556
This thread is locked. New replies are disabled.
20 May 2009, 6:31 PM
#1581
countrycharm avatar

countrycharm

Totally Zenned

Join Date:
Jul 2007
Posts:
2,179
Plugin Contributions:
2

Google Base Feeder Support Thread [OLD]

fusionsp:

ok i have seen tons of ppl talking about the connection issue with google base. But i have yet to see a solution?

not that it matters because I just scheduled google to fetch my feed, but this module cannot connect to google?

everything creates fine, but connection to google fails? So, if I scheduled google base to fetch this file itself then does it really mater if this wont connect on its own?

Scheduling Google to fetch it is ever bodies best bet. As long as Google will do that their no since in worrying about doing it yourself.

20 May 2009, 8:43 PM
#1582
kburner avatar

kburner

Totally Zenned

Join Date:
Apr 2008
Location:
Flint, Michigan
Posts:
684
Plugin Contributions:
0

Re: Google Base Feeder Support Thread [OLD]

countrycharm:

Scheduling Google to fetch it is ever bodies best bet. As long as Google will do that their no since in worrying about doing it yourself.

How did you get Google to do it? How do I apply?
I have account. And the only thing I have seen is where you do the manual load. And that does not work. Only gives 29 products out of about 10,000.

Thanks, Kim

20 May 2009, 9:21 PM
#1583
fusionsp avatar

fusionsp

Zen Follower

Join Date:
Jun 2008
Posts:
204
Plugin Contributions:
0

Re: Google Base Feeder Support Thread [OLD]

kburner:

How did you get Google to do it? How do I apply?
I have account. And the only thing I have seen is where you do the manual load. And that does not work. Only gives 29 products out of about 10,000.

Thanks, Kim

when you register your data feed. Next to the feed is a option that says schedule. it pops open a new window and its a simplified version of the cron job. Then you link it back to where the feed is located...and there it is, like someone else said it lightens the load on your server.

and yea, I am having to figure out what products of mine that did not enter yet. I have 850 and it gave me 785. But looking thru here, it could be lots of reasons. Too short desc, etc.

hope that helps

20 May 2009, 9:28 PM
#1584
fusionsp avatar

fusionsp

Zen Follower

Join Date:
Jun 2008
Posts:
204
Plugin Contributions:
0

Re: Google Base Feeder Support Thread [OLD]

Its all working now, but as I go thru all the products it uploaded I am noticing that the feed missed some items.

I have to manually change some items??

  • payments accepted
  • local pick up--on or off

its showing missing attributes?

20 May 2009, 9:34 PM
#1585
kburner avatar

kburner

Totally Zenned

Join Date:
Apr 2008
Location:
Flint, Michigan
Posts:
684
Plugin Contributions:
0

Re: Google Base Feeder Support Thread [OLD]

fusionsp:

Its all working now, but as I go thru all the products it uploaded I am noticing that the feed missed some items.

I have to manually change some items??

  • payments accepted
  • local pick up--on or off

its showing missing attributes?

where is the file located?

20 May 2009, 10:43 PM
#1586
countrycharm avatar

countrycharm

Totally Zenned

Join Date:
Jul 2007
Posts:
2,179
Plugin Contributions:
2

Re: Google Base Feeder Support Thread [OLD]

kburner:

How did you get Google to do it? How do I apply?
I have account. And the only thing I have seen is where you do the manual load. And that does not work. Only gives 29 products out of about 10,000.

Thanks, Kim
I am running the latest version of Google Base 1.7.3 but Google wasn't excepting all my product, so I replaced this portion of the sanitizer code in includes/classes/google_base.php in 1.7.3A with the one from 1.7.0
This is the difference in \includes\classes\google_base.php
Here is the section from 1.7.0a
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(">" => "> ", "®" => "", "®" => "", "™" => "", "™" => "", "\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('&', '&', $str);
//if (!$cdata) {
//$str = htmlentities(html_entity_decode($str));
//$in = $out = array();
//$in[] = "®"; $out[] = '(r)';
//$in[] = "©"; $out[] = '(c)';
//$in[] = "™"; $out[] = '(tm)';
//$str = html_translate($str);
$str = trim($str);
if ($cdata) {
$str = '<![CDATA[' . $str . ']]>';
}
return $str;
}
Here is the section from 1.7.3
function google_base_xml_sanitizer($str, $cdata = false) {
$str = str_replace(array("\t" , "\n", "\r"), ' ', $str);
$str = eregi_replace("[^[:alnum:][:space:].,!()'-
/+=?äÂÄöÖüÜß]", "", $str);
$str = htmlentities(html_entity_decode($str));
$str = utf8_encode(str_replace(array("®", "©", "™"), array('(r)', '(c)', '(tm)'), $str));
$str = $this->real_strip_tags($str, array('br', 'p'), false);
$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("<", ">"), array("<", ">"), $str);
if ($cdata) {
$str = '<![CDATA[' . $str . ']]>';
}
return $str;
}

function real_strip_tags($i_html, $i_allowedtags = array(), $i_trimtext = FALSE) {
  if (!is_array($i_allowedtags))
    $i_allowedtags = !empty($i_allowedtags) ? array($i_allowedtags) : array();
  $tags = implode('|', $i_allowedtags);

  if (empty($tags))
    $tags = '[a-z]+';

  preg_match_all('@</?\s*(' . $tags . ')(\s+[a-z_]+=(\'[^\']+\'|"[^"]+"))*\s*/?>@i', $i_html, $matches);

  $full_tags = $matches[0];
  $tag_names = $matches[1];

  foreach ($full_tags as $i => $full_tag) {
    if (!in_array($tag_names[$i], $i_allowedtags))
      if ($i_trimtext)
        unset($full_tags[$i]);
      else
        $i_html = str_replace($full_tag, '', $i_html);
  }

  return $i_trimtext ? implode('', $full_tags) : $i_html;
}

After I replaced the portion of the sanitizer code in includes/classes/google_base.php in 1.7.3A with the one from 1.7.0 Now Google accepts all my products. I hope this help some of you out.

21 May 2009, 1:16 PM
#1587
fusionsp avatar

fusionsp

Zen Follower

Join Date:
Jun 2008
Posts:
204
Plugin Contributions:
0

Re: Google Base Feeder Support Thread [OLD]

kburner:

where is the file located?

its in the feed folder. First i installed the 1.71a and it worked fine. I installed the 1.73 update and now it has the issue with with missing attributes. I am going to try an change the php file back and see if that helps

21 May 2009, 1:22 PM
#1588
countrycharm avatar

countrycharm

Totally Zenned

Join Date:
Jul 2007
Posts:
2,179
Plugin Contributions:
2

Re: Google Base Feeder Support Thread [OLD]

fusionsp:

its in the feed folder. First i installed the 1.71a and it worked fine. I installed the 1.73 update and now it has the issue with with missing attributes. I am going to try an change the php file back and see if that helps

If you change the file like I instructed I think it will take care of your problem.

21 May 2009, 1:28 PM
#1589
fusionsp avatar

fusionsp

Zen Follower

Join Date:
Jun 2008
Posts:
204
Plugin Contributions:
0

Re: Google Base Feeder Support Thread [OLD]

countrycharm:

I am running the latest version of Google Base 1.7.3 but Google wasn't excepting all my product, so I replaced this portion of the sanitizer code in includes/classes/google_base.php in 1.7.3A with the one from 1.7.0
This is the difference in \includes\classes\google_base.php
Here is the section from 1.7.0a

Here is the section from 1.7.3

After I replaced the portion of the sanitizer code in includes/classes/google_base.php in 1.7.3A with the one from 1.7.0 Now Google accepts all my products. I hope this help some of you out.

Hmmm, now im confused? You say that the second section is from 1.7.3? Here is that version of mine that I got from numinix site. it stated that was also version 1.7.3 but it doesnt have the same info as yours. ??

      
    // 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("<", ">"), array("<", ">"), $str);
      if ($cdata) {
        $str = '<![CDATA[' . $str . ']]>';
      } 
      return $str;
    }
    

after that section it goes into creating the url for the product image? So, what version do i have?

21 May 2009, 1:39 PM
#1590
fusionsp avatar

fusionsp

Zen Follower

Join Date:
Jun 2008
Posts:
204
Plugin Contributions:
0

Re: Google Base Feeder Support Thread [OLD]

kburner:

where is the file located?

ok google base states its missing all product type values for all products entered?

21 May 2009, 3:20 PM
#1591
fusionsp avatar

fusionsp

Zen Follower

Join Date:
Jun 2008
Posts:
204
Plugin Contributions:
0

Re: Google Base Feeder Support Thread [OLD]

ok i have one last question. How often should feeds be submitted? I only have 800+/- products now but with few dist i could have 15000 or so. I submitted my current feed at 5am. Now 6 hrs later its only on item #290.

Does this go thru the same process every time? So every day its going to take all day to process? Or does it check against what has already been entered and continue on if there is no change?

Im just looking for a faster way to make this work. i dont want to bog down their system every morning if thats the case? Soo, i guess my question is...how often should this be uploaded?

21 May 2009, 4:15 PM
#1592
countrycharm avatar

countrycharm

Totally Zenned

Join Date:
Jul 2007
Posts:
2,179
Plugin Contributions:
2

Re: Google Base Feeder Support Thread [OLD]

fusionsp:

Hmmm, now im confused? You say that the second section is from 1.7.3? Here is that version of mine that I got from numinix site. it stated that was also version 1.7.3 but it doesnt have the same info as yours. ??

// 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("<", ">"), array("<", ">"), $str);
  if ($cdata) {
    $str = '<![CDATA[' . $str . ']]>';
  } 
  return $str;
}
> 
> after that section it goes into creating the url for the product image? So, what version do i have?

You are right about the version 1.7.3A on  numinix site 
In version 1.7.3a it has been change but it still does not work right unless you switch it out like I stated with the 1.7.0   \includes\classes\google_base.php just the sanitizes code for XML

1.7.3a Replace this code with the 1.7.0 code down below.
> // 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("<", ">"), array("<", ">"), $str);
>       if ($cdata) {
>         $str = '<![CDATA[' . $str . ']]>';
>       } 
>       return $str;
>     }

1.7.0
> // 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(">" => "> ", "®" => "", "®" => "", "™" => "", "™" => "", "\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;', '&', $str);
>       //if (!$cdata) {
>       //$str = htmlentities(html_entity_decode($str));
>       //$in = $out = array();
>       //$in[] = "®"; $out[] = '(r)';
>       //$in[] = "©"; $out[] = '(c)';
>       //$in[] = "™"; $out[] = '(tm)';
>       //$str = html_translate($str);
>       $str = trim($str);
>       if ($cdata) {
>         $str = '<![CDATA[' . $str . ']]>';
>       }
>       return $str;
>     }
This may not work for some of you, but it does for me. Google now excepts all my products without any errors at all.
21 May 2009, 4:20 PM
#1593
countrycharm avatar

countrycharm

Totally Zenned

Join Date:
Jul 2007
Posts:
2,179
Plugin Contributions:
2

Re: Google Base Feeder Support Thread [OLD]

fusionsp:

ok i have one last question. How often should feeds be submitted? I only have 800+/- products now but with few dist i could have 15000 or so. I submitted my current feed at 5am. Now 6 hrs later its only on item #290.

Does this go thru the same process every time? So every day its going to take all day to process? Or does it check against what has already been entered and continue on if there is no change?

Im just looking for a faster way to make this work. i dont want to bog down their system every morning if thats the case? Soo, i guess my question is...how often should this be uploaded?

How are you submitting them , with a cron job or manually, or is Google fetching them. I don't submit them except when I add products. If I don't I let them ride until the expiring date which is 30 days.

22 May 2009, 12:06 AM
#1594
kburner avatar

kburner

Totally Zenned

Join Date:
Apr 2008
Location:
Flint, Michigan
Posts:
684
Plugin Contributions:
0

Re: Google Base Feeder Support Thread [OLD]

I am using zencart 1.3.8a with 1.7.3a for Google base. I changed the sanitzer code from previous post. Still does not work. Here is my information. Maybe someone can help. I have over 10,000 products and feed/froogle_products.xml file shows only about 29 products.

Google Base Feeder Config. Looks like this: (I took out passwords.)

Google Base PASV true
Google Base Server uploads.google.com
Google Base FTP Username xxxxxx
Google Base FTP Password xxxxxx
Debug true
Store Address http://www.burnerbooks.com
Store Description Christian Bookstore KJV Bibles Spanish Bibles Cards Books Homeschool gifts
Expiration Date Adjust 90
Expiration Date Base now
Enable Map Pricing false
Auction Site Attributes false
Show Default Currency true
Default Currency USD
Show Offer ID ISBN
Default Quantity 0
Include Zero Quantity true
Show Quantity false
Shipping Options USPS
Condition new
Show Feed Lanugage true
Magic SEO URLs false
Feed Language English
Output File Name froogle
Use cPath in url false
Output Directory feed/
Compress Feed File true
Uploaded date
Tax Region MI
Display Tax false
Max products 0
Starting Point 0
Pickup do not display
Excluded Categories
Included Categories
Show Weight false
Weight Units pounds
Product Type full
Payments Accepted PayPal
Payment Notes
Image Handler false
Use Meta Title true
Select Shipping Method none
Table Zone ID
Shipping Country 223
Shipping Region
Shipping Service

When in admin...tools.google base feeder.

Create Product Feed: Click [HERE] to create / update your products feed. - I get this error:

Google Base Feeder v%s started 2009/05/21 18:03:12
Feed file - /home/xxxxx/xxxxxxx/feed/froogle_products.xml
Processing: Feed - Yes, Upload - No
2008 MySQL client ran out of memory
in:
[select products_msrp, products_price, products_priced_by_attribute from products where products_id = '29964']

NOTE: You may view your product feed file before proceeding to step 2. - Shows about 29 products from RSS feed

NOTE: You may view Google Base FTP content. - I get this error:

Google Base FTP content:
Connected to: uploads.google.com
Connection failed: uploads.google.com

And when I go to Google and manually load - I get this error:
Failed
Data feed upload failed. No items are live.:frusty:

22 May 2009, 1:46 AM
#1595
countrycharm avatar

countrycharm

Totally Zenned

Join Date:
Jul 2007
Posts:
2,179
Plugin Contributions:
2

Re: Google Base Feeder Support Thread [OLD]

kburner:

I am using zencart 1.3.8a with 1.7.3a for Google base. I changed the sanitzer code from previous post. Still does not work. Here is my information. Maybe someone can help. I have over 10,000 products and feed/froogle_products.xml file shows only about 29 products.

Google Base Feeder Config. Looks like this: (I took out passwords.)

Google Base PASV true
Google Base Server uploads.google.com
Google Base FTP Username xxxxxx
Google Base FTP Password xxxxxx
Debug true
Store Address http://www.burnerbooks.com
Store Description Christian Bookstore KJV Bibles Spanish Bibles Cards Books Homeschool gifts
Expiration Date Adjust 90
Expiration Date Base now
Enable Map Pricing false
Auction Site Attributes false
Show Default Currency true
Default Currency USD
Show Offer ID ISBN
Default Quantity 0
Include Zero Quantity true
Show Quantity false
Shipping Options USPS
Condition new
Show Feed Lanugage true
Magic SEO URLs false
Feed Language English
Output File Name froogle
Use cPath in url false
Output Directory feed/
Compress Feed File true
Uploaded date
Tax Region MI
Display Tax false
Max products 0
Starting Point 0
Pickup do not display
Excluded Categories
Included Categories
Show Weight false
Weight Units pounds
Product Type full
Payments Accepted PayPal
Payment Notes
Image Handler false
Use Meta Title true
Select Shipping Method none
Table Zone ID
Shipping Country 223
Shipping Region
Shipping Service

When in admin...tools.google base feeder.

Create Product Feed: Click [HERE] to create / update your products feed. - I get this error:

Google Base Feeder v%s started 2009/05/21 18:03:12
Feed file - /home/xxxxx/xxxxxxx/feed/froogle_products.xml
Processing: Feed - Yes, Upload - No
2008 MySQL client ran out of memory
in:
[select products_msrp, products_price, products_priced_by_attribute from products where products_id = '29964']

NOTE: You may view your product feed file before proceeding to step 2. - Shows about 29 products from RSS feed

NOTE: You may view Google Base FTP content. - I get this error:

Google Base FTP content:
Connected to: uploads.google.com
Connection failed: uploads.google.com

And when I go to Google and manually load - I get this error:
Failed
Data feed upload failed. No items are live.:frusty:

Go to your cPanel > PHP Config and generate the single php.ini
in that file adjusted the variables for the buffer, input time, execution time, memory limit etc. Thats the same problem that Kunal was having. http://www.zen-cart.com/forum/showpost.php?p=729459&postcount=1582

22 May 2009, 9:44 AM
#1596
kburner avatar

kburner

Totally Zenned

Join Date:
Apr 2008
Location:
Flint, Michigan
Posts:
684
Plugin Contributions:
0

Re: Google Base Feeder Support Thread [OLD]

countrycharm:

Go to your cPanel > PHP Config and generate the single php.ini
in that file adjusted the variables for the buffer, input time, execution time, memory limit etc. Thats the same problem that Kunal was having. http://www.zen-cart.com/forum/showpost.php?p=729459&postcount=1582

I created that file some time ago. I created and ftp to root directory in filezilla. I just looked at it in cpanel and files. Still there with this code.

max_execution_time = 300
max_input_time = 90
memory_limit = 32M

Could not find it when I went to cPanel>MyPHP. Not sure what to do when I get to database area. But, did a search and did not come up with this file.

22 May 2009, 4:50 PM
#1597
bmpt avatar

bmpt

New Zenner

Join Date:
Jan 2008
Posts:
76
Plugin Contributions:
0

Re: Google Base Feeder Support Thread [OLD]

hello,
just recently i have been having troubles with uploading my product feeds.
I have had previous successful uploads, all without any issues at all.
just yesterday my upload fail for the 1st time. Since then I have attempted about 20 times over 2 days with no success.

I have made no changes to any file contributed to the addon, at least not to my knowing.

product upload attempt
////////////
Google Base Feeder v.1.7.0 09.019.2008 17:38:59 started 2009/05/22 10:14:22
Feed file - /home/bigmoney/public_html/feed/bmptfeed_products.xml
Processing: Feed - No, Upload - Yes
Upload started...
Connection failed: uploads.google.com

Upload failed...

view ftp account attempt
///////
Google Base FTP content:
Connected to: uploads.google.com
Connection failed: uploads.google.com

Is this something normal with google? Could this be an issue with google's server? Like i said i have never had this issue before.

24 May 2009, 3:25 PM
#1598
numinix avatar

numinix

Totally Zenned

Join Date:
Apr 2007
Location:
Vancouver, Canada
Posts:
1,566
Plugin Contributions:
58

Re: Google Base Feeder Support Thread [OLD]

bmpt:

hello,
just recently i have been having troubles with uploading my product feeds.
I have had previous successful uploads, all without any issues at all.
just yesterday my upload fail for the 1st time. Since then I have attempted about 20 times over 2 days with no success.

I have made no changes to any file contributed to the addon, at least not to my knowing.

product upload attempt
////////////
Google Base Feeder v.1.7.0 09.019.2008 17:38:59 started 2009/05/22 10:14:22
Feed file - /home/bigmoney/public_html/feed/bmptfeed_products.xml
Processing: Feed - No, Upload - Yes
Upload started...
Connection failed: uploads.google.com

Upload failed...

view ftp account attempt
///////
Google Base FTP content:
Connected to: uploads.google.com
Connection failed: uploads.google.com

Is this something normal with google? Could this be an issue with google's server? Like i said i have never had this issue before.
Possibly something has changed with your hosting account.

24 May 2009, 9:27 PM
#1599
kburner avatar

kburner

Totally Zenned

Join Date:
Apr 2008
Location:
Flint, Michigan
Posts:
684
Plugin Contributions:
0

Re: Google Base Feeder Support Thread [OLD]

kburner:

I created that file some time ago. I created and ftp to root directory in filezilla. I just looked at it in cpanel and files. Still there with this code.

max_execution_time = 300
max_input_time = 90
memory_limit = 32M

Could not find it when I went to cPanel>MyPHP. Not sure what to do when I get to database area. But, did a search and did not come up with this file.

Ok. Figured this out. Found cpanel config and created file. I changed what was loaded. New max_execution_time of 300 instead of 30 and max_input_time 90 instead of 60. By the way, file loaded as php.ini.default in my root directory.

Still getting errors.

Create product feed gives me this error:
Google Base Feeder v%s started 2009/05/24 15:21:55
Feed file - /home/xxxxxx/xxxxx/feed/froogle_products.xml
Processing: Feed - Yes, Upload - No
0
in:
[select master_categories_id from products where products_id = '34064']

NOTE: You may view Google Base FTP content. Gives me this error:
Google Base FTP content:
Connected to: uploads.google.com
Connection failed: uploads.google.com

I get this error when I try to upload products:
Google Base Feeder v%s started 2009/05/24 15:23:52
Feed file - /home/xxxxx/xxxxxx/feed/froogle_products.xml
Processing: Feed - No, Upload - Yes
Upload started...
Connection failed: uploads.google.com

Upload failed...:frusty:

25 May 2009, 4:04 AM
#1600
bmpt avatar

bmpt

New Zenner

Join Date:
Jan 2008
Posts:
76
Plugin Contributions:
0

Re: Google Base Feeder Support Thread [OLD]

numinix:

Possibly something has changed with your hosting account.

could you tell me what could have change to cause this to happen? What files are responsible this process