Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Apache web server timeout after 60 seconds

I am experiencing timeout after 60 seconds for apache web server + php running in IBM softlayer.

These are my settings (httpd server restart after these settings)

httpd.conf  
TimeOut 300
Timeout 300

* tried both at the same, also single entry of TimeOut and Timeout only.

php.ini
max_execution_time = 300  

PHP code:

<?php
set_time_limit(10000);  //Just to make sure
sleep(70);
echo "Successful";
?>  

Using Command Prompt

php test.php  

Result is Successful

Using different browsers (Chrome, Firefox and Safari)

http://mysite/test.php    

Result : Timeout exactly at 60 seconds!

Logs

php_error.log and httpd error_log
No errors!

I've found similar articles about this, but everybody is pointing at max_execution_time and Timeout. So far, no help.
Thanks a lot!

like image 947
gsy Avatar asked Aug 04 '17 03:08

gsy


1 Answers

many limitation are exists in php and apache server too

1. Apache limits:

find httpd.conf in your apache server : 

 c:\WampDeveloper\Config\Apache\extra\httpd- default.conf

and change limits:

    Timeout 300
    max_execution_time = 300

2. php.ini:

    upload_max_filesize = 256M
    post_max_size = 257M
    memory_limit = 258M
    max_input_time = 300
    max_execution_time = 300

After making all changes, restart your Apache server. I hope it was helpful.

like image 184
andreas karimi Avatar answered Nov 01 '22 22:11

andreas karimi