centos上500内部服务器错误

时间:2018-06-19 08:05:17

标签: php centos-web-panel

我的请求仅持续3分钟并返回500内部服务器错误。这是我的apache error_log文件: Script timed out before returning headers: index.php, referer: ... 任何人都可以帮我解决这个问题吗?我已经设置了执行时间但仍无法正常工作:ini_set('max_execution_time', 0); 这是我的代码

public static function compress($source, $destination)
{
  ini_set('max_execution_time', 0);
  Tinify\setKey(env('API_KEY'));
  Tinify\fromFile($source)->toFile($destination);
}

我的代码只使用tinypng api来压缩图像,我觉得它太长了

enter image description here

1 个答案:

答案 0 :(得分:-1)

原因 1.如果您保持睡眠功能,例如睡眠(5000); 2. PHP版本7使它成为5.6。

如果您已解决问题,请分享您的答案。 谢谢。