日志中的错误是
Premature end of script headers: index.php, referer: http://www.example.com/index.php/install/wizard/config/?config%5Blocale%5D=en_US&config%5Btimezone%5D=America%2FLos_Angeles&config%5Bcurrency%5D=USD
magento 安装屏幕中显示错误
Error log record number: 425991650051
我还发现在安装过程中,magento 数据库中只有 86 个表被成功添加。
服务器的phpinfo
display_errors On
max_execution_time 30
memory_limit 90M
safe_mode Off
cURL support enabled
PDO support enabled
Simplexml support enabled
mcrypt support enabled
hash support enabled
GD Support enabled
DOM/XML enabled
iconv support enabled
Soap Client enabled
Soap Server enabled
Mysql Server version: 5.1.56
PHP Version 5.3.13
index.php 中的更改
error_reporting(E_ALL);
ini_set('display_errors', 1);
最初我认为这是由于 memory_limit 和 max_execution_time,但我在本地主机中重新创建了相同的场景,尽管内存限制为 90M 并且最大执行时间为 30,但它成功地工作
如何解决这个问题?