|
|
|
10-12-03
|
조회 1,173
|
|
|
|
10-12-03
|
조회 962
|
|
|
|
10-12-03
|
조회 823
|
|
|
|
10-12-03
|
조회 2,476
|
|
|
|
10-12-03
|
조회 1,923
|
|
|
|
10-12-03
|
조회 1,688
|
|
|
|
10-12-03
|
조회 1,075
|
|
|
|
10-12-03
|
조회 1,007
|
|
|
|
10-12-03
|
조회 1,059
|
|
|
|
10-12-02
|
조회 1,060
|
|
|
|
10-12-02
|
조회 856
|
|
|
|
10-12-02
|
조회 869
|
|
|
|
10-12-02
|
조회 870
|
|
|
|
10-12-02
|
조회 5,191
|
|
|
|
10-12-02
|
조회 634
|
|
|
|
10-12-02
|
조회 1,122
|
|
|
|
10-12-02
|
조회 1,614
|
|
|
|
10-12-02
|
조회 845
|
|
|
|
10-12-02
|
조회 823
|
|
|
|
10-12-02
|
조회 998
|
댓글 5개
1-1. bbs/write_update.php에서 아래 내용 삭제 또는 주석처리
// 자동등록방지 검사
//include_once ("./norobot_check.inc.php");
if (!$is_member) {
if ($w=='' || $w=='r') {
$key = get_session("captcha_keystring");
if (!($key && $key == $_POST[wr_key])) {
session_unregister("captcha_keystring");
alert("정상적인 접근이 아닌것 같습니다.");
}
}
}
1-2. skin/board/스킨/write.skin.php에서 아래 내용 삭제 또는 주석처리
<? if ($is_guest) { ?>
...
<? } ?>
1-3. skin/board/스킨/write.skin.php에서 아래 내용 삭제 또는 주석처리
if (typeof(f.wr_key) != 'undefined') {
if (hex_md5(f.wr_key.value) != md5_norobot_key) {
alert('자동등록방지용 글자가 제대로 입력되지 않았습니다.');
f.wr_key.select();
f.wr_key.focus();
return false;
}
}
2. 코멘트에서 자동등록방지(CSRT) 사용하지 않기
2-1. bbs/write_comment_update.php 에서 아래내용 삭제 또는 주석
// 자동등록방지 검사
//include_once ("./norobot_check.inc.php");
if (!$is_member) {
if ($w=='' || $w=='c') {
$key = get_session("captcha_keystring");
session_unregister("captcha_keystring");
if (!($key && $key == $_POST[wr_key])) {
alert("정상적인 접근이 아닌것 같습니다.");
}
}
}
2-2. skin/board/스킨/view_comment.skin.php 에서 아래 내용 주석 또는 삭제
<? if ($is_guest) { ?>
<img id='kcaptcha_image' border='0' width=120 height=60 onclick="imageClick();" style="cursor:pointer;" title="글자가 잘안보이는 경우 클릭하시면 새로운 글자가 나옵니다.">
<input title="왼쪽의 글자를 입력하세요." type="input" name="wr_key" size="10" class="ed" itemname="자동등록방지" required />
<?}?>
제가 필요했던 것입니다..^^
참고 많이 됐습니다.