我使用prestashop 1.1.6.2并且总是当我要安装每个模块时,出现这个:
PrestaShopDatabaseException
“字段列表”中的未知列“卸载”
INSERT INTO `ps_module_access` (`id_profile`, `id_module`, `view`, `configure`, `uninstall`) (
SELECT id_profile, 234, 1, 1, 1
FROM ps_access a
WHERE id_tab = (
SELECT `id_tab` FROM ps_tab
WHERE class_name = 'AdminModules' LIMIT 1)
AND a.`view` = 1)
at line 791 in file classes/db/Db.php
786. if ($webservice_call && $errno) {
787. $dbg = debug_backtrace();
788. WebserviceRequest::getInstance()->setError(500, '[SQL Error] '.$this->getMsgError().'. From '.(isset($dbg[3]['class']) ? $dbg[3]['class'] : '').'->'.$dbg[3]['function'].'() Query was : '.$sql, 97);
789. } elseif (_PS_DEBUG_SQL_ && $errno && !defined('PS_INSTALLATION_IN_PROGRESS')) {
790. if ($sql) {
791. throw new PrestaShopDatabaseException($this->getMsgError().'<br /><br /><pre>'.$sql.'</pre>');
792. }
793.
794. throw new PrestaShopDatabaseException($this->getMsgError());
795. }
796. }
DbCore->displayError - [line 425 - classes/db/Db.php] - [1 Arguments]
DbCore->query - [line 601 - classes/db/Db.php] - [1 Arguments]
DbCore->execute - [line 376 - classes/module/Module.php] - [1 Arguments]
ModuleCore->install - [line 437 - modules/sendinblue/sendinblue.php]
Sendinblue->install - [line 867 - controllers/admin/AdminModulesController.php]
AdminModulesControllerCore->postProcessCallback - [line 1116 - controllers/admin/AdminModulesController.php]
AdminModulesControllerCore->postProcess - [line 178 - classes/controller/Controller.php]
ControllerCore->run - [line 367 - classes/Dispatcher.php]
DispatcherCore->dispatch - [line 183 - override/classes/Dispatcher.php]
Dispatcher->dispatch - [line 58 - admin/index.php]
为什么?