갤러리스킨 문의드립니다.

갤러리스킨 문의드립니다.

QA

갤러리스킨 문의드립니다.

본문

갤러리 스킨 문의드립니다.

균이님이 공개해주신 스킨인데요 그누4에서 잘쓰다가 그누 5로 오면서 이걸 써야하는데요 제가 워낙 초보라 문의드립니다.

아래처럼 양쪽화살표와 하단썸네일이 생성이 안됩니다. 경로문제인듯한데 어디를 수정해야할지 몰라서 문의드립니다.

도움부탁드립니다.

 

view.skin.php 소스는 아래와같습니다.

9f5a8c89dd21a42539bff3f69803f2be_1418800550_321.jpg 

<?

// 필수화일
// extent /resize_image.php -- 리사이징 및 썸네일 생성
// skin 폴더/jquery-ui.min.js -- 이미지 변환 효과
///---------------------------------------------------------
$imgPath="$g4[path]/data/file/$bo_table";
$view_width=800;  $view_height=450; // 보여질 큰 이미지 가로, 세로

//$resizex=800;  $resizey=450; //원본 큰 이미지 리사이징 가로,세로(리사이징 하지않으면 주석처리)

$thumbx=60;  $thumby=45; //썸네일 가로, 세로
$thumbViewNum=6; //보여질 리스트용 썸네일 갯수

$thumb_div_width=($thumbViewNum * ($thumbx+9))."px";;
$thumbNum=$view[file][count];
?>

