|
ecshop的后台点还原数据库之时,出现错误 :Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 17816268 bytes) in D:\......\admin\database.php on line 631
解决方法:
打开 admin/database.php 文件
找到
@ini_set('memory_limit', '64M');
把这里的 64M 改大点,比如 1000M
@ini_set('memory_limit', '1000M'); |
|