Warning: Use of undefined constant G5_TIMEZONE - assumed 'G5_TIMEZONE'
php 7.2 서버에서 오류 발생
Warning: Use of undefined constant G5_TIMEZONE - assumed 'G5_TIMEZONE' (this will throw an Error in a future version of PHP) in /home/happyjung/www/common.php on line 142
142 라인의 내용은 다음과 같습니다.
if (defined(G5_TIMEZONE)) sql_query(" set time_zone = '".G5_TIMEZONE."'");
를 아래와 같이 변경합니다.
if (defined('G5_TIMEZONE')) sql_query(" set time_zone = '".G5_TIMEZONE."'");
|
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기
댓글 3개