Magento install complains about missing InnoDB when it is available

前端 未结 7 639
遇见更好的自我
遇见更好的自我 2020-12-07 12:44

During installation, Magento produces the following error:

Database server does not support the InnoDB storage engine.

I\'ve fix

7条回答
  •  不思量自难忘°
    2020-12-07 13:31

    public function supportEngine()
    {
        $variables  = $this->_getConnection()->fetchPairs('SHOW ENGINES');
        return (isset($variables['InnoDB']) && $variables['InnoDB'] != 'NO');
    }
    

提交回复
热议问题