当prestashp在localhost上运行时,我在安装博客模块后得到以下错误。这个问题在安装完每个博客插件后都会出现,这个错误的依据是什么,如何解决?
这是一个不兼容的 owlblog
模块,你的PS版本和你的PHP版本。
你需要编辑文件 /modules/owlblog/controllers/admin/AdminOWLCategoryController.php
并取代
public function setMedia()
与
public function setMedia($isNewTheme = false)
.
我想这个函数调用
parent::setMedia();
改为
parent::setMedia($isNewTheme);