某些文件必须上传到系统。大多是5-10MB左右的JPG文件。 但是,用户通常上传速度非常慢,因此大多数情况下都超过了max_execution_time()。
我无权修改max_execution_time()
在这种情况下我能做些什么吗?
答案 0 :(得分:1)
尝试使用ini_set()
设置:
$max_execution_time = 1000; // or whatever value you need
ini_set('max_execution_time', $max_execution_time);