그누보드4->5 이전후 이미지 링크 문의드려요
본문
커스터마이징 많이 된 게시판을 가져왔는데요
----그누4 list.php 이미지 불러오는 소스 ----
$img = "$g4[path]/data/file/$bo_table/".urlencode($list[$i][file][0][file]);
if (!file_exists($img) || !$list[$i][file][0][file])
$img = "$board_skin_path/img/progress/no_image.gif";
<td width="170" height="170">{$view_href}<img src="{$img}" width="170" height="170" border="0" ></a></td>
이미지 불러오는게 이런식으로 되어있습니다
그누보드5에 맞게 쓰려면 이미지를 어떻게 수정해야하나요?
현재 게시판에
----그누5 list.php 이미지 불러오는 소스 ----
for ($i=0; $i<count($list); $i++)
{
$thumb = get_list_thumbnail($board['bo_table'], $list[$i]['wr_id'], $board['bo_gallery_width'], $board['bo_gallery_height']);
if($thumb['src']) {
$img = '<img src="'.$thumb['src'].'" alt="'.$thumb['alt'].'" width="80" height="80">';
} else {
$img = '<img src= "'.$board_skin_path.'/img/progress/no_image.gif" width="80" height="80">';
}
답변 1
우선 그누보드4에서는 dhtml로 업로드 된 이미지 썸네일 생성은 위의 소스처럼 활용을 했지만
그누보드5에서는 기본 썸네일이 이미 적용이 되어 있습니다.
현재 그4에서 그5로 이전을 하신 후
이미지는 정상적으로 보이시나요? 정상적으로 보인다면 자동 썸네일 생성이 되는게 정상 입니다.