Reputation: 17185
I have a large photo that I am trying to upload and after about 30 seconds the screen just goes blank and there are no error logs. One guess is that it might be request timeout time. How can I increase that in Apache?
Also, while I am at it, how do I extend the user session timeout?
Thanks!
Upvotes: 0
Views: 1184
Reputation: 270647
In PHP, you can increase the max_execution_time
in php.ini. Also, set_time_limit($numseconds)
can be used in a script.
And I believe 30sec is the default.
Upvotes: 1