Zend Server上的magento(Win7)安装错误

我尝试第一次安装magento

  • 我创build了名为“project”的数据库
  • 在我的C:\ Zend \ Apache2 \ conf \ httpd.conf中添加了结尾:

    <Directory "C:\Zend\Apche2\htdocs\project"> Options Indexes FollowSymLinks AllowOverride All Order allow,deny Allow from all </Directory> 
  • 在我的ZendServer /服务器设置/扩展:PDO_MySQL,simplexml,mcrypt,散列,GD,DOM,iconv,curl,SOAP

  • 在C:\ Zend \ ZendServer \ etc \ php.ini我设置:
 safe_mode = Off ;<-- was set to off ... memory_limit = 512M; Maximum amount of memory a script may consume (128MB) 

在magento安装(使用Web服务器(Apache)重写启用)的步骤“configuration”后,我得到:

  • 内部服务器错误

我的数据库充满了表(这应该是好的)
我的Zend服务器显示:

 27-Oct 06:55 6 Severe Slow Request Execution (Absolute) http://localhost/project/index.php/install/wizard/installDb/ Critical Open 27-Oct 06:55 4 Fatal PHP Error C:\Zend\Apache2\htdocs\project\lib\Varien\Db\Adapter\Pdo\Mysql.php Critical Open 27-Oct 06:55 5 Slow Function Execution curl_exec Warning Open 27-Oct 06:55 5 Slow Request Execution (Absolute) http://localhost/project/index.php/install/wizard/configPost/ 

什么可能是错的?

在安装Magento时; 该页面将recursionredirect,并将显示默认的浏览器页面。 在检查Apache访问日志时,以下错误显示“GET /magento/index.php/install/ HTTP / 1.1”302 92706可以使用Apacheconfiguration修复此问题。 打开文件httpd.conf。 更改下面的行:

 <FilesMatch "^\.ht"> Order allow,deny Deny from all Satisfy All <FilesMatch> 

 <FilesMatch "^\.ht"> Order allow,deny Allow from all Satisfy All </FilesMatch> 

参考http://wp.me/p8AtY-gc

你有错字吗?

<Directory "C:\Zend\Apche2\htdocs\project">

<Directory "C:\Zend\ApAche2\htdocs\project">

您的服务器是否可以访问Internet? curl_exec试图从网上请求材料,并超时…