그누보드 [Amina] wr_link1,2 등록된 영상 원본이 삭제된 경우 목록 보기 오류
페이지 정보
본문
아미나 빌더를 사용하는 경우, wr_link1 에 vimeo 링크를 삽입하면 본문에 영상이 자동 보여집니다.
게시판 테이블에 as_thumb 컬럼에 썸네일 이미지가 추출 등록되는데, 이것이 공백인것을 체크하지 못하고 이미지 처리를 하려는 시도로 인한 문제가 발생합니다.
문제된 게시판의 목록의 소스를 보면 목록 상단에서
<div class="list-wrap">
<form name="fboardlist" id="fboardlist" action="./board_list_update.php" onsubmit="return fboardlist_submit(this);" method="post" role="form" class="form">
<input type="hidden" name="bo_table" value="c5">
<input type="hidden" name="sfl" value="">
<input type="hidden" name="stx" value="">
<input type="hidden" name="spt" value="">
<input type="hidden" name="sca" value="">
<input type="hidden" name="sst" value="wr_num, wr_reply">
<input type="hidden" name="sod" value="">
<input type="hidden" name="page" value="1">
<input type="hidden" name="sw" value="">
<div class="list-container">
이후의 오류가 발생합니다.
list.skin.php 내용을 보면
<div class="list-container">
<?php
$k = 0;
for ($i=0; $i < $list_cnt; $i++) {
... 중략 ...
// 썸네일
$list[$i]['no_img'] = $board_skin_url.'/img/no-img.jpg'; // No-Image
$img = apms_wr_thumbnail($bo_table, $list[$i], $thumb_w, $thumb_h, false, true);
해당 게시글을 디비에서 확인하니 wr_link1 에 https://vimeo.com/111111111 의 경로가 확인되었고,
이것을 브라우저로 열어보니 아래와 같이 없는 페이지로 표시되네요
이것을 수정하기 위해 아래의 사항을 수정하였습니다.
lib/apms.video.lib.php
$tmp_thumb = apms_video_thumbnail($write['as_thumb'], 1);
if($tmp_thumb) {
$z = 1;
$img[0]['img'] = $tmp_thumb;
$img[0]['alt'] = '';
$make_thumb = false;
unset($write);
}
를 아래와 같이 변경
$tmp_thumb = apms_video_thumbnail($write['as_thumb'], 1);
if($tmp_thumb && $write['as_thumb']) {
$z = 1;
$img[0]['img'] = $tmp_thumb;
$img[0]['alt'] = '';
$make_thumb = false;
unset($write);
}
게시판 테이블에 as_thumb 컬럼에 썸네일 이미지가 추출 등록되는데, 이것이 공백인것을 체크하지 못하고 이미지 처리를 하려는 시도로 인한 문제가 발생합니다.
문제된 게시판의 목록의 소스를 보면 목록 상단에서
<div class="list-wrap">
<form name="fboardlist" id="fboardlist" action="./board_list_update.php" onsubmit="return fboardlist_submit(this);" method="post" role="form" class="form">
<input type="hidden" name="bo_table" value="c5">
<input type="hidden" name="sfl" value="">
<input type="hidden" name="stx" value="">
<input type="hidden" name="spt" value="">
<input type="hidden" name="sca" value="">
<input type="hidden" name="sst" value="wr_num, wr_reply">
<input type="hidden" name="sod" value="">
<input type="hidden" name="page" value="1">
<input type="hidden" name="sw" value="">
<div class="list-container">
이후의 오류가 발생합니다.
list.skin.php 내용을 보면
<div class="list-container">
<?php
$k = 0;
for ($i=0; $i < $list_cnt; $i++) {
... 중략 ...
// 썸네일
$list[$i]['no_img'] = $board_skin_url.'/img/no-img.jpg'; // No-Image
$img = apms_wr_thumbnail($bo_table, $list[$i], $thumb_w, $thumb_h, false, true);
해당 게시글을 디비에서 확인하니 wr_link1 에 https://vimeo.com/111111111 의 경로가 확인되었고,
이것을 브라우저로 열어보니 아래와 같이 없는 페이지로 표시되네요
이것을 수정하기 위해 아래의 사항을 수정하였습니다.
lib/apms.video.lib.php
$tmp_thumb = apms_video_thumbnail($write['as_thumb'], 1);
if($tmp_thumb) {
$z = 1;
$img[0]['img'] = $tmp_thumb;
$img[0]['alt'] = '';
$make_thumb = false;
unset($write);
}
를 아래와 같이 변경
$tmp_thumb = apms_video_thumbnail($write['as_thumb'], 1);
if($tmp_thumb && $write['as_thumb']) {
$z = 1;
$img[0]['img'] = $tmp_thumb;
$img[0]['alt'] = '';
$make_thumb = false;
unset($write);
}
댓글목록
등록된 댓글이 없습니다.