opencart菜單導(dǎo)航,magento報錯
2022-10-10 13:48:49 - 米境通跨境電商
1.OpenCart后臺頁面提示權(quán)限不足.
到System—>Users—>UserGroup里把對應(yīng)權(quán)限(e.g:catalog/attribute這些就是對應(yīng)URL的route)勾選保存即可.
2.OpenCart錯誤提示:Error:Couldnotloadlanguage…
這是缺少了語言文件,確認下提示目錄下是否存在該語言文件.比如:Error:Couldnotloadlanguagecatalog/attribute,
就找下在language下的catalog里有沒有attribute.php文件.
3.OpenCart錯誤提示:Error:Couldnotloadcontroller…
同上,找對應(yīng)的controller下有沒對應(yīng)的文件或者方法.
4.OpenCart錯誤提示:Notice:Undefinedvariable:actionin/projects/php/web/ts/shopilex20/admin/view/template/common/login.tpl
變量沒有實例化,在對應(yīng)的controller里進行下實例就可以了.比如$this->data['action']=’xxxx’.