Magento install complains about missing InnoDB when it is available

前端 未结 7 601
遇见更好的自我
遇见更好的自我 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:15

    ver 1.9.1.0 downloader.php

    Putting this up for anyone thats using the downloader.php currently bundled in the 1.9.1.0 installer.

    If you're happy that your MySQL Database does support InnoDB (It's the DEFAULT) in later versions. You can safely edit the file to remove the check and all the download to take place.

        /**
         * Check availabe InnoDB on database.
         *
         * @return Magento_Downloader_Validator
         */
        protected function _checkDbInnoDb()
        {
            if (!$this->_connection) {
                return $this;
            }
            $this->addMessage('Database server supports InnoDB storage engine');
            return $this;
        }
    

提交回复
热议问题