Quote Originally Posted by smoke133 View Post
Every time I run the Google Base Feeder, I get an error log in my cache folder that says "PHP Warning: ereg_replace(): REG_EBRACK in ../includes/classes/google_base.php on line 214."

Why am I getting this error?

Here is line 214 in google_base.php
PHP Code:
      $products_image_base ereg_replace($products_image_extention''$products_image); 
I'm using Zencart v1.3.9g
replace the line with..
Code:
$products_image_base = str_replace($products_image_extension, '', $products_image);
ereg_replace is no longer supported in php5.3..