经常有的ecshop会出现内存不足用完的情况 PHP Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 32 bytes) in /home1/xxx/public_html/includes/cls_rss.php on line 1590 PHP Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 24 bytes) in /home1/xxx/public_html/includes/lib_common.php on line 1494 ,其实有些时候我们可以这样解决: 可以把includes的init.php中的 /* 初始化设置 */ @ini_set('memory_limit', '64M'); 改大一点,就不会出现你这种问题了 可以改成 @ini_set('memory_limit', '128M'); 或 @ini_set('memory_limit', '256M'); 或 @ini_set('memory_limit', '512M'); 根据具体情况 有时候根据提示是其它的文件中设置的内存限制。 |