게시판 리스트에 다운로드 링크 만들기 > 그누3 팁자료실

그누3 팁자료실

게시판 리스트에 다운로드 링크 만들기 정보

그누호환 게시판 리스트에 다운로드 링크 만들기

본문

유재민님이 요청으로 만들었습니다.

bbs/gblist.php파일 3번째 줄에 아래 소스추가
include "./lib/file.lib.php";

185번째 줄부터 189번째 줄 까지 아래와 같이 수정

원본-----------------------------------------------------------------------------------------
for ($k=1; $k<=$cfg[file_count]; $k++) {
 &nbsp; &nbsp; &nbsp; &nbsp;if (@preg_match($cfg[image_extension], $row["wr_file".$k])) {
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;$list[$i]["file_image".$k] = "./data/file/$bo_table/" . $row["wr_file".$k];
 &nbsp; &nbsp; &nbsp; &nbsp;}
 &nbsp; &nbsp;}
원본 끝--------------------------------------------------------------------------------------

수정-----------------------------------------------------------------------------------------
 &nbsp;for ($k=1; $k<=$cfg[file_count]; $k++) {
 &nbsp; &nbsp;$wr_file = $row["wr_file".$k];
 &nbsp; &nbsp;if ($wr_file) {
 &nbsp; &nbsp; &nbsp; &nbsp;if (!(preg_match($cfg[image_extension], $wr_file) || preg_match($cfg[flash_extension], $wr_file) || preg_match($cfg[movie_extension], $wr_file))) {
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;$file[$i]["file_href".$k] = "./?doc=$cfg[bbs_dir]/gbdownload.php&$qstr&wr_id=$row[wr_id]&index=$k";
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;$file[$i]["download".$k] = $row["wr_file".$k."_download"];
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;$file[$i]["size".$k] = get_filesize("./data/file/$bo_table/$wr_file");
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;$file[$i]["source".$k] = $row["wr_file".$k."_source"];
 &nbsp; &nbsp; &nbsp; &nbsp;} &nbsp; &nbsp; &nbsp; &nbsp;
 &nbsp; &nbsp;}
 &nbsp; &nbsp; &nbsp; &nbsp;if (@preg_match($cfg[image_extension], $row["wr_file".$k])) {
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;$list[$i]["file_image".$k] = "./data/file/$bo_table/" . $row["wr_file".$k];
 &nbsp; &nbsp; &nbsp; &nbsp;}
 &nbsp; &nbsp;}
수정 끝--------------------------------------------------------------------------------------

그리고 gblist.skin.php 파일에 아래소스 추가하면 게시판 리스트에서 바로 다운로드가 가능합니다..^^
bbs/skin/board/gblist.skin.php

<?if ($file[$i][source1]) {?><a href='<?=$file[$i][file_href1]?>'> 파일1 : <?=$file[$i][source1]?> <?=$file[$i][size1]?></a> 다운로드 : <?=$file[$i][download1]?><?}?>
<?if ($file[$i][source2]) {?><a href='<?=$file[$i][file_href2]?>'> 파일2 : <?=$file[$i][source2]?> <?=$file[$i][size2]?></a> 다운로드 : <?=$file[$i][download2]?><?}?>
추천
4
  • 복사

댓글 전체

gbdownload.php파일의 아래 부분을 주석 처리하고 해보세요..^^

// 다른곳에서 링크 거는것을 방지하기 위한 코드
//if ("$bo_table|$wr_id" != $HTTP_SESSION_VARS[ss_view]) { alert("값을 제대로 넘겨주세요."); }
Fatal error: Call to undefined function: get_filesize() in /home/eric/public_html/drive/bbs/gblist.php on line 191

안되네요 ^^;
$file[$i]["size".$k] = get_filesize("./data/file/$bo_table/$wr_file");  <-- 191번째줄입니다.

어떻게 된건지..
© SIRSOFT
현재 페이지 제일 처음으로