Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Set ini max_execution_time doesn't work

Tags:

php

nginx

Before I use nginx and php-fpm, I used Apache, so when I wanted only one of my cron jobs to run without time execution limitation, I used these lines in my PHP code:

set_time_limit(0);
ini_set('max_execution_time', 0); 

but after I migrated from Apache to nginx, this code doesn't work. I know ways to change nginx.conf to increase maximum execution time.

But I want to handle this with php code. Is there a way? I want to specify only one file that can run PHP code without time limitation.

like image 980
babak faghihian Avatar asked Mar 26 '14 11:03

babak faghihian


People also ask

What is max_execution_time in PHP INI?

max_execution_time int. This sets the maximum time in seconds a script is allowed to run before it is terminated by the parser. This helps prevent poorly written scripts from tying up the server. The default setting is 30 . When running PHP from the command line the default setting is 0 .

How do you increase the maximum execution time of 30 seconds exceeded?

Log in to cPanel using your credentials. Navigate to the Software section and click on the MultiPHP INI Editor. In the new window, select your domain from the dropdown menu, locate the max_execution_time PHP directive, and change the value associated with it to 300.


2 Answers

Try This:

Increase PHP script execution time with Nginx

You can follow the steps given below to increase the timeout value. PHP default is 30s. :

Changes in php.ini

If you want to change max execution time limit for php scripts from 30 seconds (default) to 300 seconds.

vim /etc/php5/fpm/php.ini

Set…

max_execution_time = 300

In Apache, applications running PHP as a module above would have suffice. But in our case we need to make this change at 2 more places.

Changes in PHP-FPM

This is only needed if you have already un-commented request_terminate_timeout parameter before. It is commented by default, and takes value of max_execution_time found in php.ini

Edit…

vim /etc/php5/fpm/pool.d/www.conf

Set…

request_terminate_timeout = 300

Changes in Nginx Config

To increase the time limit for example.com by

vim /etc/nginx/sites-available/example.com

location ~ \.php$ {
    include /etc/nginx/fastcgi_params;
        fastcgi_pass  unix:/var/run/php5-fpm.sock;
    fastcgi_read_timeout 300; 
}

If you want to increase time-limit for all-sites on your server, you can edit main nginx.conf file:

vim /etc/nginx/nginx.conf

Add following in http{..} section

http {
    #...
        fastcgi_read_timeout 300; 
    #...
}

Reload PHP-FPM & Nginx

Don’t forget to do this so that changes you have made will come into effect:

service php5-fpm reload
service nginx reload

or try this

fastcgi_send_timeout 50;
fastcgi_read_timeout 50;

fastcgi has it's own set of timeouts and checks to prevent it from stalling out on a locked up process. They would kick in if you for instance set php's execuction time limit to 0 (unlimited) then accidentally created an infinite loop. Or if you were running some other application besides PHP which didn't have any of it's own timeout protections and it failed.

like image 93
Ravi Delixan Avatar answered Sep 17 '22 08:09

Ravi Delixan


ini_set('max_execution_time', 0);

do this if "Safe Mode" is off

set_time_limit(0);

Place this at the top of your PHP script and let your script loose!

Note: if your PHP setup is running in safe mode, you can only change it from the php.ini file.

like image 23
Muhammad Tahir Avatar answered Sep 17 '22 08:09

Muhammad Tahir