我在我的codeigniter实时项目上有一个链接:
<a href="https://businessactioncomplete.com/action_station/crmmails/viewmails?page=1" class="btn btn-warning btn-block">Check Incoming Emails</a>
当我单击此链接时,它开始加载页面,它在crmmails.php中调用viewmails()函数,脚本运行几分钟,恰好两分钟后,函数执行停止,viewmails()函数运行从头开始。我从调试文件中知道这一点:
crmmails running viewmails function 2019-03-01 03:34:06am // first call
crmmails before emails_view 2019-03-01 03:34:06am
crmmails running viewmails function 2019-03-01 03:36:06am // second call
crmmails before emails_view 2019-03-01 03:36:06am
crmmails after emails_view 2019-03-01 03:36:07am
为什么会这样?我需要在哪里检查这种设置。我想停止刷新,因为我的脚本必须运行更长的时间。
答案 0 :(得分:0)
修改php.ini
中的最大执行时间
; Maximum execution time of each script, in seconds
; http://php.net/max-execution-time
; Note: This directive is hardcoded to 0 for the CLI SAPI
max_execution_time = 120
答案 1 :(得分:0)
我检查了您的URL,它正在打开。但是代码中存在一些错误。
您应该在php.ini文件中更改执行时间