How to solve nginx php file not executing time

WBOY
Release: 2023-05-12 09:34:06
forward
1160 people have browsed it

Step 1: View the current PHP execution time settings

Before you start adjusting the PHP execution time of Nginx, you need to understand the current settings. You can check the current PHP execution time setting by executing the following command:

php -i | grep "max_execution_time"
Copy after login

This will output the current PHP execution time limit. By default, it is set to 30 seconds.

Step 2: Modify the PHP execution time settings in Nginx

To change the PHP execution time settings in Nginx, you need to edit the Nginx website configuration file. In this example, we assume that your Nginx website configuration file is located in the /etc/nginx/sites-available/ directory and named it example.com.

Open the example.com file and find the following code:

location ~ \.php$ {
    fastcgi_pass unix:/var/run/php/php7.3-fpm.sock;
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    include fastcgi_params;
}
Copy after login

In this code block, you need to add the fastcgi_read_timeout directive. This directive is used to set the execution time of the PHP script in seconds.

location ~ \.php$ {
    fastcgi_pass unix:/var/run/php/php7.3-fpm.sock;
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    include fastcgi_params;
    fastcgi_read_timeout 300; # 5 minutes
}
Copy after login

In this example, we extend the PHP execution time to 5 minutes.

Step 3: Reload Nginx configuration and test

You have changed the PHP execution time settings in Nginx. Now, you need to reload the Nginx configuration file for the changes to take effect.

sudo systemctl reload nginx
Copy after login

Next, you can test whether the PHP execution time has been changed successfully. You can test this by creating a simple PHP script.

<?php
sleep(300); # sleep for 5 minutes
echo "Hello World!";
?>
Copy after login

Save the above code as test.php and upload it to the web directory in your Nginx server. Now you can access the file in your web browser and wait 5 minutes to see if the output is correct.

The above is the detailed content of How to solve nginx php file not executing time. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:yisu.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!