php.ini File Configuration

php.ini File Configuration

Check after server installation

  • short_open_tag = On
    Enables the use of "<?php" and "<?".
  • display_errors = On
    Outputs error messages if they occur during PHP script execution.
    (If set to Off, it will display HTTP 500 Internal Server Error)
  • date.timezone = Asia/Seoul
    Sets the specified timezone.
  • error_reporting=E_ALL & ~E_NOTICE & ~E_DEPRECATED
    Ignores notice errors.

(* php.ini path: php –ini | grep php.ini)

Leave a Reply

이메일 주소는 공개되지 않습니다. (* 질문, 건의사항 등은 "질문게시판"을 이용해주세요)