스크립트를 글로 작성시 403 / 501 에러 정보
스크립트를 글로 작성시 403 / 501 에러
본문
function clickHandler(e) {
// ignore non-left-mouse-clicks and clicks modified with ctrl / command, shift, or alt.
// See: http://jacklmoore.com/notes/click-events/
if (!(e.which > 1 || e.shiftKey || e.altKey || e.metaKey)) {
e.preventDefault();
launch(this);
}
}
소스 메모를위해 위와같은 스크립트를 글쓰기에 작성시 글이 작성되지 않고 에러페이지를 띄우는데요..
원래그런건가요? ㅜ_ㅜ
Method Not Implemented
GET to /bbs/bbs/write_update.php not supported.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
// ignore non-left-mouse-clicks and clicks modified with ctrl / command, shift, or alt.
// See: http://jacklmoore.com/notes/click-events/
if (!(e.which > 1 || e.shiftKey || e.altKey || e.metaKey)) {
e.preventDefault();
launch(this);
}
}
소스 메모를위해 위와같은 스크립트를 글쓰기에 작성시 글이 작성되지 않고 에러페이지를 띄우는데요..
원래그런건가요? ㅜ_ㅜ
Method Not Implemented
GET to /bbs/bbs/write_update.php not supported.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
댓글 전체

여기 게시판은 작성이 되네요~ 저렇게 똑같이 적으면 안되요..ㅜ_ㅜ

자문자답이 되었네요~ 호스팅에 문의한 결과 서버 보안상 문제라고 하네요~ 해결했습니다 ^^