Answers for "show php errors ubuntu"

PHP
2

ubuntu check php status

#check version first
php --version
#status
service php7.4-fpm status
#restart
service php7.4-fpm restart
#reload
service php7.4-fpm reload
#force-reload
service php7.4-fpm force-reload
#start
service php7.4-fpm start
#stop
service php7.4-fpm stop

#or
/etc/init.d/php7.4-fpm restart
Posted by: Guest on April-20-2022
0

show php all errors

error_reporting(E_ALL);
ini_set('display_errors', '1');
Posted by: Guest on February-21-2021

Browse Popular Code Answers by Language