我正在尝试在我的本地主机 wamp 服务器的实时服务器上运行一个 magento 商店。我正在使用带有 wamp 的 windows 7 x64,其中包括:Apache 2.2.22、PHP 5.3.13 和 MySQL 5.5.24。这是我尝试运行商店时遇到的以下错误:
Whoops, it looks like you have an invalid PHP version.
Magento supports PHP 5.2.0 or newer. Find out how to install Magento using PHP-CGI as a work-around.
'; exit; }
/** * Error reporting */
error_reporting( /*E_ALL | E_STRICT */ 0);
/** * Compilation includes configuration file */
define('MAGENTO_ROOT', getcwd()); $compilerConfig = MAGENTO_ROOT . '/includes/config.php';
if (file_exists($compilerConfig)) { include $compilerConfig; } $mageFilename = MAGENTO_ROOT . '/app/Mage.php'; $maintenanceFile = 'maintenance.flag'; if (!file_exists($mageFilename)) { if (is_dir('downloader')) { header("Location: downloader"); } else { echo $mageFilename." was not found"; } exit; } if (file_exists($maintenanceFile)) { include_once dirname(__FILE__) . '/errors/503.php'; exit; } require_once $mageFilename; #Varien_Profiler::enable(); if (isset($_SERVER['MAGE_IS_DEVELOPER_MODE'])) { Mage::setIsDeveloperMode(true); } #ini_set('display_errors', 1); umask(0);
/* Store or website code */
$mageRunCode = isset($_SERVER['MAGE_RUN_CODE']) ? $_SERVER['MAGE_RUN_CODE'] : '';
/* Run store or run website */ $mageRunType = isset($_SERVER['MAGE_RUN_TYPE']) ? $_SERVER['MAGE_RUN_TYPE'] : 'store'; Mage::run($mageRunCode, $mageRunType);
在过去的一周里,我尝试做了以下事情:
- 为 php 版本安装了 php_curl 修复程序。php_curl 扩展有效,因为当我安装新的 magento 副本时,它可以正常工作。
- 我检查了安装 Magento 的所有系统要求的列表,并且 php 扩展都在工作。
- 我将 php.ini 中的 memory_limit 从 128M 更改为 512M。
- 我修改了 app/etc 中的 local.xml 文件以指向我的本地主机和我为这家商店创建的本地数据库名称、db_user、db_pass。
- 我从本地数据库中的实时服务器导入数据库,并修改了 core_config 表中的 base_url 选项
- 我打开了 apache 模块 headers_module、rewrite_module、include_module 和 php5_module。
- 我尝试将 .htaccess 编辑为 rewrite_base 但没有任何改变。
- 我尝试从 .htaccess AddType x-mapp-php5 .php 和 AddHandler x-mapp-php5 .php 从 .htaccess 中注释掉,但之后没有任何显示,所以我保持原样,未注释。
- 我使用了 4-5 个版本的 php 和 apache.. 但没有任何效果。
现在最后一件事..在我的apache错误日志中..我得到的最后一件事是以下行:
[Fri Oct 25 11:50:14 2013] [warn] Cannot get media type from 'x-mapp-php5'
请帮我解决这个问题。提前感谢您的时间和帮助。