2016-10-21 87 views
0

您好我想安裝「一鍵升級v1.6.7 - 支持PrestaShop」插件,但我不能,因爲下面的錯誤來:的Prestashop - 無法升級

The following module(s) were not installed properly: 
autoupgrade : 
    Unable to create the "AdminSelfUpgrade" tab 

我有檢查啓用的模塊,所有這些都是最新的,由PrestaShop發行。請有人幫助我嗎?

我目前正在運行PrestaShop™1.6.0.11。

感謝您的幫助。

UPDATE:轉身錯誤報告:

[PrestaShopDatabaseException] 

Unknown column 'hide_host_mode' in 'field list' 


INSERT INTO `ps_tab` (`id_parent`, `position`, `module`, `class_name`, `active`, `hide_host_mode`) VALUES ('17', '10', 'autoupgrade', 'AdminSelfUpgrade', '1', '0') 

at line 639 in file classes/db/Db.php 
634.   WebserviceRequest::getInstance()->setError(500, '[SQL Error] '.$this->getMsgError().'. From '.(isset($dbg[3]['class']) ? $dbg[3]['class'] : '').'->'.$dbg[3]['function'].'() Query was : '.$sql, 97); 
635.  } 
636.  elseif (_PS_DEBUG_SQL_ && $errno && !defined('PS_INSTALLATION_IN_PROGRESS')) 
637.  { 
638.   if ($sql) 
639.    throw new PrestaShopDatabaseException($this->getMsgError().'<br /><br /><pre>'.$sql.'</pre>'); 
640.   throw new PrestaShopDatabaseException($this->getMsgError()); 
641.  } 
642. } 
643. 
644. /** 
DbCore->displayError - [line 333 - classes/db/Db.php] - [1 Arguments] 
DbCore->query - [line 613 - classes/db/Db.php] - [1 Arguments] 
DbCore->q - [line 398 - classes/db/Db.php] - [2 Arguments] 
DbCore->insert - [line 480 - classes/ObjectModel.php] - [3 Arguments] 
ObjectModelCore->add - [line 103 - classes/Tab.php] - [2 Arguments] 
TabCore->add - [line 442 - classes/ObjectModel.php] - [2 Arguments] 
ObjectModelCore->save - [line 115 - classes/Tab.php] 
TabCore->save - [line 74 - modules/autoupgrade/autoupgrade.php] 
Autoupgrade->install - [line 828 - controllers/admin/AdminModulesController.php] 
AdminModulesControllerCore->postProcessCallback - [line 1071 - controllers/admin/AdminModulesController.php] 
AdminModulesControllerCore->postProcess - [line 171 - classes/controller/Controller.php] 
ControllerCore->run - [line 374 - classes/Dispatcher.php] 
DispatcherCore->dispatch - [line 54 - admin/index.php] 

回答

0

最後,我自己解決了它:ps_tab中有一個缺失的列。

要修復它,你需要去這個MySQL表,並將hide_host_mode列添加到DV,這是一個tinyint類型。

1

如果打開Error Reporting這將是一個不錯的主意。

另外,你是否已經安裝了一些管理管理標籤的第三方模塊?或者至少有一個管理管理人員的模塊?

如果是這樣,請嘗試卸載它並刪除目錄文件。

+0

謝謝,我已打開錯誤報告。日誌被添加到我的文章。我不知道什麼是第三方插件,但所有插件都來自PrestaShop。 (對不起) –