且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

在wamp上安装magento的问题

更新时间:2023-02-21 23:03:43

使用以下设置修改您的php.ini:

Modify your php.ini with this setting:

max_execution_time = 1800

在使用Magento时,我还修改了分配给php的内存限制

I also modify the memory limit allocated to php when using Magento

memory_limit = 512M

或者,如果您没有php.ini访问权限,则可以编辑index.php.

Alternatively you can edit index.php, if you don't have php.ini access.

ini_set('max_execution_time ', 1800);