그누보드 테마 설치 후 경고문 (도와주세요..)
본문
가비아 호스팅에
그누보드5.3x버전 설치 한 후
테마를 설치했는데
아래와 같은 경고문이 뜹니다.
어떻게 해결해야 하나요? ㅜㅜ
- Warning: Use of undefined constant is_file - assumed 'is_file' (this will throw an Error in a future version of PHP) in /www_root/adm/admin.lib.php on line 179
답변 2
아래 위치가 맞다면...
// 테마설정 정보
function get_theme_config_value($dir, $key='*')
{
$tconfig = array();
$theme_config_file = G5_PATH.'/'.G5_THEME_DIR.'/'.$dir.'/theme.config.php';
if(is_file($theme_config_file)) { <--- 여기가 179라인이라면...
include($theme_config_file);
if($key == '*') {
$tconfig = $theme_config;
} else {
$keys = array_map('trim', explode(',', $key));
foreach($keys as $v) {
$tconfig[$v] = trim($theme_config[$v]);
}
}
}
return $tconfig;
}
그 위치에 [theme.config.php] 파일이 잘 있는지 확인해보시고,
테마폴더를 임의로 이름을 바꾸셨다면,
원래 폴더명 (theme2) 으로 바꾸고 다시 해보세요.
!-->저 에러난 위치의 소스를 올려보세요.
답변을 작성하시기 전에 로그인 해주세요.