-3
甲PHP錯誤遇到致命錯誤:在/var/www/html/central/system/database/drivers/mysqli/mysqli_driver.php超出線30秒的最大執行時間306
嚴重性:錯誤
消息:30秒的最大執行時間超過
文件名:mysqli的/ mysqli_driver.php
行號:306
回溯:
甲PHP錯誤遇到致命錯誤:在/var/www/html/central/system/database/drivers/mysqli/mysqli_driver.php超出線30秒的最大執行時間306
嚴重性:錯誤
消息:30秒的最大執行時間超過
文件名:mysqli的/ mysqli_driver.php
行號:306
回溯:
,你可以在你的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
我;米的服務器不在本地 –
那麼需要的,如果你有機會或將root文件來配置這個文件 ini_set('max_execution_time',300); –