2017-04-18 71 views

回答

1

,你可以在你的PHP文件中設置此

ini_set('max_execution_time', 300); 

1.edit php.ini file 
2. Find this line: max_execution_time 
3. Change its value to 300: 
4. max_execution_time = 300; 

300/60 = 5分鐘就會EXCUTE

的XAMPP服務器需要編輯這個

xampp \ phpMyAdmin \ libraries \ config.default.php

搜索

$ CFG [ 'ExecTimeLimit']

然後改變它

$cfg['ExecTimeLimit'] = 600; // set higher value 

if you do not find this file then 
1. go to xampp\phpMyAdmin\ 
2. config.inc.php 
3. Search for $cfg['ExecTimeLimit'] = 300; 
4. update this 300 value higher // 0 unlimited 
5. save the file and restart the server 
+0

我;米的服務器不在本地 –

+0

那麼需要的,如果你有機會或將root文件來配置這個文件 ini_set('max_execution_time',300); –

相關問題