안녕하세요.
워드프레스 게시판 KBoard를 다운받아 게시판을 사용하고 있는데요.
게시판 스킨을 thumnail로 선택하고 게시판을 생성 후 에디트창에 이미지를 삽입하고
썸네일에 이미지 삽입 후 저장하기를 클릭하면
Warning: exif_read_data(590184a933cb14279544.jpg) [function.exif-read-data]: Incorrect APP1 Exif Identifier Code in /home/hosting_users/wt1_t004/www/wp-content/plugins/kboard/class/KBFileHandler.class.php on line 551
Warning: Cannot modify header information - headers already sent by (output started at /home/hosting_users/wt1_t004/www/wp-content/plugins/kboard/class/KBFileHandler.class.php:551) in /home/hosting_users/wt1_t004/www/wp-content/plugins/kboard/class/KBContent.class.php on line 1071
Warning: Cannot modify header information - headers already sent by (output started at /home/hosting_users/wt1_t004/www/wp-content/plugins/kboard/class/KBFileHandler.class.php:551) in /home/hosting_users/wt1_t004/www/wp-includes/pluggable.php on line 1195
위와 같은 에러가 발생합니다.
그러나 다시 리스트로 돌아가 보면 글이 등록되어 있습니다.
왜 이러한 에러가 발생하는지 확인 부탁드립니다.
안녕하세요.
우선 아래 오류를 호스팅 업체에 알려주시고 해결이 가능한지 문의해보셔야 할 듯합니다.
Warning: exif_read_data(590184a933cb14279544.jpg) [function.exif-read-data]: Incorrect APP1 Exif Identifier Code in /home/hosting_users/wt1_t004/www/wp-content/plugins/kboard/class/KBFileHandler.class.php on line 551
호스팅 업체에서 해결이 안된다면,
FTP로 접속해서 /wp-content/plugins/kboard/class/KBFileHandler.class.php 파일을 수정해주세요.
아래 코드를 찾아서
$exif = exif_read_data($image);
아래처럼 변경해보시겠어요?
$exif = @exif_read_data($image);
고맙습니다.