您在這裡

怎樣解決Maximum execution time of 30 seconds exceeded in D:\...\includes\file.inc on line 891

AACC88's 的頭像
AACC88 在 2011-05-15 (周日) 22:26 發表

我想進入「管理」時,出現:
Fatal error: Maximum execution time of 30 seconds exceeded in D:\...\includes\file.inc on line 891

網上介紹的兩種解決方法:
1.修改php.ini:
max_execution_time = 300 時間,然後重起服務
或者在程序寫
set_time_limit(時間); //0為無限制
重啟apache
2.直接在 settings.php 裡加入
ini_set('max_execution_time', 100);

按方法1修改自己電腦上的php.ini沒起作用;按方法2修改/sites/default中的settings.php後,上傳到服務器上,傳了99%停止了。

請問應怎樣解決?