php.ini file settings
Confirm after installing the server
- short_open_tag = On
“<? PHP” and “<?” Make it available. - display_errors = On
When executing a PHP script, the message is output when the error occurs.
(In case of OFF, HTTP 500 internal server error output) - date.timezone = Asia/Seoul
Set the time zone. - error_reporting=E_ALL & ~E_NOTICE & ~E_DEPRECATED
NOTICE error is ignored.
(* php.ini path: PHP–Ini | grep php.ini)
Leave a Reply