我开发的网站有问题,这是该网站 http://jumairah.co/admin/
错误是
Call to a member function isLogged() on a non-object
我尝试重新上传所有文件,但问题仍然存在;当我从这里移动网站时存在问题 http://projects.eng-mostafa.com/designs/opencart/admin
请任何人帮助
这是问题所在
if ($this->customer->isLogged()) {
$customer_group_id = $this->customer->getCustomerGroupId();
} else {
$customer_group_id = $this->config->get('config_customer_group_id');
}
以及在该路径 /public_html/system/library/customer.php 中记录的功能
这就是功能
public function isLogged() {
return $this->customer_id;
}