Home > Article > Backend Development > What should I do if modifying the php.ini configuration file is invalid?
The solution to the invalid modification of the php.ini configuration file: first determine whether the modified [php.ini] file is a loaded file; then modify the file configuration to [display_errors=On]; finally restart nginx and [php -fpm] That’s it.
Solution to invalid modification of php.ini configuration file:
1. Determine the modified php.ini file Whether it is a loaded file, use the command:
php -i | grep "php.ini"
2, php-fpm.conf
file configuration can override the configuration of the php.ini file.
For example, modify the configuration display_errors=On
in the php.ini file. If the configuration under the php-fpm.conf file: php_flag[display_errors] = off, the configuration will not take effect.
3. Remember to restart nginx and php-fpm
Related learning recommendations: PHP programming from entry to proficiency
The above is the detailed content of What should I do if modifying the php.ini configuration file is invalid?. For more information, please follow other related articles on the PHP Chinese website!