jonelet Posted December 16, 2014 Share Posted December 16, 2014 Welcome, I find a problem I can't solve. After this "amazing" update of marketplace ebay module something got wrong. When I'm on second ebay module tab (2. Categories and pricing) pagination nor working. In console there is this error: "modules/ebay/ajax/saveCategories.php?token=b0wBkoimWujZ0y8xgtHXdN0Lh9edVS&profile=2 500 (Internal Server Error)"When I set debug mode on "true" than I have:Fatal error: Call to undefined method Ebay::_postProcessCategory() in /home/dev/domains/name.ofdomain.com/public_html/modules/ebay/ajax/saveCategories.php on line 35 And I have no idea what next... I try to update presta, clear cash, remove and install this module again... nothing working... 1 Link to comment Share on other sites More sharing options...
Ireneh Posted December 16, 2014 Share Posted December 16, 2014 I don't know how to use debug but I have a pagination problem in "categories and pricing also". When I click on the page numbers or forward arrow at the top of the page the catagories won't move beyond page one. Irene Link to comment Share on other sites More sharing options...
jonelet Posted December 17, 2014 Author Share Posted December 17, 2014 (edited) I solve this problem. Thanks authors for "great" update. I edit saveCategories.php .I had this code: include(dirname(__FILE__).'/../../../config/config.inc.php'); require_once(dirname(__FILE__).'/../../../init.php'); include('../ebay.php'); if (!Tools::getValue('token') || Tools::getValue('token') != Configuration::get('EBAY_SECURITY_TOKEN')) die('ERROR: Invalid Token'); $ebay = new eBay(); $ebay->_postProcessCategory(); And change it to: include(dirname(__FILE__).'/../../../config/config.inc.php'); require_once(dirname(__FILE__).'/../../../init.php'); include('../ebay.php'); if (!Tools::getValue('token') || Tools::getValue('token') != Configuration::get('EBAY_SECURITY_TOKEN')) die('ERROR: Invalid Token'); echo json_encode(array('valid'=>true));exit; $ebay = new eBay(); $ebay->_postProcessCategory(); I'll see if it's good solution. For now it works Edited December 17, 2014 by jonelet (see edit history) 1 Link to comment Share on other sites More sharing options...
wallybz Posted December 17, 2014 Share Posted December 17, 2014 Hi, thanks for this tricky solution. Now the pagination in category association works! There are still two bugs: -pagination in the 5th tab category association of own shop -cron settings does not save Thank again Link to comment Share on other sites More sharing options...
faby71 Posted December 17, 2014 Share Posted December 17, 2014 ok funziona Link to comment Share on other sites More sharing options...
faby71 Posted December 18, 2014 Share Posted December 18, 2014 to update the missing part?has found a solution?thanks Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now