Basically, there suppose to be a folder
numinix_version with a text file in it
google_base_feeder.txt
the text file is nothing more then the version of Google base feeder... Check to see if its there and can be found by the program... I didn't feel like having another folder just to hold versions in, so I commented it out...
Code:
function google_base_version() {
//$file = DIR_FS_CATALOG . 'numinix_version/google_base_feeder.txt';
//$handle = fopen($file, 'r');
$version = "1.7.4.9g"; //fread($handle, filesize($file));
//fclose($handle);
return trim($version);
}
I've modified so much of it I can't just do a simple upgrade anymore... plus this way I can keep track when I upgrade it to meet a new cart upgrade... (9g) Could just update the text file too....
Bookmarks