Jump to content

Ebay 1.72 Synconize_productCron Fatal Error


Alexgaw

Recommended Posts

OK. I got this with 1.7.2 too....

 

Accessing http://example.com/ps/modules/ebay/synchronizeProducts_CRON.php gave a single "Fatal error" on screen.

 

I ended up having to do the following - 

 

Amend ebay.php, add the line

               $this->context->employee->id = 1;

after

       public function cronProductsSync()
        {
 
(This stopped Product.php bailing out - use a legitimate value for employee number!.)
 
 
Adjust the database
alter table ps_ebay_log modify id_ebay_log integer not null auto_increment;
 
(This stopped a error writing to the log file)
 
 
And give extra privileges to the database user..
grant DROP on database.ps_ebay_log to 'dbuser'@'localhost';
 
(This allowed clearing of the list of products to update.)
 
 
I've not upgraded the module to 1.8 or 1.8.1 yet; these issues may be fixed in the later versions.
 
 
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...