Fatal error: Call to undefined method Loader::library() in /xyz/system/library/openbay/ebay.php on line 146 Commenting out line 27 of ebay.php gets the site back:
Code: Select all
if ($this->logging == 1) {
//$this->setLogger();
}
Code: Select all
if ($this->logging == 1) {
//$this->setLogger();
}
Code: Select all
$this->load->library('log');
Code: Select all
require_once(DIR_SYSTEM . 'library/log.php');
Dedication and passion goes to those who are able to push and merge a project.
Regards,
Straightlight
Programmer / Opencart Tester
so you know i tried your fix and it now gave me thisstraightlight wrote:In system/library/ebay.php and system/library/etsy.php file,
replace:
with:Code: Select all
$this->load->library('log');
This should resolved the problem. One thing I did discovered, however, is the Log instance is initialized from both index files but are not loaded from system/startup.php file other than a possible detection from the system/modification folder for an unknown reason. Although, since log.php file does not exist in system/modification folder, I fail to see how this will be loaded in the first place.Code: Select all
require_once(DIR_SYSTEM . 'log.php');
Dedication and passion goes to those who are able to push and merge a project.
Regards,
Straightlight
Programmer / Opencart Tester
Code: Select all
$this->load->library('log');
Code: Select all
require_once(DIR_LOGS . 'log.php');
Users browsing this forum: No registered users and 3 guests