묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
회원가입시나 수정시 닉네임/ID /E-mail 은 중복체크를 하자나요 . 이름도 가능할까요?
2005.06.25 12:02
회원가입시나 수정시 닉네임/ID /E-mail 은 중복체크를 하자나요 . 이름도 가능할까요?
$lang->msg_exists_nick_name = \
댓글 10
-
조민
2005.06.25 12:12
-
꼭대
2005.06.25 12:14
아 카테고리가.. 갤러리 미리보기 위에 쿠슨 카테고리 같은거나오자나요 그거 추가어떻게하는지.. 권한바꿀게요 -
조민
2005.06.25 12:16
꼭대님//
제로보드관리자>본인이 수정할 게시판설정 부분에 보면 카테고리 항목이 있습니다..
체크를 해주면 출력이 되겠죠... -
꼭대
2005.06.25 12:19
아 카테고리는있네요.. 그리고 그림에 마우스대면 뜨는 곳에 그림 크기조정하는방법좀.. 어느수정해야돼는지.. 파일이 워낙많아서 -
조민
2005.06.25 12:21
꼭대님//
그 갤러리 스킨은 제로보드의 기본제공되는 스킨이 아니라..
스킨제작자가 만든 스킨입니다..
소스없이는 해답을 얻기 힘들겠죠... -
꼭대
2005.06.25 12:23
아..
그 소스가..
<? /////////////////////////////////////////////////////////////////////////
/*
목록을 출력하는 부분입니다.
목록은 여러개이기 때문에 이 파일을 계속 읽어서 출력합니다.
순환이 되도록 잘 작성하셔야 합니다.
아래는 HTML 안에 그대로 사용해주시면 순환을 하면서 출력을 합니다.
<?=$number?> : 가상번호. 즉 순서대로 나오는 번호
* <?=$data[no]?> : 절대번호, 절대 바뀌지 않는 번호..
* <?=$loop_number?> : 현재 선택되어 있는 글이라도 번호로 나오게
<?=$name?> : 메일이 링크되어 있는 이름 * 원래 그대로 <?=$data[name]?>
<?=$email?> : 메일.. 거의 직접 쓸일은 없음;;
<?=$subject?> : 링크가 되어 있는 제목 * 원래 그대로 <?=$data[suject]?>
<?=$memo?> : 내용 부분
<?=$hit?> : 조회수
<?=$vote?> : 추천수
<?=$ip?> : 아피주소
<?=$comment_num?> : 간단한 답글 수 [ ] 가 둘러싸여 있는것;; <?=$data[comment_num]?> 은 숫자만;;
<?=$reg_date?> : 글쓴 날자
<?=$category_name?> : 카테고리 이름
<?=$face_image?> : 현재 회원상태의 아이콘;;
<?=$insert?> : 답글일경우 한칸씩 들어가는 깊이를 출력합니다.
<?=$icon?> : 현재 글의 상태에 따라서 아이콘을 출력합니다.
바구니와 카테고리의 경우 사용하지 않는 수가 있으므로 숨겨놓을때 쓰는 변수;;
<?=$hide_cart_start?> 내용 <?=$hide_cart_end?> : start 와 end 사이에는 사라짐;; 바구니
<?=$hide_category_start?> 내용 <?=$hide_category_end?> : Start와 end 사이에는 사라짐;; 바구니
참고: old_head.gif : 원본글이면서 12시간이 넘은 글의 아이콘
new_head.gif : 12시간에 적히 모든 글. 원본/답글 상관없이
reply_head.gif : 12시간이 지난 답글의 아이콘
reply_new_head.gif : 12시간이 지나지 않은 답글의 아이콘;;
notice_head.gif : 공지사항일때 아이콘
secret_head.gif : 비밀글을때 나타나는 아이콘
arrow.gif : 현재 리스트에서 선택되어 있는 글 앞에 붙는 아이콘
*/
///////////////////////////////////////////////////////////////////////// ?>
<!-- 목록 부분 시작 -->
<?
$max = 9; //이건 제목의 길이를 제안.. 그뒤는 ..... 이걸로 나타납니다!!
$data[subject] = stripslashes($data[subject]);
$count = strlen($data[subject]);
if($count >= $max) {
for ($pos=$max;$pos>0 && ord($new[subject][$pos-1])>=127;$pos--);
if (($max-$pos)%2 == 0)
$subject = substr($data[subject], 0, $max) . "..";
else
$subject = substr($data[subject], 0, $max+1) . "..";
}
else {
$subject = "$data[subject]";
}
$subject ="<a onfocus=blur() href='".$view_file."?$href$sort&no=$data[no]'>$subject</a>"; ?>
<?
if($setup[only_board]) {
$popup_text=str_replace("\r\n","<br>",$data[memo]);
}
else {
$popup_text=str_replace("<","<",$data[memo]);
$popup_text=str_replace(">",">",$popup_text);
$popup_text=str_replace("\r","",$popup_text);
$popup_text=str_replace("\n","",$popup_text);
}
$popup_text=str_replace("'","",$popup_text);
if($image_loop==0) {
$popup = "viewon('$data[subject]','$popup_text', 1);";
} elseif($image_loop==$max_show_image-1) {
$popup = "viewon('$data[subject]','$popup_text', 2);";
} else $popup = "viewon('$data[subject]','$popup_text', 0);";
//썸네일과 이미지가 있을경우
if($file_name2&&$file_name1) {
$size_large=GetImageSize($data[file_name1]);
$size=GetImageSize($data[file_name2]);
if($size[0] == 0 ) $size[0]=1;
if($size[1] == 0 ) $size[1]=1;
if($size[0]>$size[1]) { $per=$size_factor / $size[0]; }
else { $per=$size_factor / $size[1]; }
$x_size=80;
$y_size=80;
$win_width = $size_large[0]+15;
$win_height = $size_large[1]+30;
$img_src=$data[file_name2];
$target="../../".$data[file_name1];
$view_img="<a
href='#'
onclick=\"new_win=window.open('$dir/view_img.php?file=$target','img_win','left=0,top=0,width=1, height=1, resizable=yes, scrollbar=no,status=no'); new_win.resizeTo($win_width,$win_height); new_win.focus()\"
onMouseOver=\"$popup return true;\"
onMouseOut=\"viewoff(); return true;\"
onFocus=\"this.blur();\"
>";
}
//이미지만 있을경우
else if($file_name1&&file_exists($data[file_name1])) {
$size=GetImageSize($data[file_name1]);
if($size[0] == 0 ) $size[0]=1;
if($size[1] == 0 ) $size[1]=1;
if($size[0]>$size[1]) { $per=$size_factor / $size[0]; }
else { $per=$size_factor / $size[1]; }
$x_size=80;
$y_size=80;
$img_src=$data[file_name1];
$win_width = $size[0]+15;
$win_height = $size[1]+30;
$target="../../".$data[file_name1];
$view_img="<a
href='#'
onclick=\"new_win=window.open('$dir/view_img.php?file=$target','img_win','left=0,top=0,width=1, height=1, resizable=yes, scrollbar=no,status=no'); new_win.resizeTo($win_width,$win_height); new_win.focus()\"
onMouseOver=\"$popup return true;\"
onMouseOut=\"viewoff(); return true;\"
onFocus=\"this.blur();\"
>";
}
//썸네일만 있을경우
else if($file_name2) {
$size=GetImageSize($data[file_name2]);
if($size[0] == 0 ) $size[0]=1;
if($size[1] == 0 ) $size[1]=1;
if($size[0]>$size[1]) { $per=$size_factor / $size[0]; }
else { $per=$size_factor / $size[1]; }
$x_size=80;
$y_size=80;
$img_src=$data[file_name2];
$win_width = $size[0]+15;
$win_height = $size[1]+30;
$target="";
$view_img="<a
href='#'
onclick=\"new_win=window.open('$dir/view_img.php?file=$target','img_win','left=0,top=0,width=1, height=1, resizable=yes, scrollbar=no,status=no'); new_win.resizeTo($win_width,$win_height); new_win.focus()\"
onMouseOver=\"$popup return true;\"
onMouseOut=\"viewoff(); return true;\"
onFocus=\"this.blur();\"
>";
}
//링크 이미지만 있을경우
else if($data[sitelink1]){
$size=GetImageSize($data[sitelink1]);
if($size[0] == 0 ) $size[0]=1;
if($size[1] == 0 ) $size[1]=1;
if($size[0]>$size[1]) { $per=$size_factor / $size[0]; }
else { $per=$size_factor / $size[1]; }
$x_size=80;
$y_size=80;
$win_width = $size[0]+15;
$win_height = $size[1]+30;
$img_src=$data[sitelink1];
$target=$data[sitelink1];
$view_img="<a
href='#'
onclick=\"new_win=window.open('$dir/view_img.php?file=$target','img_win','left=0,top=0,width=1, height=1, resizable=yes, scrollbar=no,status=no'); new_win.resizeTo($win_width,$win_height); new_win.focus()\"
onMouseOver=\"$popup return true;\"
onMouseOut=\"viewoff(); return true;\"
onFocus=\"this.blur();\"
>";
}
//아무 그림이 없을경우
else {
$size[0]=$size[1]=0;
$x_size=80;
$y_size=80;
$img_src=$dir."/image/noimg.gif";
$view_img="<a
href='#'
onclick=\"new_win=window.open('$dir/view_img.php?file=$target','img_win','left=0,top=0,width=1, height=1, resizable=yes, scrollbar=no,status=no'); new_win.resizeTo($win_width,$win_height); new_win.focus()\"
onMouseOver=\"$popup return true;\"
onMouseOut=\"viewoff(); return true;\"
onFocus=\"this.blur();\"
>";
}
?>
<td>
<table border=0 cellspacing=0 cellpadding=3 align=center style="border:#E6E6E6 1px solid" onMouseOver=this.style.backgroundColor='#F8F8F8' onMouseOut=this.style.backgroundColor=''>
<tr width=<?echo (100 / $max_show_image);?>% valign=top>
<td align=center width=80 height=80><?=$view_img?><img src=<?=$img_src?> width=<?=$x_size?> height=<?=$y_size?> border=1 style=border-color:#E6E6E6 <? echo "onMouseOver=\"chgImg( '".$data[sitelink1].$data[file_name1]."','".ereg_replace("(\r\n|\n|\r)", "<br>", strip_tags($data[sitelink1].$data[file_name1]) )."' );\"" ?>></td>
</tr>
<tr>
<td height=23><?=$hide_cart_start?><input type=checkbox name=cart value="<?=$data[no]?>"><?=$hide_cart_end?><?=$insert?><?=$icon?><?=$subject?><span style="font-size:7pt;"><font face="Verdana" color="9D9D9D"><?=$comment_num?></font></span></td>
</tr>
</table>
</td>
<?
$image_loop++;
if($image
내용중에 잇을겁니다.. -
조민
2005.06.25 12:28
윗소스에서
$win_width = $size[0]+15;
$win_height = $size[1]+30;
이런 부분의 수치를 줄여보세요... -
꼭대
2005.06.25 12:34
$win_width = $size[1]+15;
$win_height = $size[1]+30;
로바꿧는데 미리보기 창은 줄어든건가?? 그런거같기도한대
오류 뜨네요
Parse error: parse error, unexpected '<' in /home/kkokdae/html/bbs/skin/dognara_gallery/list_main.php on line 35 -
조민
2005.06.25 12:37
소스를 원위치 하시고....
setup.php파일도 출력해보세요.. -
꼭대
2005.06.25 12:47
아 크기가 안줄어드네 미리보기 ;;
그리고 카테고리 추가는 게시판 설정>카테고리 설정 부분에서 추가 하는것이 아닌가요?