묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
회원가입시나 수정시 닉네임/ID /E-mail 은 중복체크를 하자나요 . 이름도 가능할까요?
2005.07.30 23:54
회원가입시나 수정시 닉네임/ID /E-mail 은 중복체크를 하자나요 . 이름도 가능할까요?
$lang->msg_exists_nick_name = \
댓글 2
-
조민
2005.07.31 00:11
-
조민
2005.07.31 00:18
첨부파일안에 있는 파일과 수정될 스킨파일과 비교하면서 수정하시길 바랍니다.
스킨은 거의 비슷한 부분을 가지고 있습니다.
한쪽에 없는 변수를 눈여겨보면 되겠죠...
제로보드의 comment_ok.php 파일에서,
100번째 줄
// 코멘트 갯수를 구해서 정리
$total=mysql_fetch_array(mysql_query("select count(*) from $t_comment"."_$id where parent='$no'"));
mysql_query("update $t_board"."_$id set total_comment='$total[0]' where no='$no'") or error(mysql_error());
이런 코드 밑에
// 3개월 이후의 글엔 코멘트 달아도 점수 가산 하지 않기 수정코드
$o_reg_date=mysql_fetch_array(mysql_query("select reg_date from $t_board"."_$id where no = '$no'",$connect));
if($reg_date - $o_reg_date[0] < 7776000) {
이런 식으로 추가 했습니다.
그리고
// 회원일 경우 해당 해원의 점수 주기
@mysql_query("update $member_table set point2=point2+1 where no='$member[no]'",$connect) or error(mysql_error());
}
----------------------------------------------------------------------------------
*윗주소 첨부파일에 있는 write_ok.php파일과 본인의 제로보드 폴더안에 있는 write_ok.php 파
일과 비교를 해서 추가또는 수정해야 합니다.
*윗주소 첨부파일에 있는 write.php파일소스주에서
<td><font class=list_eng>비용(포인트)</font></td>
<td><input type=text name=point value="<?=$data[point]?>" <?=size(62)?> maxlength=200 class=input style=width:99%></td>
이부분을 본인이 사용할 스킨파일 wire.php파일에 추가해줍니다.
* 윗주소 첨부파일에 있는 view.php파일은 본인이 수정할 게시판 스킨파일 view.php 파일과
비교를 해서 추가해줘야 합니다.