app/code/core/Mage/Install/Model/Installer/Db/Mysql4.phpphp
打開以上文件 找到以下代碼,添加一個判斷便可mysql
/** * Check InnoDB support * * @return bool */ public function supportEngine() { $variables = $this->_getConnection() ->fetchPairs('SHOW VARIABLES'); //添加以下判斷便可 if ($variables['storage_engine'] == 'InnoDB') return true; return (!isset($variables['have_innodb']) || $variables['have_innodb'] != 'YES') ? false : t rue; }
由於mysql 5.6的變量描述有變化,因此致使Magento安裝過程當中 檢測失敗sql
簡記備忘 :) app
若是想更簡單的解決,也能夠直接移除其餘代碼 直接 return true; :)ide