Laravel 5操作超时

时间:2016-02-13 06:48:17

标签: php laravel for-loop dedicated-server

laravel 5给了我"操作超时"在hostgator专用服务器上30秒后。

但是我将最长时间更改为3600秒,并且我的本地主机

上没有错误

我的代码是

var stereoSoundSource = audioContext.createBufferSource();
stereoSoundSource.buffer = whatever;
stereoSoundSource.connect(merger, 0, 1); 

链接http://oemsys.net/test2

不,我使用专用服务器 所以我想我必须添加我的代码

$total = '';
for ($i=0;$i<60;$i++){
    $total .=  $i;
    sleep(1);
}
echo $total;

1 个答案:

答案 0 :(得分:1)

因为它循环60次需要60秒,

你是共享主机hostgator吗?如果是,目前hostgator有一些无法更改的PHP设置..

safe mode = Off (cannot adjust)
memory_limit = 256M (MAXIMUM)
max_execution_time = 30 (MAXIMUM in seconds)
max_input_time = 60 (MAXIMUM in seconds)
post_max_size = 64M (MAXIMUM)
upload_max_filesize = 64M (MAXIMUM)
enable_dl = Off (cannot adjust)

来源:http://support.hostgator.com/articles/pre-sales-policies/php-settings-that-cannot-be-changed

我的建议为何使用睡眠?或尝试升级到VPS或其他共享主机可以编辑您的PHP.ini