Warning: Use of undefined constant G5_TIMEZONE - assumed 'G5_TIMEZONE' > 그누보드5 팁자료실

그누보드5 팁자료실

Warning: Use of undefined constant G5_TIMEZONE - assumed 'G5_TIMEZONE' 정보

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."'");

추천
1
  • 복사

댓글 3개

© SIRSOFT
현재 페이지 제일 처음으로