0

我正在尝试在我的本地主机 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); 

在过去的一周里,我尝试做了以下事情:

  1. 为 php 版本安装了 php_curl 修复程序。php_curl 扩展有效,因为当我安装新的 magento 副本时,它可以正常工作。
  2. 我检查了安装 Magento 的所有系统要求的列表,并且 php 扩展都在工作。
  3. 我将 php.ini 中的 memory_limit 从 128M 更改为 512M。
  4. 我修改了 app/etc 中的 local.xml 文件以指向我的本地主机和我为这家商店创建的本地数据库名称、db_user、db_pass。
  5. 我从本地数据库中的实时服务器导入数据库,并修改了 core_config 表中的 base_url 选项
  6. 我打开了 apache 模块 headers_module、rewrite_module、include_module 和 php5_module。
  7. 我尝试将 .htaccess 编辑为 rewrite_base 但没有任何改变。
  8. 我尝试从 .htaccess AddType x-mapp-php5 .php 和 AddHandler x-mapp-php5 .php 从 .htaccess 中注释掉,但之后没有任何显示,所以我保持原样,未注释。
  9. 我使用了 4-5 个版本的 php 和 apache.. 但没有任何效果。

现在最后一件事..在我的apache错误日志中..我得到的最后一件事是以下行:

[Fri Oct 25 11:50:14 2013] [warn] Cannot get media type from 'x-mapp-php5'

请帮我解决这个问题。提前感谢您的时间和帮助。

4

1 回答 1

0

尝试在 localhost 上运行 magento,如下所示:

检查您的设备 IP 并将以下行添加到 windows/system32/drivers/etchosts 文件

192.168.1.59       magento.hue
192.168.1.59       www.magento.hue

请相应地更改IP。

然后去你-xamp-installation/apache/conf-extra/httpd-vhosts.conf

并添加以下内容

NameVirtualHost 192.168.1.59:80
<VirtualHost magento.hue>
    ServerAdmin magento.hue
    DocumentRoot "C:/www/mag_domain/"
    ServerName magento.hue
    ServerAlias www.magento.hue
    ErrorLog "C:/www/mag_domain/error.log"
    CustomLog "C:/www/mag_domain/access.log" combined
    <Directory "C:/www/mag_domain">
        Options Indexes FollowSymLinks
        AllowOverride All
        Order allow,deny
        Allow from all
    </Directory>
</VirtualHost>

假设 C:/www/mag_domain/ 是您下载实时站点的文件夹的路径。相应地改变。

将 db 导入本地 mysql 并更改 app/etc/local.xml 中的用户名/密码等

然后尝试在浏览器上运行http://magento.hue并告知结果。

请尝试使用一组新的 magento 站点和数据库,以防您更改了其中的某些内容。

于 2013-10-25T10:21:31.117 回答