제나보드1.3 수정후
페이지 정보
본문
상단메뉴 부분에(제로나라1,제로나라2밑) 배너부분,페이지부분이 나타납니다.
어디를 수정해야 하는지요
그리고 메인이미지게시판에 플레쉬를 넣으면 no img라고 나타납니다.
플레쉬를 사용하려면 어떻게 해야하는지요
관련링크
-
http://carpotal.dothome.co.kr/board/
1626회 연결
댓글목록
헐랭이님의 댓글
헐랭이쪽지보내기 메일보내기 홈페이지 자기소개 아이디로 검색 전체게시물 작성일
skin/latest/banner_main/latest.skin.php 에서 출력할 파일의 확장자를 체크하여
자동으로 출력이 되도록 되어 있더군요. 소스에서 문제가 있는지 아직 테스트는 못해봤네요.
아래는 latest.skin.php 의 내용입니다.
<?
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
?>
<table width="80%" cellpadding=0 cellspacing=0 border=0><tr><td>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<!-- <tr><td height=10></td></tr> -->
<? for ($i=0; $i<count($list); $i++) { ?>
<tr>
<td align="center">
<?
echo "<a href='{$list[$i][wr_1]}' target='{$list[$i][wr_2]}'>";
$image = urlencode($list[$i][file][0][file]); // 첫번째 파일이 이미지라면
if (preg_match("/\.(gif|jpg|png)$/i", $image)) { ?>
<img src='<?=$g4[path]?>/data/file/<?=$bo_table?>/<?=$image?>' width='645' border='0'></a><br>
<? }
else if(preg_match("/\.(swf|wmv|asf)$/i", $image))
{ echo"<embed src='$g4[path]/data/file/$bo_table/$image' width='645' wmode='transparent'></embed>";}
else{
echo"<img src='$latest_skin_path/img/noimage.gif' width='645' border='0'></a><br>";
}?>
</td>
</tr>
<tr><td height=7></td></tr>
<? } ?>
</table>
</td></tr></table>