Magento安装抱怨InnoDB可用时丢失

时间:2013-03-15 23:01:38

标签: php mysql magento innodb

在安装过程中,Magento会产生以下错误:

  

数据库服务器不支持InnoDB存储引擎。

我已经修复了Magento的所有依赖项,并使用SHOW ENGINES在命令行上使用MySQL进行了双重检查,并且肯定有InnoDB可用(也是默认的存储引擎)。

这不是访问MySQL配置的问题,其他人可能已经在安装时看到了这个问题。

注意:这是在Mac Pro上运行的(对我正在开发的域名进行简单的主机DNS重写)。

7 个答案:

答案 0 :(得分:131)

文件app/code/core/Mage/Install/Model/Installer/Db/Mysql4.php的第59行

替换:

public function supportEngine()
{
    $variables  = $this->_getConnection()
        ->fetchPairs('SHOW VARIABLES');
    return (!isset($variables['have_innodb']) || $variables['have_innodb'] != 'YES') ? false : true;
}

用这个:

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

答案 1 :(得分:20)

或者不做核心攻击!您应该在安装之前轻轻地覆盖Installer-Model:

将其粘贴到app/code/local/Company/InstallBugfix/etc/config.xml

<?xml version="1.0"?>
<config>
    <modules>
        <Company_InstallBugfix>
            <version>0.1.0</version>
        </Company_InstallBugfix>
    </modules>
    <global>
        <models>
            <installbugfix>
                <class>Company_InstallBugfix_Model</class>
            </installbugfix>
            <install>
                <rewrite>
                    <installer_db_mysql4>Company_InstallBugfix_Model_Installer_Db_Mysql4</installer_db_mysql4>
                </rewrite>
            </install>
        </models>
    </global>
</config>

跟随app/code/local/Company/InstallBugfix/Model/Installer/Db/Mysql4.php

<?php
class Company_InstallBugfix_Model_Installer_Db_Mysql4 extends Mage_Install_Model_Installer_Db_Mysql4
{
    /**
     * Check InnoDB support
     *
     * @return bool
     */
    public function supportEngine()
    {
        $supportsEngine = parent::supportEngine();
        if ($supportsEngine) {
            return true;
        }
        $variables = $this
                     ->_getConnection()
                     ->fetchPairs('SHOW ENGINES');
        return (isset($variables['InnoDB']) && $variables['InnoDB'] != 'NO');
    }
}

启用扩展程序。如果mysql版本较旧,那么旧验证仍然是正确的。

答案 2 :(得分:5)

ver 1.9.1.0 downloader.php

为使用downloader.php安装程序中当前捆绑的1.9.1.0的任何人提供此功能。

如果您对MySQL数据库在更高版本中支持InnoDB(它是DEFAULT)感到高兴。您可以安全地编辑该文件以删除检查并进行所有下载。

    /**
     * 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;
    }

答案 3 :(得分:0)

在Magento CE 1.8中修复了Bug,所以只需使用上面的行来获取CE \ leq 1.7

答案 4 :(得分:-1)

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

答案 5 :(得分:-1)

文件app / code / core / Mage / Install / Model / Installer / Db / Mysql4.php的第59行

替换:

public function supportEngine()
 {
    $variables  = $this->_getConnection()
        ->fetchPairs('SHOW VARIABLES');
    return (!isset($variables['have_innodb']) || $variables['have_innodb'] != 'YES') ? false : true;
}    

用这个:

public function supportEngine()
{
 /*   
     $variables  = $this->_getConnection()
        ->fetchPairs('SHOW ENGINES');
     return (!isset($variables['have_innodb']) || $variables['have_innodb'] != 'YES') ? false : true; 
*/
    return 1;
}

答案 6 :(得分:-1)

我遇到了同样的问题,唯一有效的方法是当我更改文件的第59行 app / code / core / Mage / Install / Model / Installer / Db / Mysql4.php 从:

public function supportEngine()
{
    $variables  = $this->_getConnection()
        ->fetchPairs('SHOW VARIABLES');
    return (!isset($variables['have_innodb']) || $variables['have_innodb'] != 'YES') ? false : true;
}

使用:

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

我在任何地方都找不到它,所以如果你在努力,我保证会解决它。