Magento 安装抱怨 InnoDB 可用时丢失

Magento install complains about missing InnoDB when it is available(Magento 安装抱怨 InnoDB 可用时丢失)
本文介绍了Magento 安装抱怨 InnoDB 可用时丢失的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

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

<块引用>

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

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

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

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

解决方案

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

替换:

公共函数 supportEngine(){$variables = $this->_getConnection()-> fetchPairs('显示变量');return (!isset($variables['have_innodb']) || $variables['have_innodb'] != 'YES') ?假:真;}

这样:

公共函数 supportEngine(){$variables = $this->_getConnection()-> fetchPairs('显示引擎');返回 (isset($variables['InnoDB']) && $variables['InnoDB'] != 'NO');}

During installation, Magento produces the following error:

Database server does not support the InnoDB storage engine.

I've fixed all the dependancies for Magento, and double checked with MySQL on the command line using SHOW ENGINES and definitely have InnoDB available (also the default storage engine).

This isn't an issue about access to MySQL config which others might have seen on their install.

Note: This is running on a Mac Pro (with a simple hosts DNS rewrite for the domain name I am developing for).

解决方案

Line 59 of the file app/code/core/Mage/Install/Model/Installer/Db/Mysql4.php

Replace:

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

with this:

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

这篇关于Magento 安装抱怨 InnoDB 可用时丢失的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

In PHP how can you clear a WSDL cache?(在 PHP 中如何清除 WSDL 缓存?)
failed to open stream: HTTP wrapper does not support writeable connections(无法打开流:HTTP 包装器不支持可写连接)
Stop caching for PHP 5.5.3 in MAMP(在 MAMP 中停止缓存 PHP 5.5.3)
Caching HTTP responses when they are dynamically created by PHP(缓存由 PHP 动态创建的 HTTP 响应)
Memcached vs APC which one should I choose?(Memcached 与 APC 我应该选择哪一个?)
What is causing quot;Unable to allocate memory for poolquot; in PHP?(是什么导致“无法为池分配内存?在 PHP 中?)