Premature end of script headers: index.php, mod_fcgid: read data timeout in 61 seconds

前端 未结 8 1646
轻奢々
轻奢々 2020-12-03 10:45

I wrote a simple crawling script (in php) at localhost (with 4 variations). All of them worked fine at localhost. But when I made move them to shared hosting, two of them wo

8条回答
  •  感动是毒
    2020-12-03 11:00

    read data timeout in 61 seconds

    They timed out. It's likely your execution time is set to 60 seconds. So at 61 seconds, the process was killed and therefore had a premature end.

    You can adjust your timeout (not recommended) or run the script through another source (recommended).

提交回复
热议问题