<style type='text/css'>
.thumb{padding:2px; border:1px solid #ccc; cursor:pointer;}
.pre_next{font:bold 40pt 굴림;color:#ccc; cursor:pointer;}
.preBtnOver{font:bold 40pt 굴림;color:#FF854A; cursor:pointer;}

#orgdiv{ width:<?=$view_width?>px;  height:<?=$view_height?>px; overflow:hidden; z-index:10;
text-align:center;  cursor:pointer; background:#efefef; position:relative;}

.thumbpre_next{font:bold 20pt 굴림;color:#0067CE; cursor:pointer;}
.thumbBtnOver{font:bold 20pt 굴림;color:#FF854A; cursor:pointer;}

#img_td{border:1px solid #cdcdcd; background:#efefef;}
#btn_td, #thum_td{border:1px solid #cdcdcd; padding:5px; background:#efefef;}
#btn_td a:link, a:hover, a:visited{color:#004080}
</style>

<table width="100%" align="center" cellpadding="0" cellspacing="7" border='0'>
<tr>
<td align='center' width="100%" height='<?=($view_height+30)?>'  id='img_td'><!-- 큰 이미지-->

<?if($view[file][count]){?>
<table  align="center" cellpadding="0" cellspacing="0" border="0" width='100%' height='100%'>
<tr><td width='15' class='pre_next' onmousedown="pre_view(1)" onmouseover="this.className='preBtnOver';" onmouseout="this.className='pre_next';">《</td>

<td align="center"><div  id="orgdiv"><img  id="orgmg" onclick="pop_view(this)"></div></td>

<td width='15' class='pre_next' onmousedown="pre_view(2)" onmouseover="this.className='preBtnOver';" onmouseout="this.className='pre_next';">》</td>
</tr></table>

<?}else echo "<div style='color:#666666'>< 등록된 이미지가 없습니다 ></div>";?>
</td></tr>

<tr>
<td align="center" id='thum_td'><!--썸네일-->
<table align="center" cellpadding="0" cellspacing="1" border="0">
<tr>
<?if($thumbNum>$thumbViewNum){?>
<td width='40' class='thumbpre_next' onmousedown="thumbpre_view(1)" onmouseover="this.className='thumbBtnOver';" onmouseout="this.className='thumbpre_next';" align='center'>〈 </td>
<?}?>
<td align='center'>
<?if($thumbNum>$thumbViewNum){?>
<div style='position:relative;overflow:hidden;width:<?=$thumb_div_width?>; height:<?=($thumby+10)?>px;' id='thumDivk'>
  <div style='position:absolute;top:0; left:0; text-align:center;' id='thumDivk2'>
<?}?>

<table align="center" cellpadding="0" cellspacing="3" border="0"><tr>
<? $h=-1;
for($i=0;$i<$view[file][count]; $i++){
 if(!$view[file][$i][view]){$thumbNum--;  continue; }

    $thum_img="$imgPath/thumbs/{$view[wr_id]}_{$i}.jpg";
 $h++;

//큰 이미지 리사이즈
   if($resizex && $resizey &&  ($view[file][$i][image_width]>$resizex || $view[file][$i][image_height]>$resizey) ){  
   $ret_wh= image_resizetg($view[file][$i][file], $resizex, $resizey, $bo_table, $view[wr_id], $i);
      if($ret_wh[0] && $ret_wh[1]){
      $view[file][$h][image_width]=$ret_wh[0]; $view[file][$h][image_height]=$ret_wh[1];
       }
    }
 //썸네일 만들기
 if(!file_exists($thum_img))
  tg_thumb($view[file][$i][file],$thumbx, $thumby, $bo_table, $view[wr_id], $i );

?>
<td class='thumb'  align='center' onmouseover="over_cell(<?=$h?>, this)" onmouseout="out_cell(<?=$h?>,this)" onmousedown="view_image(<?=$h?>)"  id="thumTD<?=$h?>"><img src="<?=$thum_img?>" ></td>
<?}?>
</tr></table>

<?if($thumbNum>$thumbViewNum){?>
  </div></div>
<?}?>

</td>
<?if($thumbNum>$thumbViewNum){?>
<td width='40' class='thumbpre_next' onmousedown="thumbpre_view(2)" onmouseover="this.className='thumbBtnOver';" onmouseout="this.className='thumbpre_next';" align='center'>  〉 </td>
<?}?>

</tr></table>

</td></tr>
</table>
<script src="<?=$board_skin_path?>/jquery-ui.min.js" type="text/javascript"></script>
<script type="text/javascript">
userAgent = navigator.userAgent.toLowerCase();
chrom= /chrom/.test(userAgent);

imgSize=new Array();
<? $data=''; $deli=''; $h=-1;
 for($k=0; $k<$view[file][count]; $k++){  if(!$view[file][$k][view]) continue;
  $data.=$deli.$view[file][$k][file]; $deli="|"; $h++;
      echo "imgSize[$h]=\"{$view[file][$k][image_width]}|{$view[file][$k][image_height]}\";";
 }
?>

Skin_Path="<?=$board_skin_path?>";
viewSize=<?=$view_width?>;
viewSizeH=<?=$view_height?>;

data="<?=$data?>";
imgPath="<?=$imgPath?>";
temp=data.split("|");
var imgObj= document.getElementById('orgmg');
var current=0;
var objk;
var thumbViewNum=<?=$thumbViewNum?>;

var cNum=0;
var page= Math.ceil(temp.length/thumbViewNum)
var eek=(<?=$thumbx?>*1+9)*thumbViewNum;
var movek;
var preTD=0;

$(document).ready(function(){ if(!data) return;
preload_Image=new Array();
for(i=0; i<temp.length; i++){
preload_Image[i] = new Image();
preload_Image[i].src=imgPath+"/"+temp[i];

if(i==0){ imgObj.src=preload_Image[0].src
  orgww= imgSize[0].split('|');
  if(orgww[0]> viewSize) imgObj.width= viewSize;

}

}

 objk=document.getElementById("orgdiv");

 if(orgww[1]<parseInt(viewSizeH))  objk.style.height=orgww[1]+'px';
$('#thumTD0').css('backgroundColor','#FF0000');

});


function pop_view(obj){
 pww=screen.width; phh=screen.height-25;
 opt="width="+pww+",height="+phh;
 window.open( Skin_Path+"/image_view.html",'',opt);
}


var c_old=0;
function pre_view(vv){ if(!data) return;
  if(vv==1){ current--;    if(current<0) current=temp.length-1; }
  else{current++;   if(current>temp.length-1) current=0; }

 view_image(current);

     for(h=0; h<temp.length; h++) document.getElementById('thumTD'+h).style.backgroundColor='';

    document.getElementById('thumTD'+current).style.backgroundColor='#FF0000';
     ccp=Math.floor(current/thumbViewNum)
     if(ccp!=cNum){cNum=ccp;    cmovek=ccp*eek*-1; $("#thumDivk2").animate({left: cmovek+'px'}, 1000); }
     c_old=current;
}
var effectk=new Array( "fade","explode","explode");
var rnd;
var selectedEffect;
var Rnd=0;
var hhk;
function view_image(vv){
sizek=imgSize[vv].split('|');
current=vv;
///////////////////////////////
hhk= sizek[1]<=viewSizeH? sizek[1] : viewSizeH;
objk.style.height=hhk+'px';
objk.style.width=viewSize+"px";
    selectedEffect="fade";
    options = {}; ani_time=400;
$('#orgdiv').effect( selectedEffect, options, ani_time, callback );

}

function callback() {
imgObj.src=preload_Image[current].src;
sizek=imgSize[current].split('|');

objk.style.left='0px';

var Rd2=Math.round(Math.random()) %2;
 if(Rd2 ==0 || chrom) $('#orgdiv').fadeIn("slow");
     else $('#orgdiv').slideDown("slow");

 imgObj.width= sizek[0]> viewSize? viewSize: sizek[0];
}

function over_cell(num, obj){
 document.getElementById('thumTD'+current).style.backgroundColor='';
  document.getElementById('thumTD'+c_old).style.backgroundColor='';
   document.getElementById('thumTD'+preTD).style.backgroundColor='';
    obj.style.backgroundColor="#FF0000";
 c_old=preTD=num;
}

function out_cell(num, obj){
 if(current!=num) obj.style.background='';
 document.getElementById('thumTD'+current).style.backgroundColor='#FF0000';
}

function thumbpre_view(vv){
 if(vv==1){ cNum--; if(cNum<0) cNum=page-1; }
else{cNum++; if(cNum>page-1) cNum=0;  }
  movek=-1*cNum*eek;
  $("#thumDivk2").animate({left: movek+'px' }, 1000);
}
</script>

​ 

이 질문에 댓글 쓰기 :

답변 3

원본그대로 두고 맨위에 아래 두 줄 추가해보세요

 

$g4[path] ="..";

$board_skin_path= "../skin/board/".$board[bo_skin];

 

$imgPath="$g4[path]/data/file/$bo_table"; 

이거때문이겠군요.

$imgPath=G5_PATH​."/data/file/$bo_table";

이렇게 하면 될듯합니다.

먼지손미 답변감사합니다.
말씀해주신대로 수정했더니 Parse error: syntax error, unexpected T_VARIABLE in 에러가 나네요

그래서 그냥 $imgPath="http://www.naver.com/data/file/$bo_table";​ 이런식으로도 해보았는데 안되네요 ㅠㅠ

위에 질문하신 소스의 7라인에서 에러가 나는건가요? 저건 문법오류인건데.. 왠지 common을 제대로 거치지 않았다던지 config.php를 거치지 않아서 G5_PATH가 상수로 선언이 안되서 나온 에러같은 느낌이...

게시판스킨의 view.skin.php인게 맞는거죠? +_+;

$imgPath=constant('G5_PATH')​."/data/file/$bo_table";​ 

이걸로 바꾸면 에러는 안나올듯하지만서도.. 좀 어리둥절 하네요 ^^;

저거 전에

echo constant('G5_PATH'); exit; 

이렇게 출력한번 해보시고 경로가 제대로 출력되는지 확인부터 해보세요. (이건 확인만하고 지우셔야 합니다)

 

그냥 아예 절대경로를 넣어주는것도 방법이긴 하겠네요;

$imgPath="/home/userid/www/data/file/$bo_table";​

/home/userid/www 는 그누보드가 설치된 절대경로를 넣어주심 됩니다;

답변을 작성하시기 전에 로그인 해주세요.
전체 48
QA 내용 검색

회원로그인

(주)에스아이알소프트 / 대표:홍석명 / (06211) 서울특별시 강남구 역삼동 707-34 한신인터밸리24 서관 1402호 / E-Mail: admin@sir.kr
사업자등록번호: 217-81-36347 / 통신판매업신고번호:2014-서울강남-02098호 / 개인정보보호책임자:김민섭(minsup@sir.kr)
© SIRSOFT