0

我开发的网站有问题,这是该网站 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;
}

4

1 回答 1

0

经过额外的尝试,我找到了解决方案,

我创建一个新数据库并为 opencart 进行全新安装,此步骤将创建配置并检查所有 777 文件夹

完成全新安装后,我修改了配置并将旧数据库数据放入其中,

于 2012-12-26T19:22:09.477 回答