小编典典

如何增加php中的执行超时?

php

如何增加交易超时时间?我想上传视频,但是没有上传大尺寸的视频?

引发错误 The process *** exceeded the timeout of 60 seconds.


阅读 468

收藏
2020-05-26

共1个答案

小编典典

您需要在php.ini中更改一些设置:

upload_max_filesize = 2M 
;or whatever size you want

max_execution_time = 60
; also, higher if you must - sets the maximum time in seconds
2020-05-26