리스트 썸네일질문좀 드릴게요 채택완료

 썸네일이 잘나오다가 갑작이 안나오는데

이럴땐 어떻게 해야하나요 ?

 

 

 

<div class="premium_box_1"> <a href="<?php echo $list[$i]['href'] ?>">

 <h1>  

                    <a href="<?php echo $list[$i]['href'] ?>">

                    <?php

                    if ($list[$i]['is_notice']) { // 공지사항  ?>

                        <strong style="width:<?php echo $board['bo_gallery_width'] ?>px;height:<?php echo $board['bo_gallery_height'] ?>px">공지</strong>

                    <?php } else {

                        $thumb = get_list_thumbnail($board['bo_table'], $list[$i]['wr_id'], $board['bo_gallery_width'], $board['bo_gallery_height']);

 

                        if($thumb['src']) {

                            $img_content = '<img src="'.$thumb['src'].'" alt="'.$thumb['alt'].'" width="'.$board['bo_gallery_width'].'" height="'.$board['bo_gallery_height'].'">';

                        } else {

                            $img_content = '<span style="width:'.$board['bo_gallery_width'].'px;height:'.$board['bo_gallery_height'].'px">no image</span>';

                        }

 

                        echo $img_content;

                    }

                     ?>

                    </a>

                 </h1>

 <p><?php echo $list[$i][wr_5]; ?></p>

 <b><?php echo $list[$i][wr_subject]; ?></b>

 <ul>

 <li></li>

  <li><dd>홀형태</dd><dt><?php echo $list[$i][wr_7]; ?> </dt></li>

 <li><dd>최소하객인원</dd><dt><?php echo $list[$i][wr_10]; ?></dt></li>

  <li><dd>식사메뉴</dd><dt><?php echo $list[$i][wr_6]; ?></dt></li>

<li><dd>식대</dd><dt><?php echo $list[$i][wr_9]; ?></dt></li>

 

 

 </ul>

 </a>

 </div>  

답변 2개

채택된 답변
+20 포인트

잘나오다가 안나오면 용량이라던가 다른 외적인것을

확인해보세여

 

로그인 후 평가할 수 있습니다

답변에 대한 댓글 1개

용량은 아직 많이 있습니다

댓글을 작성하려면 로그인이 필요합니다.

먼저 config.php 파일에서 캐시를 끄고 확인하시고.
define('G5_USE_CACHE',  false); // 최신글등에 cache 기능 사용 여부

캐시를 껐을 때 잘 나온다면 캐시 문제이니 아래 내용 수정하세요.

$thumb = get_list_thumbnail($board['bo_table'], $list[$i]['wr_id'],........
여기서 $board['bo_table'] 를 $bo_table 로 수정.
$thumb = get_list_thumbnail($bo_table, $list[$i]['wr_id'], .........
로그인 후 평가할 수 있습니다

답변에 대한 댓글 4개

해본결과 안되네요 ㅠㅠ
$thumb = get_list_thumbnail($board['$bo_table'], $list[$i]['wr_id'], $board['bo_gallery_width'], $board['bo_gallery_height']);


네 해도안되네요 ㅠ
안되네요 $thumb = get_list_thumbnail($bo_table, $list[$i]['wr_id'], $board['bo_gallery_width'], $board['bo_gallery_height']);
ㅠㅠ
아... 올려주신 건 게시판이군요! 최신글하고 착각을 했네요. 코멘트는 다 삭제했습니다.
게시판이면 제가 올려놓은 위 내용은 해당되지 않습니다. 최신글에 관한 내용이었습니다.

댓글을 작성하려면 로그인이 필요합니다.

답변을 작성하려면 로그인이 필요합니다.

로그인
🐛 버그신고