Quote Originally Posted by Boatersplanet View Post
I'm hoping someone could help me with my Froogle feed...

I have had everything work fine up until recently... I HAD about 78,000 products and the feed worked fine. I could see any/all errors in the debug window. However, I have since added more products and my total is now over 130,000. The debug window is blank, and when finished the url at the top of the window reads "limit=&offset" which led me to believe that it was timing out. The feed stops anywhere between 40-60k products now.

I originally uninstalled and reinstalled the merchant center addon. No luck. I then edited googlefroogle.php accordingly and set timeouts= 0. Still no luck... The debug window still reads blank, seems to timeout, and I am no longer getting all of my products.

Does anyone have any suggestions? I have searched the thread and can find nothing conclusive..

Do you have this in your store root's googlefroogle.php?

PHP Code:
  /* configuration */
  
ini_set('max_execution_time'900); // change to whatever time you need
  
ini_set('mysql.connect_timeout'300); // change to whatever time you need
  
ini_set('memory_limit','128M'); // change to whatever you need
  
set_time_limit(900); // change to whatever time you need
  
$keepAlive 100;  // perform a keep alive every x number of products
  /* end configuration */