영카트 [YC5] 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."'");
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."'");
댓글목록
등록된 댓글이 없습니다.