묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
getimagesize 질문
2006.07.03 14:43
아래와 같은 애러메시지가 뜹니다.
Warning: getimagesize(): URL file-access is disabled in the server configuration in /home/hosting_users/중간생략/gallery_board.php on line 66
Warning: getimagesize(http://중간생략/DSC_2834.JPG): failed to open stream: no suitable wrapper could be found in /home/hosting_users/중간생략/gallery_board.php on line 66
gallery_board.php의 66라인의 내용은 아래와 같습니다.
$size = getimagesize($filename);
http://중간생략/DSC_2834.JPG 파일은 서버에 정상적으로 있으며 다른 파일로 해보아도 똑같은 애러메시지가 뜹니다.
서버는 cafe24에서 호스팅 받고 있습니다.
추가적인 질문으로
$size = getimagesize($filename); 를
$size = @getimagesize($filename); 이렇게 표기한것도 있던데 이건 어떻게 틀린건가요??
Warning: getimagesize(): URL file-access is disabled in the server configuration in /home/hosting_users/중간생략/gallery_board.php on line 66
Warning: getimagesize(http://중간생략/DSC_2834.JPG): failed to open stream: no suitable wrapper could be found in /home/hosting_users/중간생략/gallery_board.php on line 66
gallery_board.php의 66라인의 내용은 아래와 같습니다.
$size = getimagesize($filename);
http://중간생략/DSC_2834.JPG 파일은 서버에 정상적으로 있으며 다른 파일로 해보아도 똑같은 애러메시지가 뜹니다.
서버는 cafe24에서 호스팅 받고 있습니다.
추가적인 질문으로
$size = getimagesize($filename); 를
$size = @getimagesize($filename); 이렇게 표기한것도 있던데 이건 어떻게 틀린건가요??
댓글 2
-
Mersia
2006.07.05 04:12
-
싸이친구™
2006.07.15 02:02
GD 라이브러리를 사용하지 못하게 되어있는거 같습니다.
빈 파일에 <? phpinfo(); ?> 를 넣으셔서 php정보를 찾아보시는데요,
.configure 에서(제일 위에 있음) gd로 되는 부분을 찾아보시면 됩니다. 만약 disable 로 되어있으면 사용이 불가능합니다.
$size = getimagesize($filename); // 에러시 문구가 보인다
$size = @getimagesize($filename); // 에러시 문구가 안보인다