묻고답하기
검색창에 검색어 입력하면 error_return_url= 라고 뜨는거 없애는 방법 ㅠㅠ
2014.04.12 06:34
error_return_url= %2Findexa.php&act=&mid=free&vid=&
가붙는데 이부분을 없에고 깔끔하게 가고싶습니다.
아시는분 답변좀 부탁드리겠습니다. ^^
form에 no-error-return-url="true" 속성을 추가하면 된다는데.. 어떻게 해야할지.. 잘 모르겠습니다.. 자세히좀 알려주실분..
<form no-error-return-url="true">
그리고..
XE 1.5부터 모든 form에는 hidden input에 error_return_url이 자동 추가됩니다. 여러모로 좋은 기능이긴 하지만 단점도 있습니다. 대표적인 것이 form을 get으로 전송하여 게시글을 검색할 때입니다. get으로 전송하게 되면 전송할 때마다 error_return_url이 추가되기 때문에 url이 256개의 문자보다 길어져서 서버가 에러를 뿜어냅니다. 이를 방지하려면 form node에 다음과 같이 no-error-return-url 속성을 추가하여 주시면 됩니다.
1 2 | < form action = "./" method = "get" no-error-return-url = "true" > </ form >
위에 방식과 아래 방식이 같은 건가요? |
댓글 31
-
LI-NA
2014.04.12 14:14
-
루팡쿠팡
2014.04.14 13:23
<form action="{postUrl()}" method="post">
<form action="{getUrl()}" method="post">
<form action="{postUrl()}" method="post" no-error-return-url="true">
<form action="{getUrl()}" method="post" no-error-return-url="true">
<form action="{getUrl()}" method="get" no-error-return-url="true">
위 5가지 경우의 수 대로 전부다 해보았습니다만.. 다 실패했습니다..
통합검색창에 "검색" 이라고 치면 주소뒤에
/?error_return_url=%2F&vid=&mid=home&act=IS&is_keyword=검색&x=0&y=0
이런식으로 뜨고
다시 그상태에서 통합검색창에 "검색" 이라고 검색하면 주소뒤에
/?error_return_url=%2F%3Ferror_return_url%3D%252F%26vid%3D%26mid%3Dhome%26act%3DIS%26is_keyword%3D%25EA%25B2%2580%25EC%2583%2589%26x%3D18%26y%3D12&vid=&mid=home&act=IS&is_keyword=검색&x=0&y=0
이런식으로 주소가 무한대로 길어집니다. 그래서 최종적으로는 나중에 검색을 할수없게됩니다..
파일은 www - layouts - sketchbook5 - layhout.html 를 수정해줬습니다. 도움 부탁드립니다..
@KrteamENT
-
닉이
2014.04.14 14:10
스케치북 레이아웃에서
<!--// 검색 --> <div id="site_srch" class="srch"> <form action="{getUrl()}" method="get" no-error-return-url="true" > <input type="hidden" name="vid" value="{$vid}" /> <input type="hidden" name="mid" value="{$mid}" /> <input type="hidden" name="act" value="IS" /> <input type="text" name="is_keyword" value="{$is_keyword}" title="{$lang->cmd_search}" class="itx css3pie" accesskey="S" /> <input type="image" src="./img/bs_{$layout_info->colorset}.png" alt="Search" class="is" /> </form> </div>
이렇게 변경해주세요. 1.7.3.8, 1.7.4.1에서 잘되네요.
-
루팡쿠팡
2014.04.14 15:58
전 1.7.3.7 버전입니다..
여전히 안되네요..
-
루팡쿠팡
2014.04.15 09:45
해결방법 아시는분 안계신가요 ㅠㅠ
-
애니즌
2014.04.15 10:11
단순히 안보이게 하고 싶으면 서치 폼을 수정하세요.
<
form
action
=
"./"
method
=
"get"
>
이것을
<
form
action
=
"./"
method
=
"post"
>
로 변경해보세요.
get 방식에서 post 방식으로 변경하였습니다.
값은 정상적으로 넘어가나 주소에 변수가 붙지 않습니다.
변경해서 테스트해본 결과 딱히 문제는 없는 듯 합니다.(사실 문제가 있을 것도 없지만..)]
단지 f5를 누르면 확인창이 뜬다는 불편이 생기는 정도..?
-
루팡쿠팡
2014.04.15 13:35
이것 또한 안되네요..
<!--// 검색 --> <div id="site_srch" class="srch"> <form action="{getUrl()}" method="get"> <input type="hidden" name="vid" value="{$vid}" /> <input type="hidden" name="mid" value="{$mid}" /> <input type="hidden" name="act" value="IS" /> <input type="text" name="is_keyword" value="{$is_keyword}" title="{$lang->cmd_search}" class="itx css3pie" accesskey="S" /> <input type="image" src="./img/bs_{$layout_info->colorset}.png" alt="Search" class="is" /> </form> </div> <!-- GNB -->
위를 아래와 같이 바꿔줬습니다.
<!--// 검색 --> <div id="site_srch" class="srch"> <form action="./" method="post"> <input type="hidden" name="vid" value="{$vid}" /> <input type="hidden" name="mid" value="{$mid}" /> <input type="hidden" name="act" value="IS" /> <input type="text" name="is_keyword" value="{$is_keyword}" title="{$lang->cmd_search}" class="itx css3pie" accesskey="S" /> <input type="image" src="./img/bs_{$layout_info->colorset}.png" alt="Search" class="is" /> </form> </div> <!-- GNB -->
그리고 이렇게도 바꿔봤구요.. 그래도 여전히 계속 오류가 뜨는군요..
?error_return_url=%2F&vid=&mid=home&act=IS&is_keyword=키워드&x=0&y=0
이런식으로..
<!--// 검색 --> <div id="site_srch" class="srch"> <form action="{getUrl()}" method="post"> <input type="hidden" name="vid" value="{$vid}" /> <input type="hidden" name="mid" value="{$mid}" /> <input type="hidden" name="act" value="IS" /> <input type="text" name="is_keyword" value="{$is_keyword}" title="{$lang->cmd_search}" class="itx css3pie" accesskey="S" /> <input type="image" src="./img/bs_{$layout_info->colorset}.png" alt="Search" class="is" /> </form> </div> <!-- GNB -->
-
애니즌
2014.04.15 13:38
method를 변경했는데 주소가 뜰 수가 없습니다.
아마 다른 쪽에서 따로 관여하는 부분이 있는 듯 합니다.
아니면 전혀 다른 곳을 수정하신 것일수도 있겠는데요?
실제 웹페이지에서 소스보기를 하셔서 해당 내용이 제대로 변경됐는 지 확인이 필요할 것 같습니다.
사실 실제 페이지를 보여주면 좀 더 자세히 볼 수 있겠지만요..
-
루팡쿠팡
2014.04.15 13:55
www - layouts - sketchbook5 - layhout.html 이거 고쳐주는거 아닌가요?
-
애니즌
2014.04.15 13:56
따로 레이아웃 설정상에서 편집을 하셨다면 거기서 수정해도 적용이 안됩니다.
-
루팡쿠팡
2014.04.15 16:07
따로 레이아웃 설정상에서 편집 한건 없습니다만... ㅠㅠ
-
애니즌
2014.04.15 17:08
실제 코드를 수정해보시고
웹페이지에서 소스보기를 하셔서
해당 코드가 바꼈는지 확인해보세요.
-
루팡쿠팡
2014.04.15 17:15
소스 보기 하면 대략 아래와 같이 될텐데요, 어디를 봐야 하지요? 애니즌님 알려주시면 대단히 감사드리겠습니다.
<!DOCTYPE html> <html lang="ko"> <head> <!-- META --> <meta charset="utf-8"> <meta name="Generator" content="XpressEngine"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <!-- TITLE --> <title>검색창에 검색어 입력하면 error_return_url= 라고 뜨는거 없애는 방법 ㅠㅠ - 묻고답하기 - XpressEngine</title> <!-- CSS --> <link rel="stylesheet" href="/common/css/xe.css?20140414032320" /> <link rel="stylesheet" href="/addons/tag_relation/skins/default/css/default.css?20140226113633" /> <link rel="stylesheet" href="/addons/oembed/jquery.oembed.css?20140226113633" /> <link rel="stylesheet" href="/common/js/plugins/ui/jquery-ui.css?20140226113634" /> <link rel="stylesheet" href="/modules/board/skins/default/board.default.css?20140402125915" /> <link rel="stylesheet" href="/modules/editor/skins/xpresseditor/css/default.css?20140226113634" /> <link rel="stylesheet" href="/layouts/xe_v3_sub/xe_v3_sub.css?20140301124329" /> <link rel="stylesheet" href="/modules/editor/styles/default/style.css?20140226113634" /> <link rel="stylesheet" href="/modules/editor/components/code_highlighter/syntaxhighlighter/styles/shCoreDefault.css?20140226113634" /> <!-- JS --> <!--[if lt IE 9]><script src="/common/js/jquery-1.x.js?20140226113634"></script> <![endif]--><!--[if gte IE 9]><!--><script src="/common/js/jquery.js?20140226113634"></script> <![endif]--><script src="/common/js/jquery.js?20140226113634"></script> <script src="/common/js/xe.js?20140228134832"></script> <script src="/common/js/x.js?20140226113634"></script> <script src="/common/js/common.js?20140228134832"></script> <script src="/common/js/js_app.js?20140226113634"></script> <script src="/common/js/xml_handler.js?20140226113634"></script> <script src="/common/js/xml_js_filter.js?20140226113634"></script> <script src="/modules/board/tpl/js/board.js?20140226113634"></script> <script src="/modules/editor/tpl/js/editor_common.js?20140226113634"></script> <script src="/modules/editor/skins/xpresseditor/js/Xpress_Editor.js?20140226113634"></script> <script src="/modules/editor/skins/xpresseditor/js/xe_interface.js?20140226113634"></script> <script src="/modules/editor/tpl/js/uploader.js?20140226113634"></script> <script src="/modules/editor/tpl/js/swfupload.js?20140226113634"></script> <script src="/modules/editor/components/code_highlighter/syntaxhighlighter/scripts/shCore.js"></script> <script src="/modules/editor/components/code_highlighter/syntaxhighlighter/scripts/shAutoloader.js"></script> <script src="/modules/ncenter/tpl/js/ncenter.js?1.5.7.20130820.js"></script> <!--[if lt IE 9]><script src="/common/js/html5.js"></script><![endif]--> <!-- RSS --> <!-- ICON --> <link rel="shortcut icon" href="./modules/admin/tpl/img/faviconSample.png" /><link rel="apple-touch-icon" href="./modules/admin/tpl/img/mobiconSample.png" /> <style> .board_list td.lastReply span, .board_list .author a .widgetTableA td .author { display: inline-block; overflow: hidden; text-overflow: ellipsis; width: 90px; } </style> <style> .xe_content { font-family:"Apple SD 산돌고딕 Neo","Apple SD Gothic Neo","맑은 고딕","나눔 고딕","굴림","Gulim","돋움","Dotum","sans-serif";font-size:13px; }</style> <link rel="canonical" href="http://www.xpressengine.com/qna/22682190" /> <meta property="keywords" content="xpressengine,xe,cms,open-source" /> <meta property="description" content="error_return_url= %2Findexa.php&act=&mid=free&vid=& 가붙는데 이부분을 없에고 깔끔하게 가고싶습니다. 아시는분 답변좀 부탁드리겠습니다. ^^ form에 no-error-return-url="true" 속성을 추가하면 된다는데.. 어떻게 해야할지.. 잘 모르겠습니다.. 자세히좀 알려주실분.. <form no-error-return-url="true"> 그리고.. XE 1.5부터 모든 form에는 hidden input에 error_return_url이 자동 추가..." /> <meta property="og:type" content="article" /> <meta property="og:url" content="http://www.xpressengine.com/qna/22682190" /> <meta property="og:site_name" content="XpressEngine" /> <meta property="og:title" content="검색창에 검색어 입력하면 error_return_url= 라고 뜨는거 없애는 방법 ㅠㅠ - 묻고답하기 - XpressEngine" /> <meta property="og:description" content="error_return_url= %2Findexa.php&act=&mid=free&vid=& 가붙는데 이부분을 없에고 깔끔하게 가고싶습니다. 아시는분 답변좀 부탁드리겠습니다. ^^ form에 no-error-return-url="true" 속성을 추가하면 된다는데.. 어떻게 해야할지.. 잘 모르겠습니다.. 자세히좀 알려주실분.. <form no-error-return-url="true"> 그리고.. XE 1.5부터 모든 form에는 hidden input에 error_return_url이 자동 추가..." /> <meta property="og:article:author" content="루팡쿠팡" /> <meta property="og:image" content="http://www.xpressengine.com/files/attach/site_image/site_image.png" /><script> //<![CDATA[ var current_url = "http://www.xpressengine.com/?mid=qna&document_srl=22682190"; var request_uri = "http://www.xpressengine.com/"; var current_mid = "qna"; var waiting_message = "서버에 요청 중입니다. 잠시만 기다려주세요."; var ssl_actions = new Array("dispMemberModifyPassword","dispMemberSignUpForm","dispMemberModifyInfo","dispMemberModifyEmailAddress","dispMemberGetTempPassword","dispMemberResendAuthMail","dispMemberLoginForm","dispMemberFindAccount","dispMemberLeave","procMemberLogin","procMemberModifyPassword","procMemberInsert","procMemberModifyInfo","procMemberFindAccount","procMemberModifyEmailAddress","procMemberUpdateAuthMail","procMemberResendAuthMail","procMemberLeave"); var default_url = "http://www.xpressengine.com"; xe.current_lang = "ko"; xe.cmd_find = "찾기"; xe.cmd_cancel = "취소"; xe.cmd_confirm = "확인"; xe.msg_no_root = "루트는 선택 할 수 없습니다."; xe.msg_no_shortcut = "바로가기는 선택 할 수 없습니다."; xe.msg_select_menu = "대상 메뉴 선택"; //]]> </script> </head> <body> <div class="xev3sub"> <p class="skipToContent"><a href="#content">메뉴 건너뛰기</a></p> <div class="header"> <h1><a href="/">XE : Xpress Engine</a></h1> <div class="account"> <a href="http://www.xpressengine.com/index.php?mid=qna&document_srl=22682190&act=dispMemberLogout" class="log">로그아웃</a> <a href="http://www.xpressengine.com/index.php?mid=qna&document_srl=22682190&act=dispMemberInfo">마이페이지</a> <a href="https://github.com/xpressengine" class="project" target="blank">XE github project</a> </div> <div class="gnb"> <ul> <li class="m1"><a href="/intro">XE 소개</a> <ul> <li class="s1"><a href="/intro">XE 소개</a></li><li class="s2"><a href="/aboutContest">XE 공모전 소개</a></li><li class="s3"><a href="/xehub">XE Hub</a></li><li class="s4"><a href="/authors">Authors</a></li><li class="s5"><a href="/notice">공지사항</a></li> </ul> </li><li class="m2"><a href="/manual">XE 가이드</a> <ul> <li class="s1"><a href="/manual">매뉴얼 다운로드</a></li> </ul> </li><li class="m3"><a href="/devblog">News</a> </li><li class="m4"><a href="/download">다운로드</a> <ul> <li class="s1"><a href="/?mid=download&category_srl=18322917&childs=18322923%2C18322925%2C18322927%2C18322929%2C18631347">프로그램</a></li><li class="s2"><a href="/?mid=download&category_srl=18322919&childs=18322943%2C18322950%2C18322952%2C18322954%2C18322977%2C18904838">스킨</a></li><li class="s3"><a href="/?mid=download&act=dispResourceInsertPackage">자료등록 신청</a></li> </ul> </li><li class="m5"><a href="/community" class="active">커뮤니티</a> <ul> <li class="s1"><a href="/forum">포럼</a></li><li class="s2"><a href="/faq">자주 묻는 질문</a></li><li class="s3"><a href="/qna" class="active">묻고답하기</a></li><li class="s4"><a href="/tip">XE 사용팁</a></li><li class="s5"><a href="/request">제작 의뢰</a></li><li class="s6"><a href="/agent">제작 지원</a></li><li class="s7"><a href="/homepage">홈페이지 자랑</a></li><li class="s8"><a href="/tiptech_ui">HTML/CSS/JS 팁</a></li><li class="s9"><a href="/tiptech_php">PHP 팁</a></li><li class="s10"><a href="/tiptech_server">서버운영 팁</a></li><li class="s11"><a href="/hosting">호스팅 홍보</a></li><li class="s12"><a href="/hosting_info">호스팅 정보공유</a></li> </ul> </li><li class="m6"><a href="/showCase">쇼케이스</a> </li> </ul> </div> <hr class="hr" /> <div class="visual"> <img src="/layouts/xe_v3_sub/title_img/community.jpg" alt="XE에 대한 생각! XE에 대한 공감! - XE를 사용하는 다른 사람들과 의견을 나눌 수 있는 곳입니다. 많은 의견 공유로 더 좋은 XE를 만들어 주세요." /> </div> <div class="path"> <a href="/" class="home"><span>Home</span></a> > <a href="/community">커뮤니티</a> > <a href="/qna">묻고답하기</a> </div> </div> <hr class="hr" /> <div class="body"> <div class="lnb"> <h2 ><a href="/community">커뮤니티</a></h2> <ul> <li class="x1"><a href="/forum">포럼</a> </li><li class="x2"><a href="/faq">자주 묻는 질문</a> </li><li class="x3"><a href="/qna" class="active">묻고답하기</a> </li><li class="x4"><a href="/tip">XE 사용팁</a> </li><li class="x5"><a href="/request">제작 의뢰</a> </li><li class="x6"><a href="/agent">제작 지원</a> </li><li class="x7"><a href="/homepage">홈페이지 자랑</a> </li><li class="x8"><a href="/tiptech_ui">HTML/CSS/JS 팁</a> </li><li class="x9"><a href="/tiptech_php">PHP 팁</a> </li><li class="x10"><a href="/tiptech_server">서버운영 팁</a> </li><li class="x11"><a href="/hosting">호스팅 홍보</a> </li><li class="x12"><a href="/hosting_info">호스팅 정보공유</a> </li> </ul> </div> <hr class="hr" /> <div class="content" id="content" > <div class="board"> <h2>묻고 답하기</h2> <div class="board_read"> <!-- READ HEADER --> <div class="read_header"> <h1> <a href="http://www.xpressengine.com/22682190">검색창에 검색어 입력하면 error_return_url= 라고 뜨는거 없애는 방법 ㅠㅠ</a> </h1> <p class="time"> 2014.04.12 06:34 </p> <p class="meta"> <a href="#popup_menu_area" class="member_21857146 author" onclick="return false">루팡쿠팡</a> <span class="sum"> <span class="read">조회 수:107</span> </span> </p> </div> <!-- /READ HEADER --> <!-- Extra Output --> <!-- /Extra Output --> <!-- READ BODY --> <div class="read_body"> <!--BeforeDocument(22682190,21857146)--><div class="document_22682190_21857146 xe_content"><p style="font-size:13px;color:rgb(51,51,51);font-family:'돋움', Dotum, Tahoma, Geneva, sans-serif;background-color:rgb(255,255,255);">error_return_url= %2Findexa.php&act=&mid=free&vid=&</p> <p style="font-size:13px;color:rgb(51,51,51);font-family:'돋움', Dotum, Tahoma, Geneva, sans-serif;background-color:rgb(255,255,255);">가붙는데 이부분을 없에고 깔끔하게 가고싶습니다.</p> <p style="font-size:13px;color:rgb(51,51,51);font-family:'돋움', Dotum, Tahoma, Geneva, sans-serif;background-color:rgb(255,255,255);"> <span style="font-size:12px;line-height:1.5;"> </span></p> <p style="font-size:13px;color:rgb(51,51,51);font-family:'돋움', Dotum, Tahoma, Geneva, sans-serif;background-color:rgb(255,255,255);">아시는분 답변좀 부탁드리겠습니다. ^^</p> <p style="font-size:13px;color:rgb(51,51,51);font-family:'돋움', Dotum, Tahoma, Geneva, sans-serif;background-color:rgb(255,255,255);"><br /></p> <p style="font-size:13px;color:rgb(51,51,51);font-family:'돋움', Dotum, Tahoma, Geneva, sans-serif;background-color:rgb(255,255,255);"><br /></p> <p style="font-size:13px;background-color:rgb(255,255,255);"><font color="#333333" face="돋움, Dotum, Tahoma, Geneva, sans-serif" size="2"><span style="line-height:19.5px;">form에 no-error-return-url="true" 속성을 추가하면 된다는데.. 어떻게 해야할지.. 잘 모르겠습니다.. 자세히좀 알려주실분..</span></font></p> <p style="font-size:13px;background-color:rgb(255,255,255);"><font color="#333333" face="돋움, Dotum, Tahoma, Geneva, sans-serif" size="2"><span style="line-height:19.5px;"><form no-error-return-url="true"></span></font></p> <p style="font-size:13px;background-color:rgb(255,255,255);"><font color="#333333" face="돋움, Dotum, Tahoma, Geneva, sans-serif" size="2"><span style="line-height:19.5px;"><br /></span></font></p> <p style="font-size:13px;background-color:rgb(255,255,255);"><font color="#333333" face="돋움, Dotum, Tahoma, Geneva, sans-serif" size="2"><span style="line-height:19.5px;"><br /></span></font></p> <p style="font-size:13px;background-color:rgb(255,255,255);"><font color="#333333" face="돋움, Dotum, Tahoma, Geneva, sans-serif" size="2"><span style="line-height:19.5px;"><br /></span></font></p> <p style="font-size:13px;background-color:rgb(255,255,255);"><font color="#333333" face="돋움, Dotum, Tahoma, Geneva, sans-serif" size="2"><span style="line-height:19.5px;"><br /></span></font></p> <p style="font-size:13px;background-color:rgb(255,255,255);"><font color="#333333" face="돋움, Dotum, Tahoma, Geneva, sans-serif" size="2"><span style="line-height:19.5px;"><br /></span></font></p> <p style="font-size:13px;background-color:rgb(255,255,255);"><font color="#333333" face="돋움, Dotum, Tahoma, Geneva, sans-serif" size="2"><span style="line-height:19.5px;"><br /></span></font></p> <p style="background-color:rgb(255,255,255);"><font color="#333333" face="돋움, Dotum, Tahoma, Geneva, sans-serif" size="2">그리고..</font></p> <p style="background-color:rgb(255,255,255);"><font color="#333333" face="돋움, Dotum, Tahoma, Geneva, sans-serif" size="2"><br /></font></p> <p style="color:rgb(51,51,51);font-family:'Apple SD 산돌고딕 Neo', 'Apple SD Gothic Neo', '돋움', Dotum, Tahoma, Geneva, sans-serif;font-size:13px;line-height:19.5px;background-color:rgb(255,255,255);"><font face="Apple SD 산돌고딕 Neo, Apple SD Gothic Neo, 돋움, Dotum, Tahoma, Geneva, sans-serif" size="2">XE 1.5부터 모든 form에는 hidden input에 error_return_url이 자동 추가됩니다. 여러모로 좋은 기능이긴 하지만 단점도 있습니다. 대표적인 것이 form을 get으로 전송하여 게시글을 검색할 때입니다. get으로 전송하게 되면 전송할 때마다 error_return_url이 추가되기 때문에 url이 256개의 문자보다 길어져서 서버가 에러를 뿜어냅니다. 이를 방지하려면 form node에</font> 다음과 같이 <font face="Apple SD 산돌고딕 Neo, Apple SD Gothic Neo, 돋움, Dotum, Tahoma, Geneva, sans-serif" size="2"><span style="line-height:19px;">no-error-return-url 속성을 추가하여 주시면 됩니다.</span></font></p> <div style="color:rgb(51,51,51);font-family:'Apple SD 산돌고딕 Neo', 'Apple SD Gothic Neo', '돋움', Dotum, Tahoma, Geneva, sans-serif;font-size:13px;line-height:19.5px;background-color:rgb(255,255,255);"><div class="syntaxhighlighter xml" style="width:730px;margin:1em 0px;font-size:1em;"><div class="toolbar" style="background-color:rgb(108,226,108);border:none;float:none;height:11px;line-height:1.1em;margin:0px;padding:0px;vertical-align:baseline;width:11px;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;font-size:10px;color:#FFFFFF;"><a href="http://www.xpressengine.com/tip/22617993#" class="toolbar_item command_help help" style="background-image:none;border:0px;float:none;height:auto;line-height:1.1em;margin:0px;padding:1px 0px 0px;text-align:center;vertical-align:baseline;width:auto;font-size:1em;text-decoration:none;color:#FFFFFF;">?</a></div><table border="0" cellpadding="0" cellspacing="0" style="width:730px;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;font-size:1em;background-image:none;border:0px;float:none;height:auto;line-height:1.1em;margin:0px;padding:0px;vertical-align:baseline;"><tbody style="background-image:none;border:0px;float:none;height:auto;line-height:1.1em;margin:0px;padding:0px;vertical-align:baseline;width:auto;font-size:1em;"><tr style="background-image:none;border:0px;float:none;height:auto;line-height:1.1em;margin:0px;padding:0px;vertical-align:baseline;width:auto;font-size:1em;"><td class="gutter" style="background-image:none;border:0px;float:none;height:auto;line-height:1.1em;margin:0px;padding:0px;vertical-align:baseline;width:auto;font-size:1em;color:rgb(175,175,175);"><div class="line number1 index0 alt2 highlighted" style="background-image:none;background-color:rgb(108,226,108);border-width:0px 3px 0px 0px;border-right-style:solid;border-right-color:rgb(108,226,108);float:none;height:auto;line-height:1.1em;margin:0px;padding:0px .5em 0px 1em;text-align:right;vertical-align:baseline;width:auto;font-size:1em;color:#FFFFFF;">1</div><div class="line number2 index1 alt1" style="background-image:none;border-width:0px 3px 0px 0px;border-right-style:solid;border-right-color:rgb(108,226,108);float:none;height:auto;line-height:1.1em;margin:0px;padding:0px .5em 0px 1em;text-align:right;vertical-align:baseline;width:auto;font-size:1em;">2</div></td><td class="code" style="width:700px;background-image:none;border:0px;float:none;height:auto;line-height:1.1em;margin:0px;padding:0px;vertical-align:baseline;font-size:1em;"><div class="container" style="background-image:none;border:0px;float:none;height:auto;line-height:1.1em;margin:0px;padding:0px;vertical-align:baseline;width:auto;font-size:1em;"><div class="line number1 index0 alt2 highlighted" style="background-image:none;background-color:rgb(224,224,224);border:0px;float:none;height:auto;line-height:1.1em;margin:0px;padding:0px 1em;vertical-align:baseline;width:auto;font-size:1em;"><code class="xml plain" style="background-image:none;border:0px;float:none;height:auto;line-height:1.1em;margin:0px;padding:0px;vertical-align:baseline;width:auto;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;font-size:1em;color:#000000;"><</code><code class="xml keyword" style="background-image:none;border:0px;float:none;height:auto;line-height:1.1em;margin:0px;padding:0px;vertical-align:baseline;width:auto;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;font-weight:bold;font-size:1em;color:rgb(0,102,153);">form</code> <code class="xml color1" style="background-image:none;border:0px;float:none;height:auto;line-height:1.1em;margin:0px;padding:0px;vertical-align:baseline;width:auto;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;font-size:1em;color:#808080;">action</code><code class="xml plain" style="background-image:none;border:0px;float:none;height:auto;line-height:1.1em;margin:0px;padding:0px;vertical-align:baseline;width:auto;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;font-size:1em;color:#000000;">=</code><code class="xml string" style="background-image:none;border:0px;float:none;height:auto;line-height:1.1em;margin:0px;padding:0px;vertical-align:baseline;width:auto;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;font-size:1em;color:#0000FF;">"./"</code> <code class="xml color1" style="background-image:none;border:0px;float:none;height:auto;line-height:1.1em;margin:0px;padding:0px;vertical-align:baseline;width:auto;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;font-size:1em;color:#808080;">method</code><code class="xml plain" style="background-image:none;border:0px;float:none;height:auto;line-height:1.1em;margin:0px;padding:0px;vertical-align:baseline;width:auto;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;font-size:1em;color:#000000;">=</code><code class="xml string" style="background-image:none;border:0px;float:none;height:auto;line-height:1.1em;margin:0px;padding:0px;vertical-align:baseline;width:auto;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;font-size:1em;color:#0000FF;">"get"</code> <code class="xml color1" style="background-image:none;border:0px;float:none;height:auto;line-height:1.1em;margin:0px;padding:0px;vertical-align:baseline;width:auto;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;font-size:1em;color:#808080;">no-error-return-url</code><code class="xml plain" style="background-image:none;border:0px;float:none;height:auto;line-height:1.1em;margin:0px;padding:0px;vertical-align:baseline;width:auto;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;font-size:1em;color:#000000;">=</code><code class="xml string" style="background-image:none;border:0px;float:none;height:auto;line-height:1.1em;margin:0px;padding:0px;vertical-align:baseline;width:auto;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;font-size:1em;color:#0000FF;">"true"</code><code class="xml plain" style="background-image:none;border:0px;float:none;height:auto;line-height:1.1em;margin:0px;padding:0px;vertical-align:baseline;width:auto;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;font-size:1em;color:#000000;">></code></div><div class="line number2 index1 alt1" style="background-image:none;border:0px;float:none;height:auto;line-height:1.1em;margin:0px;padding:0px 1em;vertical-align:baseline;width:auto;font-size:1em;"><code class="xml plain" style="background-image:none;border:0px;float:none;height:auto;line-height:1.1em;margin:0px;padding:0px;vertical-align:baseline;width:auto;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;font-size:1em;color:#000000;"></</code><code class="xml keyword" style="background-image:none;border:0px;float:none;height:auto;line-height:1.1em;margin:0px;padding:0px;vertical-align:baseline;width:auto;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;font-weight:bold;font-size:1em;color:rgb(0,102,153);">form</code><code class="xml plain" style="background-image:none;border:0px;float:none;height:auto;line-height:1.1em;margin:0px;padding:0px;vertical-align:baseline;width:auto;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;font-size:1em;color:#000000;">></code></div><div class="line number2 index1 alt1" style="background-image:none;border:0px;float:none;height:auto;line-height:1.1em;margin:0px;padding:0px 1em;vertical-align:baseline;width:auto;font-size:1em;"><code class="xml plain" style="background-image:none;border:0px;float:none;height:auto;line-height:1.1em;margin:0px;padding:0px;vertical-align:baseline;width:auto;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;font-size:1em;color:#000000;"><br /></code></div><div class="line number2 index1 alt1" style="background-image:none;border:0px;float:none;height:auto;line-height:1.1em;margin:0px;padding:0px 1em;vertical-align:baseline;width:auto;font-size:1em;"><br /></div><div class="line number2 index1 alt1" style="background-image:none;border:0px;float:none;height:auto;line-height:1.1em;margin:0px;padding:0px 1em;vertical-align:baseline;width:auto;font-size:1em;"><br /></div><div class="line number2 index1 alt1" style="background-image:none;border:0px;float:none;height:auto;line-height:1.1em;margin:0px;padding:0px 1em;vertical-align:baseline;width:auto;font-size:1em;"><br /></div><div class="line number2 index1 alt1" style="background-image:none;border:0px;float:none;height:auto;line-height:1.1em;margin:0px;padding:0px 1em;vertical-align:baseline;width:auto;font-size:1em;">위에 방식과 아래 방식이 같은 건가요?</div><div class="line number2 index1 alt1" style="background-image:none;border:0px;float:none;height:auto;line-height:1.1em;margin:0px;padding:0px 1em;vertical-align:baseline;width:auto;font-size:1em;"><br /></div></div></td></tr></tbody></table></div></div> <p style="font-size:13px;background-color:rgb(255,255,255);"><font color="#333333" face="돋움, Dotum, Tahoma, Geneva, sans-serif" size="2"><span style="line-height:19.5px;"><br /></span></font></p></div><!--AfterDocument(22682190,21857146)--> </div> <!-- /READ BODY --> <!-- READ FOOTER --> <div class="read_footer"> <div class="tns"> <a class="document_22682190 action" href="#popup_menu_area" onclick="return false">이 게시물을</a> <ul class="sns"> <li class="twitter link"><a href="http://twitter.com/">Twitter</a></li> <li class="facebook link"><a href="http://facebook.com/">Facebook</a></li> <li class="delicious link"><a href="http://delicious.com/">Delicious</a></li> </ul> <script> var sTitle = '검색창에 검색어 입력하면 error_return_url= 라고 뜨는거 없애는 방법 ㅠㅠ'; jQuery(function($){ $('.twitter>a').snspost({ type : 'twitter', content : sTitle + ' http://www.xpressengine.com/22682190' }); $('.facebook>a').snspost({ type : 'facebook', content : sTitle }); $('.delicious>a').snspost({ type : 'delicious', content : sTitle }); }); </script> </div> <div class="btnArea"> <a class="btn" href="http://www.xpressengine.com/index.php?mid=qna&document_srl=22682190&act=dispBoardWrite">수정</a> <a class="btn" href="http://www.xpressengine.com/index.php?mid=qna&document_srl=22682190&act=dispBoardDelete">삭제</a> <span class="etc"> <a href="http://www.xpressengine.com/qna" class="btn">목록</a> </span> </div> </div> <!-- /READ FOOTER --> </div> <!-- COMMENT --> <div class="feedback" id="comment"> <div class="fbHeader"> <h2>댓글 <em>16</em></h2> </div> <ul class="fbList"> <li class="fbItem" id="comment_22682606"> <div class="fbMeta"> <img src="http://www.xpressengine.com/files/member_extra_info/profile_image/503/150/021/21150503.png" alt="Profile" class="profile" /> <h3 class="author"> <a href="#popup_menu_area" class="member_21150503" onclick="return false">LI-NA</a> </h3> <p class="time">2014.04.12 14:14</p> </div> <!--BeforeComment(22682606,21150503)--><div class="comment_22682606_21150503 xe_content"><p>동일한 방법으로 보입니다.</p> <p>저런 식으로 검색 form을 찾아서 no-error-return-url="true"를 추가해 주면 되겠네요.</p></div><!--AfterComment(22682606,21150503)--> <p class="action"> <a href="http://www.xpressengine.com/index.php?mid=qna&document_srl=22682190&act=dispBoardReplyComment&comment_srl=22682606" class="reply">댓글</a> <a class="comment_22682606 this" href="#popup_menu_area" onclick="return false">이 댓글을</a> </p> </li><li class="fbItem indent indent1" id="comment_22686856"> <div class="fbMeta"> <span class="profile"></span> <h3 class="author"> <a href="#popup_menu_area" class="member_21857146" onclick="return false">루팡쿠팡</a> </h3> <p class="time">2014.04.14 13:23</p> </div> <!--BeforeComment(22686856,21857146)--><div class="comment_22686856_21857146 xe_content"><div style="font-family:'Apple SD 산돌고딕 Neo', 'Apple SD Gothic Neo', '맑은 고딕', '나눔 고딕', '굴림', Gulim, '돋움', Dotum, sans-serif;font-size:13px;"><br /></div><div><p style="font-family:Gulim;font-size:12px;line-height:18px;"><form action="{postUrl()}" method="post"></p> <p style="font-family:Gulim;font-size:12px;line-height:18px;"><form action="{getUrl()}" method="post"></p> <p style="font-family:Gulim;font-size:12px;line-height:18px;"><form action="{postUrl()}" method="post" no-error-return-url="true"></p> <p style="font-family:Gulim;font-size:12px;line-height:18px;"><form action="{getUrl()}" method="post" no-error-return-url="true"></p> <p style="font-family:Gulim;font-size:12px;line-height:18px;"><form action="{getUrl()}" method="get" no-error-return-url="true"><br /></p> <p style="font-family:Gulim;font-size:12px;line-height:18px;"><br /></p> <p style="font-family:Gulim;font-size:12px;line-height:18px;">위 5가지 경우의 수 대로 전부다 해보았습니다만.. 다 실패했습니다..</p> <p style="font-family:Gulim;font-size:12px;line-height:18px;"><br /></p> <p style="font-family:Gulim;font-size:12px;line-height:18px;"><br /></p> <p style="font-family:Gulim;font-size:12px;line-height:18px;">통합검색창에 "검색" 이라고 치면 주소뒤에 </p> <p style="font-family:Gulim;font-size:12px;line-height:18px;">/?error_return_url=%2F&vid=&mid=home&act=IS&is_keyword=검색&x=0&y=0</p> <p style="font-family:Gulim;font-size:12px;line-height:18px;"><br /></p> <p style="font-family:Gulim;font-size:12px;line-height:18px;"><br /></p> <p style="font-family:Gulim;font-size:12px;line-height:18px;">이런식으로 뜨고</p> <p style="font-family:Gulim;font-size:12px;line-height:18px;"><br /></p> <p style="font-family:Gulim;font-size:12px;line-height:18px;"><br /></p> <p style="font-family:Gulim;font-size:12px;line-height:18px;">다시 그상태에서 통합검색창에 "검색" 이라고 검색하면 주소뒤에 </p> <p style="font-family:Gulim;font-size:12px;line-height:18px;">/?error_return_url=%2F%3Ferror_return_url%3D%252F%26vid%3D%26mid%3Dhome%26act%3DIS%26is_keyword%3D%25EA%25B2%2580%25EC%2583%2589%26x%3D18%26y%3D12&vid=&mid=home&act=IS&is_keyword=검색&x=0&y=0</p> <p style="font-family:Gulim;font-size:12px;line-height:18px;"><br /></p> <p style="font-family:Gulim;font-size:12px;line-height:18px;"><br /></p> <p style="font-family:Gulim;font-size:12px;line-height:18px;">이런식으로 주소가 무한대로 길어집니다. 그래서 최종적으로는 나중에 검색을 할수없게됩니다..</p> <p style="font-family:Gulim;font-size:12px;line-height:18px;"><br /></p> <p style="font-family:Gulim;font-size:12px;line-height:18px;"><br /></p> <p style="font-family:Gulim;font-size:12px;line-height:18px;">파일은 www - layouts - sketchbook5 - layhout.html 를 수정해줬습니다. 도움 부탁드립니다..</p> <p><span style="color:rgb(255,255,255);font-size:9px;">@KrteamENT</span><br /></p> </div></div><!--AfterComment(22686856,21857146)--> <p class="action"> <a href="http://www.xpressengine.com/index.php?mid=qna&document_srl=22682190&act=dispBoardReplyComment&comment_srl=22686856" class="reply">댓글</a> <a href="http://www.xpressengine.com/index.php?mid=qna&document_srl=22682190&act=dispBoardModifyComment&comment_srl=22686856" class="modify">수정</a> <a href="http://www.xpressengine.com/index.php?mid=qna&document_srl=22682190&act=dispBoardDeleteComment&comment_srl=22686856" class="delete">삭제</a> <a class="comment_22686856 this" href="#popup_menu_area" onclick="return false">이 댓글을</a> </p> </li><li class="fbItem" id="comment_22686972"> <div class="fbMeta"> <span class="profile"></span> <h3 class="author"> <a href="#popup_menu_area" class="member_21210553" onclick="return false">닉이</a> </h3> <p class="time">2014.04.14 14:10</p> </div> <!--BeforeComment(22686972,21210553)--><div class="comment_22686972_21210553 xe_content"><p>스케치북 레이아웃에서 </p> <p><br /></p> <p></p> <pre class="brush:plain" title=""> <!--// 검색 --> <div id="site_srch" class="srch"> <form action="{getUrl()}" method="get" no-error-return-url="true" > <input type="hidden" name="vid" value="{$vid}" /> <input type="hidden" name="mid" value="{$mid}" /> <input type="hidden" name="act" value="IS" /> <input type="text" name="is_keyword" value="{$is_keyword}" title="{$lang->cmd_search}" class="itx css3pie" accesskey="S" /> <input type="image" src="./img/bs_{$layout_info->colorset}.png" alt="Search" class="is" /> </form> </div></pre><br /><p></p> <p><span style="font-size:12px;line-height:1.5;font-family:'Apple SD 산돌고딕 Neo', 'Apple SD Gothic Neo', '맑은 고딕', '나눔 고딕', '굴림', Gulim, '돋움', Dotum, sans-serif;">이렇게 변경해주세요. 1.7.3.8, 1.7.4.1에서 잘되네요.</span><br /></p></div><!--AfterComment(22686972,21210553)--> <p class="action"> <a href="http://www.xpressengine.com/index.php?mid=qna&document_srl=22682190&act=dispBoardReplyComment&comment_srl=22686972" class="reply">댓글</a> <a class="comment_22686972 this" href="#popup_menu_area" onclick="return false">이 댓글을</a> </p> </li><li class="fbItem indent indent1" id="comment_22687155"> <div class="fbMeta"> <span class="profile"></span> <h3 class="author"> <a href="#popup_menu_area" class="member_21857146" onclick="return false">루팡쿠팡</a> </h3> <p class="time">2014.04.14 15:58</p> </div> <!--BeforeComment(22687155,21857146)--><div class="comment_22687155_21857146 xe_content"><font face="Apple SD 산돌고딕 Neo, Apple SD Gothic Neo, 맑은 고딕, 나눔 고딕, 굴림, Gulim, 돋움, Dotum, sans-serif" size="2"><span style="line-height:19.5px;"></span></font><p><font face="Apple SD 산돌고딕 Neo, Apple SD Gothic Neo, 맑은 고딕, 나눔 고딕, 굴림, Gulim, 돋움, Dotum, sans-serif" size="2"><span style="line-height:19.5px;">전 1.7.3.7 버전입니다..</span></font></p> <p><font face="Apple SD 산돌고딕 Neo, Apple SD Gothic Neo, 맑은 고딕, 나눔 고딕, 굴림, Gulim, 돋움, Dotum, sans-serif" size="2"><span style="line-height:19.5px;">여전히 안되네요..</span></font></p> <p><font face="Apple SD 산돌고딕 Neo, Apple SD Gothic Neo, 맑은 고딕, 나눔 고딕, 굴림, Gulim, 돋움, Dotum, sans-serif" size="2"><span style="line-height:19.5px;"></span></font></p> </div><!--AfterComment(22687155,21857146)--> <p class="action"> <a href="http://www.xpressengine.com/index.php?mid=qna&document_srl=22682190&act=dispBoardReplyComment&comment_srl=22687155" class="reply">댓글</a> <a href="http://www.xpressengine.com/index.php?mid=qna&document_srl=22682190&act=dispBoardModifyComment&comment_srl=22687155" class="modify">수정</a> <a href="http://www.xpressengine.com/index.php?mid=qna&document_srl=22682190&act=dispBoardDeleteComment&comment_srl=22687155" class="delete">삭제</a> <a class="comment_22687155 this" href="#popup_menu_area" onclick="return false">이 댓글을</a> </p> </li><li class="fbItem" id="comment_22688021"> <div class="fbMeta"> <span class="profile"></span> <h3 class="author"> <a href="#popup_menu_area" class="member_21857146" onclick="return false">루팡쿠팡</a> </h3> <p class="time">2014.04.15 09:45</p> </div> <!--BeforeComment(22688021,21857146)--><div class="comment_22688021_21857146 xe_content"><p>해결방법 아시는분 안계신가요 ㅠㅠ</p></div><!--AfterComment(22688021,21857146)--> <p class="action"> <a href="http://www.xpressengine.com/index.php?mid=qna&document_srl=22682190&act=dispBoardReplyComment&comment_srl=22688021" class="reply">댓글</a> <a href="http://www.xpressengine.com/index.php?mid=qna&document_srl=22682190&act=dispBoardModifyComment&comment_srl=22688021" class="modify">수정</a> <a href="http://www.xpressengine.com/index.php?mid=qna&document_srl=22682190&act=dispBoardDeleteComment&comment_srl=22688021" class="delete">삭제</a> <a class="comment_22688021 this" href="#popup_menu_area" onclick="return false">이 댓글을</a> </p> </li><li class="fbItem" id="comment_22688071"> <div class="fbMeta"> <img src="http://www.xpressengine.com/files/member_extra_info/profile_image/725/332/003/3332725.jpg" alt="Profile" class="profile" /> <h3 class="author"> <a href="#popup_menu_area" class="member_3332725" onclick="return false">애니즌</a> </h3> <p class="time">2014.04.15 10:11</p> </div> <!--BeforeComment(22688071,3332725)--><div class="comment_22688071_3332725 xe_content"><p>단순히 안보이게 하고 싶으면 서치 폼을 수정하세요.</p> <p> </p> <p><<code style="margin:0px;padding:0px;border:0px;width:auto;height:auto;color:rgb(0,102,153);line-height:1.1em;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;font-size:1em;font-weight:bold;vertical-align:baseline;float:none;background-image:none;" class="xml keyword">form</code> <code style="margin:0px;padding:0px;border:0px;width:auto;height:auto;color:rgb(128,128,128);line-height:1.1em;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;font-size:1em;vertical-align:baseline;float:none;background-image:none;" class="xml color1">action</code><code style="margin:0px;padding:0px;border:0px;width:auto;height:auto;color:rgb(0,0,0);line-height:1.1em;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;font-size:1em;vertical-align:baseline;float:none;background-image:none;" class="xml plain">=</code><code style="margin:0px;padding:0px;border:0px;width:auto;height:auto;color:rgb(0,0,255);line-height:1.1em;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;font-size:1em;vertical-align:baseline;float:none;background-image:none;" class="xml string">"./"</code> <code style="margin:0px;padding:0px;border:0px;width:auto;height:auto;color:rgb(128,128,128);line-height:1.1em;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;font-size:1em;vertical-align:baseline;float:none;background-image:none;" class="xml color1">method</code><code style="margin:0px;padding:0px;border:0px;width:auto;height:auto;color:rgb(0,0,0);line-height:1.1em;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;font-size:1em;vertical-align:baseline;float:none;background-image:none;" class="xml plain">=</code><code style="margin:0px;padding:0px;border:0px;width:auto;height:auto;color:rgb(0,0,255);line-height:1.1em;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;font-size:1em;vertical-align:baseline;float:none;background-image:none;" class="xml string">"<span style="color:rgb(255,0,0);">get</span>"</code><code style="margin:0px;padding:0px;border:0px;width:auto;height:auto;color:rgb(128,128,128);line-height:1.1em;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;font-size:1em;vertical-align:baseline;float:none;background-image:none;" class="xml color1"><font color="#000000">><code style="margin:0px;padding:0px;border:0px;width:auto;height:auto;color:rgb(0,102,153);line-height:1.1em;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;font-size:1em;font-weight:bold;vertical-align:baseline;float:none;background-image:none;" class="xml keyword"></code></font></code></p> <p><code style="margin:0px;padding:0px;border:0px;width:auto;height:auto;color:rgb(0,0,0);line-height:1.1em;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;font-size:1em;vertical-align:baseline;float:none;background-image:none;" class="xml plain"></code> </p> <p><code style="margin:0px;padding:0px;border:0px;width:auto;height:auto;color:rgb(0,0,0);line-height:1.1em;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;font-size:1em;vertical-align:baseline;float:none;background-image:none;" class="xml plain">이것을</code></p> <p><code style="margin:0px;padding:0px;border:0px;width:auto;height:auto;color:rgb(0,0,0);line-height:1.1em;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;font-size:1em;vertical-align:baseline;float:none;background-image:none;" class="xml plain"></code> </p> <p><code style="margin:0px;padding:0px;border:0px;width:auto;height:auto;color:rgb(0,0,0);line-height:1.1em;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;font-size:1em;vertical-align:baseline;float:none;background-image:none;" class="xml plain"><<code style="margin:0px;padding:0px;border:0px;width:auto;height:auto;color:rgb(0,102,153);line-height:1.1em;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;font-size:1em;font-weight:bold;vertical-align:baseline;float:none;background-image:none;" class="xml keyword">form</code> <code style="margin:0px;padding:0px;border:0px;width:auto;height:auto;color:rgb(128,128,128);line-height:1.1em;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;font-size:1em;vertical-align:baseline;float:none;background-image:none;" class="xml color1">action</code><code style="margin:0px;padding:0px;border:0px;width:auto;height:auto;color:rgb(0,0,0);line-height:1.1em;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;font-size:1em;vertical-align:baseline;float:none;background-image:none;" class="xml plain">=</code><code style="margin:0px;padding:0px;border:0px;width:auto;height:auto;color:rgb(0,0,255);line-height:1.1em;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;font-size:1em;vertical-align:baseline;float:none;background-image:none;" class="xml string">"./"</code> <code style="margin:0px;padding:0px;border:0px;width:auto;height:auto;color:rgb(128,128,128);line-height:1.1em;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;font-size:1em;vertical-align:baseline;float:none;background-image:none;" class="xml color1">method</code><code style="margin:0px;padding:0px;border:0px;width:auto;height:auto;color:rgb(0,0,0);line-height:1.1em;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;font-size:1em;vertical-align:baseline;float:none;background-image:none;" class="xml plain">=</code><code style="margin:0px;padding:0px;border:0px;width:auto;height:auto;color:rgb(0,0,255);line-height:1.1em;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;font-size:1em;vertical-align:baseline;float:none;background-image:none;" class="xml string">"<span style="color:rgb(255,0,0);">post</span>"</code><code style="margin:0px;padding:0px;border:0px;width:auto;height:auto;color:rgb(0,0,0);line-height:1.1em;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;font-size:1em;vertical-align:baseline;float:none;background-image:none;" class="xml plain">></code></code></p> <p><code style="margin:0px;padding:0px;border:0px;width:auto;height:auto;color:rgb(0,0,0);line-height:1.1em;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;font-size:1em;vertical-align:baseline;float:none;background-image:none;" class="xml plain"><code style="margin:0px;padding:0px;border:0px;width:auto;height:auto;color:rgb(0,0,0);line-height:1.1em;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;font-size:1em;vertical-align:baseline;float:none;background-image:none;" class="xml plain"></code></code> </p> <p><code style="margin:0px;padding:0px;border:0px;width:auto;height:auto;color:rgb(0,0,0);line-height:1.1em;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;font-size:1em;vertical-align:baseline;float:none;background-image:none;" class="xml plain"><code style="margin:0px;padding:0px;border:0px;width:auto;height:auto;color:rgb(0,0,0);line-height:1.1em;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;font-size:1em;vertical-align:baseline;float:none;background-image:none;" class="xml plain">로 변경해보세요. </code></code></p> <p><code style="margin:0px;padding:0px;border:0px;width:auto;height:auto;color:rgb(0,0,0);line-height:1.1em;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;font-size:1em;vertical-align:baseline;float:none;background-image:none;" class="xml plain"><code style="margin:0px;padding:0px;border:0px;width:auto;height:auto;color:rgb(0,0,0);line-height:1.1em;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;font-size:1em;vertical-align:baseline;float:none;background-image:none;" class="xml plain"></code></code><code style="margin:0px;padding:0px;border:0px;width:auto;height:auto;color:rgb(0,0,0);line-height:1.1em;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;font-size:1em;vertical-align:baseline;float:none;background-image:none;" class="xml plain"><code style="margin:0px;padding:0px;border:0px;width:auto;height:auto;color:rgb(0,0,0);line-height:1.1em;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;font-size:1em;vertical-align:baseline;float:none;background-image:none;" class="xml plain"></code></code> </p> <p><code style="margin:0px;padding:0px;border:0px;width:auto;height:auto;color:rgb(0,0,0);line-height:1.1em;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;font-size:1em;vertical-align:baseline;float:none;background-image:none;" class="xml plain"><code style="margin:0px;padding:0px;border:0px;width:auto;height:auto;color:rgb(0,0,0);line-height:1.1em;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;font-size:1em;vertical-align:baseline;float:none;background-image:none;" class="xml plain">get 방식에서 post 방식으로 변경하였습니다.</code></code></p> <p><code style="margin:0px;padding:0px;border:0px;width:auto;height:auto;color:rgb(0,0,0);line-height:1.1em;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;font-size:1em;vertical-align:baseline;float:none;background-image:none;" class="xml plain"><code style="margin:0px;padding:0px;border:0px;width:auto;height:auto;color:rgb(0,0,0);line-height:1.1em;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;font-size:1em;vertical-align:baseline;float:none;background-image:none;" class="xml plain"></code></code> </p> <p><code style="margin:0px;padding:0px;border:0px;width:auto;height:auto;color:rgb(0,0,0);line-height:1.1em;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;font-size:1em;vertical-align:baseline;float:none;background-image:none;" class="xml plain"><code style="margin:0px;padding:0px;border:0px;width:auto;height:auto;color:rgb(0,0,0);line-height:1.1em;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;font-size:1em;vertical-align:baseline;float:none;background-image:none;" class="xml plain">값은 정상적으로 넘어가나 주소에 변수가 붙지 않습니다.</code></code></p> <p><code style="margin:0px;padding:0px;border:0px;width:auto;height:auto;color:rgb(0,0,0);line-height:1.1em;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;font-size:1em;vertical-align:baseline;float:none;background-image:none;" class="xml plain"><code style="margin:0px;padding:0px;border:0px;width:auto;height:auto;color:rgb(0,0,0);line-height:1.1em;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;font-size:1em;vertical-align:baseline;float:none;background-image:none;" class="xml plain"></code></code> </p> <p><code style="margin:0px;padding:0px;border:0px;width:auto;height:auto;color:rgb(0,0,0);line-height:1.1em;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;font-size:1em;vertical-align:baseline;float:none;background-image:none;" class="xml plain"><code style="margin:0px;padding:0px;border:0px;width:auto;height:auto;color:rgb(0,0,0);line-height:1.1em;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;font-size:1em;vertical-align:baseline;float:none;background-image:none;" class="xml plain">변경해서 테스트해본 결과 딱히 문제는 없는 듯 합니다.(사실 문제가 있을 것도 없지만..)]</code></code></p> <p><code style="margin:0px;padding:0px;border:0px;width:auto;height:auto;color:rgb(0,0,0);line-height:1.1em;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;font-size:1em;vertical-align:baseline;float:none;background-image:none;" class="xml plain"><code style="margin:0px;padding:0px;border:0px;width:auto;height:auto;color:rgb(0,0,0);line-height:1.1em;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;font-size:1em;vertical-align:baseline;float:none;background-image:none;" class="xml plain"></code></code> </p> <p><code style="margin:0px;padding:0px;border:0px;width:auto;height:auto;color:rgb(0,0,0);line-height:1.1em;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;font-size:1em;vertical-align:baseline;float:none;background-image:none;" class="xml plain"><code style="margin:0px;padding:0px;border:0px;width:auto;height:auto;color:rgb(0,0,0);line-height:1.1em;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;font-size:1em;vertical-align:baseline;float:none;background-image:none;" class="xml plain">단지 f5를 누르면 확인창이 뜬다는 불편이 생기는 정도..?</code></code></p></div><!--AfterComment(22688071,3332725)--> <p class="action"> <a href="http://www.xpressengine.com/index.php?mid=qna&document_srl=22682190&act=dispBoardReplyComment&comment_srl=22688071" class="reply">댓글</a> <a class="comment_22688071 this" href="#popup_menu_area" onclick="return false">이 댓글을</a> </p> </li><li class="fbItem indent indent1" id="comment_22688335"> <div class="fbMeta"> <span class="profile"></span> <h3 class="author"> <a href="#popup_menu_area" class="member_21857146" onclick="return false">루팡쿠팡</a> </h3> <p class="time">2014.04.15 13:35</p> </div> <!--BeforeComment(22688335,21857146)--><div class="comment_22688335_21857146 xe_content"><p>이것 또한 안되네요..</p> <p></p> <pre class="brush:plain" title=""><!--// 검색 --> <div id="site_srch" class="srch"> <form action="{getUrl()}" method="get"> <input type="hidden" name="vid" value="{$vid}" /> <input type="hidden" name="mid" value="{$mid}" /> <input type="hidden" name="act" value="IS" /> <input type="text" name="is_keyword" value="{$is_keyword}" title="{$lang->cmd_search}" class="itx css3pie" accesskey="S" /> <input type="image" src="./img/bs_{$layout_info->colorset}.png" alt="Search" class="is" /> </form> </div> <!-- GNB --></pre><br /><p></p> <p><br /></p> <p>위를 아래와 같이 바꿔줬습니다.</p> <p><br /></p> <p></p> <pre class="brush:plain" title=""><!--// 검색 --> <div id="site_srch" class="srch"> <form action="./" method="post"> <input type="hidden" name="vid" value="{$vid}" /> <input type="hidden" name="mid" value="{$mid}" /> <input type="hidden" name="act" value="IS" /> <input type="text" name="is_keyword" value="{$is_keyword}" title="{$lang->cmd_search}" class="itx css3pie" accesskey="S" /> <input type="image" src="./img/bs_{$layout_info->colorset}.png" alt="Search" class="is" /> </form> </div> <!-- GNB --></pre><br /><p></p> <p><br /></p> <p>그리고 이렇게도 바꿔봤구요.. 그래도 여전히 계속 오류가 뜨는군요.. </p> <p>?error_return_url=%2F&vid=&mid=home&act=IS&is_keyword=키워드&x=0&y=0</p> <p>이런식으로..</p> <p><br /></p> <p></p> <pre class="brush:plain" title=""><!--// 검색 --> <div id="site_srch" class="srch"> <form action="{getUrl()}" method="post"> <input type="hidden" name="vid" value="{$vid}" /> <input type="hidden" name="mid" value="{$mid}" /> <input type="hidden" name="act" value="IS" /> <input type="text" name="is_keyword" value="{$is_keyword}" title="{$lang->cmd_search}" class="itx css3pie" accesskey="S" /> <input type="image" src="./img/bs_{$layout_info->colorset}.png" alt="Search" class="is" /> </form> </div> <!-- GNB --></pre><br /><p></p> <p><br /></p> <p><br /></p> <p><br /></p></div><!--AfterComment(22688335,21857146)--> <p class="action"> <a href="http://www.xpressengine.com/index.php?mid=qna&document_srl=22682190&act=dispBoardReplyComment&comment_srl=22688335" class="reply">댓글</a> <a href="http://www.xpressengine.com/index.php?mid=qna&document_srl=22682190&act=dispBoardModifyComment&comment_srl=22688335" class="modify">수정</a> <a href="http://www.xpressengine.com/index.php?mid=qna&document_srl=22682190&act=dispBoardDeleteComment&comment_srl=22688335" class="delete">삭제</a> <a class="comment_22688335 this" href="#popup_menu_area" onclick="return false">이 댓글을</a> </p> </li><li class="fbItem indent indent2" id="comment_22688361"> <div class="fbMeta"> <img src="http://www.xpressengine.com/files/member_extra_info/profile_image/725/332/003/3332725.jpg" alt="Profile" class="profile" /> <h3 class="author"> <a href="#popup_menu_area" class="member_3332725" onclick="return false">애니즌</a> </h3> <p class="time">2014.04.15 13:38</p> </div> <!--BeforeComment(22688361,3332725)--><div class="comment_22688361_3332725 xe_content"><p>method를 변경했는데 주소가 뜰 수가 없습니다.</p> <p> </p> <p>아마 다른 쪽에서 따로 관여하는 부분이 있는 듯 합니다.</p> <p> </p> <p>아니면 전혀 다른 곳을 수정하신 것일수도 있겠는데요?</p> <p> </p> <p>실제 웹페이지에서 소스보기를 하셔서 해당 내용이 제대로 변경됐는 지 확인이 필요할 것 같습니다.</p> <p> </p> <p>사실 실제 페이지를 보여주면 좀 더 자세히 볼 수 있겠지만요..</p></div><!--AfterComment(22688361,3332725)--> <p class="action"> <a href="http://www.xpressengine.com/index.php?mid=qna&document_srl=22682190&act=dispBoardReplyComment&comment_srl=22688361" class="reply">댓글</a> <a class="comment_22688361 this" href="#popup_menu_area" onclick="return false">이 댓글을</a> </p> </li><li class="fbItem indent indent3" id="comment_22688415"> <div class="fbMeta"> <span class="profile"></span> <h3 class="author"> <a href="#popup_menu_area" class="member_21857146" onclick="return false">루팡쿠팡</a> </h3> <p class="time">2014.04.15 13:55</p> </div> <!--BeforeComment(22688415,21857146)--><div class="comment_22688415_21857146 xe_content"><p><span style="color:rgb(102,102,102);font-family:'돋움', Dotum, Tahoma, Geneva, sans-serif;background-color:rgb(255,255,255);">www - layouts - sketchbook5 - layhout.html 이거 고쳐주는거 아닌가요?</span></p></div><!--AfterComment(22688415,21857146)--> <p class="action"> <a href="http://www.xpressengine.com/index.php?mid=qna&document_srl=22682190&act=dispBoardReplyComment&comment_srl=22688415" class="reply">댓글</a> <a href="http://www.xpressengine.com/index.php?mid=qna&document_srl=22682190&act=dispBoardModifyComment&comment_srl=22688415" class="modify">수정</a> <a href="http://www.xpressengine.com/index.php?mid=qna&document_srl=22682190&act=dispBoardDeleteComment&comment_srl=22688415" class="delete">삭제</a> <a class="comment_22688415 this" href="#popup_menu_area" onclick="return false">이 댓글을</a> </p> </li><li class="fbItem indent indent4" id="comment_22688430"> <div class="fbMeta"> <img src="http://www.xpressengine.com/files/member_extra_info/profile_image/725/332/003/3332725.jpg" alt="Profile" class="profile" /> <h3 class="author"> <a href="#popup_menu_area" class="member_3332725" onclick="return false">애니즌</a> </h3> <p class="time">2014.04.15 13:56</p> </div> <!--BeforeComment(22688430,3332725)--><div class="comment_22688430_3332725 xe_content"><p>따로 레이아웃 설정상에서 편집을 하셨다면 거기서 수정해도 적용이 안됩니다.</p></div><!--AfterComment(22688430,3332725)--> <p class="action"> <a href="http://www.xpressengine.com/index.php?mid=qna&document_srl=22682190&act=dispBoardReplyComment&comment_srl=22688430" class="reply">댓글</a> <a class="comment_22688430 this" href="#popup_menu_area" onclick="return false">이 댓글을</a> </p> </li><li class="fbItem indent indent5" id="comment_22688650"> <div class="fbMeta"> <span class="profile"></span> <h3 class="author"> <a href="#popup_menu_area" class="member_21857146" onclick="return false">루팡쿠팡</a> </h3> <p class="time">2014.04.15 16:07</p> </div> <!--BeforeComment(22688650,21857146)--><div class="comment_22688650_21857146 xe_content"><p>따로 레이아웃 설정상에서 편집 한건 없습니다만... ㅠㅠ</p></div><!--AfterComment(22688650,21857146)--> <p class="action"> <a href="http://www.xpressengine.com/index.php?mid=qna&document_srl=22682190&act=dispBoardReplyComment&comment_srl=22688650" class="reply">댓글</a> <a href="http://www.xpressengine.com/index.php?mid=qna&document_srl=22682190&act=dispBoardModifyComment&comment_srl=22688650" class="modify">수정</a> <a href="http://www.xpressengine.com/index.php?mid=qna&document_srl=22682190&act=dispBoardDeleteComment&comment_srl=22688650" class="delete">삭제</a> <a class="comment_22688650 this" href="#popup_menu_area" onclick="return false">이 댓글을</a> </p> </li><li class="fbItem indent indent6" id="comment_22688738"> <div class="fbMeta"> <img src="http://www.xpressengine.com/files/member_extra_info/profile_image/725/332/003/3332725.jpg" alt="Profile" class="profile" /> <h3 class="author"> <a href="#popup_menu_area" class="member_3332725" onclick="return false">애니즌</a> </h3> <p class="time">2014.04.15 17:08</p> </div> <!--BeforeComment(22688738,3332725)--><div class="comment_22688738_3332725 xe_content"><p>실제 코드를 수정해보시고</p> <p> </p> <p>웹페이지에서 소스보기를 하셔서</p> <p> </p> <p>해당 코드가 바꼈는지 확인해보세요.</p></div><!--AfterComment(22688738,3332725)--> <p class="action"> <a href="http://www.xpressengine.com/index.php?mid=qna&document_srl=22682190&act=dispBoardReplyComment&comment_srl=22688738" class="reply">댓글</a> <a class="comment_22688738 this" href="#popup_menu_area" onclick="return false">이 댓글을</a> </p> </li><li class="fbItem" id="comment_22688385"> <div class="fbMeta"> <span class="profile"></span> <h3 class="author"> <a href="#popup_menu_area" class="member_3546404" onclick="return false">시니시즘</a> </h3> <p class="time">2014.04.15 13:45</p> </div> <!--BeforeComment(22688385,3546404)--><div class="comment_22688385_3546404 xe_content"><p>정말 편법 알려드릴까요? 폼 전송하기 이전에 이걸 실행해주세요. jQuery('input[name="error_return_url"]').remove();</p></div><!--AfterComment(22688385,3546404)--> <p class="action"> <a href="http://www.xpressengine.com/index.php?mid=qna&document_srl=22682190&act=dispBoardReplyComment&comment_srl=22688385" class="reply">댓글</a> <a class="comment_22688385 this" href="#popup_menu_area" onclick="return false">이 댓글을</a> </p> </li><li class="fbItem indent indent1" id="comment_22688419"> <div class="fbMeta"> <span class="profile"></span> <h3 class="author"> <a href="#popup_menu_area" class="member_21857146" onclick="return false">루팡쿠팡</a> </h3> <p class="time">2014.04.15 13:56</p> </div> <!--BeforeComment(22688419,21857146)--><div class="comment_22688419_21857146 xe_content"><p>이건 제이쿼리인데 어떤 방식이죠? 안좋은 영향은 없나요?</p></div><!--AfterComment(22688419,21857146)--> <p class="action"> <a href="http://www.xpressengine.com/index.php?mid=qna&document_srl=22682190&act=dispBoardReplyComment&comment_srl=22688419" class="reply">댓글</a> <a href="http://www.xpressengine.com/index.php?mid=qna&document_srl=22682190&act=dispBoardModifyComment&comment_srl=22688419" class="modify">수정</a> <a href="http://www.xpressengine.com/index.php?mid=qna&document_srl=22682190&act=dispBoardDeleteComment&comment_srl=22688419" class="delete">삭제</a> <a class="comment_22688419 this" href="#popup_menu_area" onclick="return false">이 댓글을</a> </p> </li><li class="fbItem indent indent2" id="comment_22688434"> <div class="fbMeta"> <span class="profile"></span> <h3 class="author"> <a href="#popup_menu_area" class="member_3546404" onclick="return false">시니시즘</a> </h3> <p class="time">2014.04.15 13:57</p> </div> <!--BeforeComment(22688434,3546404)--><div class="comment_22688434_3546404 xe_content"><font face="Apple SD 산돌고딕 Neo, Apple SD Gothic Neo, 맑은 고딕, 나눔 고딕, 굴림, Gulim, 돋움, Dotum, sans-serif" size="2"><span style="line-height:19.5px;">폼에서 error_return_url라는 네임값을 가진 항목을 삭제해버립니다.</span></font></div><!--AfterComment(22688434,3546404)--> <p class="action"> <a href="http://www.xpressengine.com/index.php?mid=qna&document_srl=22682190&act=dispBoardReplyComment&comment_srl=22688434" class="reply">댓글</a> <a class="comment_22688434 this" href="#popup_menu_area" onclick="return false">이 댓글을</a> </p> </li><li class="fbItem indent indent3" id="comment_22688446"> <div class="fbMeta"> <span class="profile"></span> <h3 class="author"> <a href="#popup_menu_area" class="member_21857146" onclick="return false">루팡쿠팡</a> </h3> <p class="time">2014.04.15 14:08</p> </div> <!--BeforeComment(22688446,21857146)--><div class="comment_22688446_21857146 xe_content"><p>안좋은 영향은 없나요?</p></div><!--AfterComment(22688446,21857146)--> <p class="action"> <a href="http://www.xpressengine.com/index.php?mid=qna&document_srl=22682190&act=dispBoardReplyComment&comment_srl=22688446" class="reply">댓글</a> <a href="http://www.xpressengine.com/index.php?mid=qna&document_srl=22682190&act=dispBoardModifyComment&comment_srl=22688446" class="modify">수정</a> <a href="http://www.xpressengine.com/index.php?mid=qna&document_srl=22682190&act=dispBoardDeleteComment&comment_srl=22688446" class="delete">삭제</a> <a class="comment_22688446 this" href="#popup_menu_area" onclick="return false">이 댓글을</a> </p> </li> </ul> <form action="./" method="post" onsubmit="return procFilter(this, insert_comment)" class="write_comment" id="write_comment"><input type="hidden" name="error_return_url" value="/qna/22682190" /><input type="hidden" name="act" value="" /><input type="hidden" name="vid" value="" /> <input type="hidden" name="mid" value="qna" /> <input type="hidden" name="document_srl" value="22682190" /> <input type="hidden" name="comment_srl" value="" /> <input type="hidden" name="content" value="" /> <!-- 자동저장용 폼 --> <!-- 에디터 --> <div class="xpress-editor "> <div id="smart_content"> <a href="#xe-editor-container-8" class="skip">» 편집 도구모음 건너뛰기</a> <!-- 편집 컴포넌트 --> <div class="tool off"> <!-- 기본 컴포넌트 출력 --> <ul class="do item"> <li class="xpress_xeditor_ui_undo undo"><button type="button" title="Ctrl+Z:되돌리기"><span>되돌리기</span></button></li> <li class="xpress_xeditor_ui_redo redo"><button type="button" title="Ctrl+Y:다시 실행"><span>다시 실행</span></button></li> </ul> <ul class="type"> <li class="xpress_xeditor_ui_format"> <select class="xpress_xeditor_ui_format_select" disabled="disabled"> <option value="">형식</option> <option value="h1">제목 1</option> <option value="h2">제목 2</option> <option value="h3">제목 3</option> <option value="h4">제목 4</option> <option value="h5">제목 5</option> <option value="h6">제목 6</option> </select> </li> <li class="xpress_xeditor_ui_fontName"> <select class="xpress_xeditor_ui_fontName_select" disabled="disabled"> <option value="">글꼴</option> <option value="Arial, Helvetica, sans-serif" style="font-family:Arial, Helvetica, sans-serif">Arial, Helvetica, sans-serif</option> <option value="Tahoma, Geneva, sans-serif" style="font-family:Tahoma, Geneva, sans-serif">Tahoma, Geneva, sans-serif</option> <option value="Verdana, Geneva, sans-serif" style="font-family:Verdana, Geneva, sans-serif">Verdana, Geneva, sans-serif</option> <option value="Sans-serif" style="font-family:Sans-serif">Sans-serif</option> <option value="Georgia, 'Times New Roman', Times, serif" style="font-family:Georgia, 'Times New Roman', Times, serif">Georgia, 'Times New Roman', Times, serif</option> <option value="'Palatino Linotype', 'Book Antiqua', Palatino, serif" style="font-family:'Palatino Linotype', 'Book Antiqua', Palatino, serif">'Palatino Linotype', 'Book Antiqua', Palatino, serif</option> <option value="'Times New Roman', Times, serif" style="font-family:'Times New Roman', Times, serif">'Times New Roman', Times, serif</option> <option value="Serif" style="font-family:Serif">Serif</option> <option value="'Courier New', Courier, monospace" style="font-family:'Courier New', Courier, monospace">'Courier New', Courier, monospace</option> <option value="'Lucida Console', Monaco, monospace" style="font-family:'Lucida Console', Monaco, monospace">'Lucida Console', Monaco, monospace</option> <option value="'メイリオ', 'Meiryo', Arial, Helvetica, sans-serif" style="font-family:'メイリオ', 'Meiryo', Arial, Helvetica, sans-serif">'メイリオ', 'Meiryo', Arial, Helvetica, sans-serif</option> <option value="'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', Arial, Helvetica, sans-serif" style="font-family:'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', Arial, Helvetica, sans-serif">'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', Arial, Helvetica, sans-serif</option> <option value="'MS Pゴシック', 'MS PGothic', Arial, Helvetica, sans-serif" style="font-family:'MS Pゴシック', 'MS PGothic', Arial, Helvetica, sans-serif">'MS Pゴシック', 'MS PGothic', Arial, Helvetica, sans-serif</option> </select> </li> <li class="xpress_xeditor_ui_fontSize"> <select class="xpress_xeditor_ui_fontSize_select" disabled="disabled"> <option value="">크기</option> <option value="9px" style="font-size:9px">9px</option> <option value="10px" style="font-size:10px">10px</option> <option value="11px" style="font-size:11px">11px</option> <option value="12px" style="font-size:12px">12px</option> <option value="13px" style="font-size:13px">13px</option> <option value="14px" style="font-size:14px">14px</option> <option value="16px" style="font-size:16px">16px</option> <option value="18px" style="font-size:18px">18px</option> <option value="24px" style="font-size:24px">24px</option> <option value="32px" style="font-size:32px">32px</option> </select> </li> <li class="xpress_xeditor_ui_lineHeight"> <select class="xpress_xeditor_ui_lineHeight_select" disabled="disabled"> <option value="">줄간격</option> <option value="1">100%</option> <option value="1.2">120%</option> <option value="1.4">140%</option> <option value="1.6">160%</option> <option value="1.8">180%</option> <option value="2">200%</option> </select> </li> </ul> <ul class="style"> <li class="bold xpress_xeditor_ui_bold"> <button type="button" title="Ctrl+B:글자를 진하게 합니다."><span>진하게</span></button> </li> <li class="underline xpress_xeditor_ui_underline"> <button type="button" title="Ctrl+U:밑줄을 긋습니다."><span>밑줄</span></button> </li> <li class="italic xpress_xeditor_ui_italic"> <button type="button" title="Ctrl+I:글자를 기울이게 합니다."><span>기울임</span></button> </li> <li class="del xpress_xeditor_ui_lineThrough"> <button type="button" title="Ctrl+D:취소선을 긋습니다."><span>취소선</span></button> </li> <li class="fcolor xpress_xeditor_ui_fontColor"> <button type="button" title="글자의 색상을 지정합니다."><span>글자 색</span></button> <!-- 팔레트 레이어 --> <div class="layer xpress_xeditor_fontcolor_layer" style="display:none;"> <ul class="palette xpress_xeditor_color_palette"> <li><button type="button" title="#ff0000" style="background:#ff0000"><span>#ff0000</span></button></li> <li><button type="button" title="#ff6c00" style="background:#ff6c00"><span>#ff6c00</span></button></li> <li><button type="button" title="#ffaa00" style="background:#ffaa00"><span>#ffaa00</span></button></li> <li><button type="button" title="#ffef00" style="background:#ffef00"><span>#ffef00</span></button></li> <li><button type="button" title="#a6cf00" style="background:#a6cf00"><span>#a6cf00</span></button></li> <li><button type="button" title="#009e25" style="background:#009e25"><span>#009e25</span></button></li> <li><button type="button" title="#00b0a2" style="background:#00b0a2"><span>#00b0a2</span></button></li> <li><button type="button" title="#0075c8" style="background:#0075c8"><span>#0075c8</span></button></li> <li><button type="button" title="#3a32c3" style="background:#3a32c3"><span>#3a32c3</span></button></li> <li><button type="button" title="#7820b9" style="background:#7820b9"><span>#7820b9</span></button></li> <li><button type="button" title="#ef007c" style="background:#ef007c"><span>#ef007c</span></button></li> <li><button type="button" title="#000000" style="background:#000000"><span>#000000</span></button></li> <li><button type="button" title="#252525" style="background:#252525"><span>#252525</span></button></li> <li><button type="button" title="#464646" style="background:#464646"><span>#464646</span></button></li> <li><button type="button" title="#636363" style="background:#636363"><span>#636363</span></button></li> <li><button type="button" title="#7d7d7d" style="background:#7d7d7d"><span>#7d7d7d</span></button></li> <li><button type="button" title="#9a9a9a" style="background:#9a9a9a"><span>#9a9a9a</span></button></li> <li><button type="button" title="#ffe8e8" style="background:#ffe8e8"><span>#ffe8e8</span></button></li> <li><button type="button" title="#f7e2d2" style="background:#f7e2d2"><span>#f7e2d2</span></button></li> <li><button type="button" title="#f5eddc" style="background:#f5eddc"><span>#f5eddc</span></button></li> <li><button type="button" title="#f5f4e0" style="background:#f5f4e0"><span>#f5f4e0</span></button></li> <li><button type="button" title="#edf2c2" style="background:#edf2c2"><span>#edf2c2</span></button></li> <li><button type="button" title="#def7e5" style="background:#def7e5"><span>#def7e5</span></button></li> <li><button type="button" title="#d9eeec" style="background:#d9eeec"><span>#d9eeec</span></button></li> <li><button type="button" title="#c9e0f0" style="background:#c9e0f0"><span>#c9e0f0</span></button></li> <li><button type="button" title="#d6d4eb" style="background:#d6d4eb"><span>#d6d4eb</span></button></li> <li><button type="button" title="#e7dbed" style="background:#e7dbed"><span>#e7dbed</span></button></li> <li><button type="button" title="#f1e2ea" style="background:#f1e2ea"><span>#f1e2ea</span></button></li> <li><button type="button" title="#acacac" style="background:#acacac"><span>#acacac</span></button></li> <li><button type="button" title="#c2c2c2" style="background:#c2c2c2"><span>#c2c2c2</span></button></li> <li><button type="button" title="#cccccc" style="background:#cccccc"><span>#cccccc</span></button></li> <li><button type="button" title="#e1e1e1" style="background:#e1e1e1"><span>#e1e1e1</span></button></li> <li><button type="button" title="#ebebeb" style="background:#ebebeb"><span>#ebebeb</span></button></li> <li><button type="button" title="#ffffff" style="background:#ffffff"><span>#ffffff</span></button></li> <li><button type="button" title="#e97d81" style="background:#e97d81"><span>#e97d81</span></button></li> <li><button type="button" title="#e19b73" style="background:#e19b73"><span>#e19b73</span></button></li> <li><button type="button" title="#d1b274" style="background:#d1b274"><span>#d1b274</span></button></li> <li><button type="button" title="#cfcca2" style="background:#cfcca2"><span>#cfcca2</span></button></li> <li><button type="button" title="#cfcca2" style="background:#cfcca2"><span>#cfcca2</span></button></li> <li><button type="button" title="#61b977" style="background:#61b977"><span>#61b977</span></button></li> <li><button type="button" title="#53aea8" style="background:#53aea8"><span>#53aea8</span></button></li> <li><button type="button" title="#518fbb" style="background:#518fbb"><span>#518fbb</span></button></li> <li><button type="button" title="#6a65bb" style="background:#6a65bb"><span>#6a65bb</span></button></li> <li><button type="button" title="#9a54ce" style="background:#9a54ce"><span>#9a54ce</span></button></li> <li><button type="button" title="#e573ae" style="background:#e573ae"><span>#e573ae</span></button></li> <li><button type="button" title="#5a504b" style="background:#5a504b"><span>#5a504b</span></button></li> <li><button type="button" title="#767b86" style="background:#767b86"><span>#767b86</span></button></li> <li><button type="button" title="#00ffff" style="background:#00ffff"><span>#00ffff</span></button></li> <li><button type="button" title="#00ff00" style="background:#00ff00"><span>#00ff00</span></button></li> <li><button type="button" title="#a0f000" style="background:#a0f000"><span>#a0f000</span></button></li> <li><button type="button" title="#ffff00" style="background:#ffff00"><span>#ffff00</span></button></li> <li><button type="button" title="#951015" style="background:#951015"><span>#951015</span></button></li> <li><button type="button" title="#6e391a" style="background:#6e391a"><span>#6e391a</span></button></li> <li><button type="button" title="#785c25" style="background:#785c25"><span>#785c25</span></button></li> <li><button type="button" title="#5f5b25" style="background:#5f5b25"><span>#5f5b25</span></button></li> <li><button type="button" title="#4c511f" style="background:#4c511f"><span>#4c511f</span></button></li> <li><button type="button" title="#1c4827" style="background:#1c4827"><span>#1c4827</span></button></li> <li><button type="button" title="#0d514c" style="background:#0d514c"><span>#0d514c</span></button></li> <li><button type="button" title="#1b496a" style="background:#1b496a"><span>#1b496a</span></button></li> <li><button type="button" title="#2b285f" style="background:#2b285f"><span>#2b285f</span></button></li> <li><button type="button" title="#45245b" style="background:#45245b"><span>#45245b</span></button></li> <li><button type="button" title="#721947" style="background:#721947"><span>#721947</span></button></li> <li><button type="button" title="#352e2c" style="background:#352e2c"><span>#352e2c</span></button></li> <li><button type="button" title="#3c3f45" style="background:#3c3f45"><span>#3c3f45</span></button></li> <li><button type="button" title="#00aaff" style="background:#00aaff"><span>#00aaff</span></button></li> <li><button type="button" title="#0000ff" style="background:#0000ff"><span>#0000ff</span></button></li> <li><button type="button" title="#a800ff" style="background:#a800ff"><span>#a800ff</span></button></li> <li><button type="button" title="#ff00ff" style="background:#ff00ff"><span>#ff00ff</span></button></li> </ul> </div> <!-- /팔레트 레이어 --> </li> <li class="bcolor xpress_xeditor_ui_bgColor"> <button type="button" title="글자의 배경색상을 지정합니다."><span>글자 배경색</span></button> <!-- 배경색 + 팔레트 레이어 --> <div class="layer xpress_xeditor_bgcolor_layer" style="display:none;"> <ul class="background"> <li><button type="button" title="#000000" style="background:#000000; color:#ffffff"><span>가나다</span></button></li> <li><button type="button" title="#9334d8" style="background:#9334d8; color:#ffffff"><span>가나다</span></button></li> <li><button type="button" title="#ff0000" style="background:#ff0000; color:#ffffff"><span>가나다</span></button></li> <li><button type="button" title="#333333" style="background:#333333; color:#ffff00"><span>가나다</span></button></li> <li><button type="button" title="#0000ff" style="background:#0000ff; color:#ffffff"><span>가나다</span></button></li> <li><button type="button" title="#ff6600" style="background:#ff6600; color:#ffffff"><span>가나다</span></button></li> <li><button type="button" title="#8e8e8e" style="background:#8e8e8e; color:#ffffff"><span>가나다</span></button></li> <li><button type="button" title="#009999" style="background:#009999; color:#ffffff"><span>가나다</span></button></li> <li><button type="button" title="#ffa700" style="background:#ffa700; color:#ffffff"><span>가나다</span></button></li> <li><button type="button" title="#ffdaed" style="background:#ffdaed; color:#000000"><span>가나다</span></button></li> <li><button type="button" title="#e4ff75" style="background:#e4ff75; color:#000000"><span>가나다</span></button></li> <li><button type="button" title="#cc9900" style="background:#cc9900; color:#ffffff"><span>가나다</span></button></li> <li><button type="button" title="#99dcff" style="background:#99dcff; color:#000000"><span>가나다</span></button></li> <li><button type="button" title="#a6ff4d" style="background:#a6ff4d; color:#000000"><span>가나다</span></button></li> <li><button type="button" title="#ffffff" style="background:#ffffff; color:#000000"><span>가나다</span></button></li> </ul> </div> <!-- /배경색 + 팔레트 레이어 --> </li> <li class="sup xpress_xeditor_ui_superscript"> <button type="button" title="위 첨자를 입력합니다."><span>위 첨자</span></button> </li> <li class="sub xpress_xeditor_ui_subscript"> <button type="button" title="아래 첨자를 입력합니다."><span>아래 첨자</span></button> </li> </ul> <ul class="paragraph"> <li class="left xpress_xeditor_ui_justifyleft"> <button type="button" title="왼쪽 정렬을 합니다."><span>왼쪽 정렬</span></button> </li> <li class="center xpress_xeditor_ui_justifycenter"> <button type="button" title="가운데 정렬을 합니다."><span>가운데 정렬</span></button> </li> <li class="right xpress_xeditor_ui_justifyright"> <button type="button" title="오른쪽 정렬을 합니다."><span>오른쪽 정렬</span></button> </li> <li class="justify xpress_xeditor_ui_justifyfull"> <button type="button" title="양쪽 정렬을 합니다."><span>양쪽 정렬</span></button> </li> <li class="ol xpress_xeditor_ui_orderedlist"> <button type="button" title="숫자로된 목록을 적용합니다."><span>번호 매기기</span></button> </li> <li class="ul xpress_xeditor_ui_unorderedlist"> <button type="button" title="기호로된 목록을 적용합니다."><span>목록</span></button> </li> <li class="outdent xpress_xeditor_ui_outdent"> <button type="button" title="Shift+Tab:단락의 들여쓰기 수준을 낮춥니다."><span>단락의 들여쓰기 수준을 낮춥니다.</span></button> </li> <li class="indent xpress_xeditor_ui_indent"> <button type="button" title="Tab:단락의 들여쓰기 수준을 높입니다."><span>들여쓰기</span></button> </li> </ul> <ul class="extra1"> <li class="blockquote xpress_xeditor_ui_quote"> <button type="button" title="인용문"><span>인용문</span></button> <!-- 인용 레이어 --> <div class="layer xpress_xeditor_blockquote_layer" style="display:none"> <ul> <li class="q1"><button type="button"><span>왼쪽 실선</span></button></li> <li class="q2"><button type="button"><span>인용 부호</span></button></li> <li class="q3"><button type="button"><span>실선</span></button></li> <li class="q4"><button type="button"><span>실선 + 배경</span></button></li> <li class="q5"><button type="button"><span>굵은 실선</span></button></li> <li class="q6"><button type="button"><span>점선</span></button></li> <li class="q7"><button type="button"><span>점선 + 배경</span></button></li> <li class="q8"><button type="button"><span>적용 취소</span></button></li> </ul> </div> <!-- /인용 레이어 --> </li> <li class="url xpress_xeditor_ui_hyperlink"> <button type="button" title="링크"><span>링크</span></button> <!-- URL 레이어 --> <div class="layer xpress_xeditor_hyperlink_layer" style="display:none;"> <fieldset> <h3>하이퍼링크</h3> <input name="" class="link" type="text" value="http://" title="URL" /> <p><input name="" id="target" type="checkbox" value="" /><label for="target">새 창으로</label></p> </fieldset> <div class="btn_area"> <button type="button" class="confirm" title="확인"><span>확인</span></button> <button type="button" class="cancel" title="취소"><span>취소</span></button> </div> </div> <!-- /URL 레이어 --> </li> <li class="character xpress_xeditor_ui_sCharacter"> <button type="button" title="특수문자"><span>특수문자</span></button> <!-- 특수문자 레이어 --> <div class="layer xpress_xeditor_sCharacter_layer" style="display:none"> <h3>특수문자 삽입</h3> <button type="button" class="close" title="특수문자 레이어 닫기"><span>특수문자 레이어 닫기</span></button> <ul class="characterNav"> <li><a href="#character1" class="on">일반기호</a></li> <li><a href="#character2">숫자와 단위</a></li> <li><a href="#character3">원, 괄호</a></li> <li><a href="#character4">한글</a></li> <li><a href="#character5">그리스,라틴어</a></li> <li><a href="#character6">일본어</a></li> </ul> <ul style="display: block;" id="character1" class="list"></ul> <ul style="display: none;" id="character2" class="list"></ul> <ul style="display: none;" id="character3" class="list"></ul> <ul style="display: none;" id="character4" class="list"></ul> <ul style="display: none;" id="character5" class="list"></ul> <ul style="display: none;" id="character6" class="list"></ul> <p> <label for="preview">선택한 기호</label> <input id="preview" name="" type="text" /> <button type="button" title=""><span></span></button> </p> <button type="button" class="close" title="특수문자 레이어 닫기"><span>특수문자 레이어 닫기</span></button> </div> <!-- /특수문자 레이어 --> </li> </ul> <ul class="table"> <li class="table xpress_xeditor_ui_table"> <button type="button" title="표"><span>표</span></button> <!-- 표 레이어 --> <div class="layer xpress_xeditor_table_layer" style="display:none;"> <fieldset class="num"> <h3>칸 수 지정</h3> <dl> <dt> <label for="row">행</label> </dt> <dd> <input id="row" name="" type="text" maxlength="2" value="4" /> <button type="button" class="add"><span>1행 추가</span></button> <button type="button" class="del"><span>1행 삭제</span></button> </dd> <dt> <label for="col">열</label> </dt> <dd> <input id="col" name="" type="text" maxlength="2" value="4" /> <button type="button" class="add"><span>1열 추가</span></button> <button type="button" class="del"><span>1열 삭제</span></button> </dd> </dl> <table border="1"> <tr> <td> </td> <td> </td> <td> </td> <td> </td> </tr> <tr> <td> </td> <td> </td> <td> </td> <td> </td> </tr> <tr> <td> </td> <td> </td> <td> </td> <td> </td> </tr> <tr> <td> </td> <td> </td> <td> </td> <td> </td> </tr> </table> </fieldset> <fieldset class="color"> <h3>표 속성 지정</h3> <dl> <dt> <label for="table_border_width">테두리 굵기</label> </dt> <dd> <input id="table_border_width" name="" type="text" maxlength="2" value="1" /> <button type="button" class="add"><span>1px 더하기</span></button> <button type="button" class="del"><span>1px 빼기</span></button> </dd> <dt> <label for="table_border_color">테두리 색</label> </dt> <dd> <span class="preview_palette"><button type="button" style="background:#cccccc;">색상 찾기</button></span> <input id="table_border_color" name="" type="text" maxlength="7" value="#CCCCCC" /> <button type="button" class="find_palette"><span>색상 찾기</span></button> </dd> <dt> <label for="table_bg_color">표 배경색</label> </dt> <dd> <span class="preview_palette"><button type="button" style="background:#000000;">색상 찾기</button></span> <input id="table_bg_color" name="" type="text" maxlength="7" value="#000000" /> <button type="button" class="find_palette"><span>색상 찾기</span></button> </dd> </dl> </fieldset> <div class="btn_area"> <button type="button" class="confirm" title=""><span></span></button> <button type="button" class="cancel" title=""><span></span></button> </div> </div> <!-- /표 레이어 --> </li> <li class="merge xpress_xeditor_ui_merge_cells"><button type="button" title="셀 병합"><span>셀 병합</span></button></li> <li class="splitCol xpress_xeditor_ui_split_col"><button type="button" title="열 분할"><span>열 분할</span></button></li> <li class="splitRow xpress_xeditor_ui_split_row"><button type="button" title="행 분할"><span>행 분할</span></button></li> </ul> <ul class="extra2"> <!-- 확장 컴포넌트 출력 --> <li class="extensions xpress_xeditor_ui_extension"> <span class="exButton"><button type="button" title="확장 컴포넌트">확장 컴포넌트</button></span> <div class="layer extension2 xpress_xeditor_extension_layer" id="editorExtension_8"> <ul id="editor_component_8" class="editorComponent"> <li><a href="#" onclick="return false;" id="component_8_emoticon">이모티콘 출력</a></li> <li><a href="#" onclick="return false;" id="component_8_image_link">이미지 추가</a></li> <li><a href="#" onclick="return false;" id="component_8_poll_maker">설문조사</a></li> <li><a href="#" onclick="return false;" id="component_8_image_gallery">이미지 갤러리</a></li> <li><a href="#" onclick="return false;" id="component_8_code_highlighter">Code Highlighter</a></li> <li><a href="#" onclick="return false;" id="component_8_photo_editor">Naver Photo Editor</a></li> </ul> </div> </li> </ul> <ul class="extra3"> <li class="html"><span><button class="xpress_xeditor_mode_toggle_button" type="button" title="HTML 편집기">HTML 편집기</button></span></li> </ul> </div> <!-- 에디터 출력 --> <div id="xe-editor-container-8" class="input_area xpress_xeditor_editing_area_container"> <textarea id="xpress-editor-8" rows="8" cols="42"></textarea> </div> <!-- /입력 --> <button type="button" class="input_control xpress_xeditor_editingArea_verticalResizer" title="입력창 크기 조절"><span>입력창 크기 조절</span></button> <span class="input_auto xpress_xeditor_ui_editorresize"><label for="editorresize"><input type="checkbox" id="editorresize">입력창 크기 자동조절</label></span> </div> <div id="fileUploader_8" class="fileUploader"><!--File upload zone--> <div class="preview " id="preview_uploaded_8"></div> <div class="fileListArea "> <select id="uploaded_file_list_8" multiple="multiple" class="fileList" title="Attached File List"><option></option></select> </div> <div class="fileUploadControl"> <button type="button" id="swfUploadButton8" class="text">파일 첨부</button> <button type="button" onclick="removeUploadedFile('8');" class="text">선택 삭제</button> <button type="button" onclick="insertUploadedFile('8');" class="text">본문 삽입</button> </div> <div class="file_attach_info" id="uploader_status_8">문서 첨부 제한 : 0Byte/ 10.00MB<br /> 파일 크기 제한 : 2.00MB (허용 확장자 : *.*)</div> </div> </div> <!-- 에디터 활성화 --> <script>//<![CDATA[ var editor_path = "./modules/editor/skins/xpresseditor/"; var auto_saved_msg = "자동 저장되었습니다."; var oEditor; jQuery(function(){ oEditor = editorStart_xe("8", "comment_srl", "content", "120", "white", "default",'\"Apple SD 산돌고딕 Neo\",\"Apple SD Gothic Neo\",\"맑은 고딕\",\"나눔 고딕\",\"굴림\",\"Gulim\",\"돋움\",\"Dotum\",\"sans-serif\"','13px'); editorUploadInit({ "editorSequence" : 8, "sessionName" : "PHPSESSID", "allowedFileSize" : "2097152", "allowedFileTypes" : "*.*", "allowedFileTypesDescription" : "*.*", "insertedFiles" : 0, "replaceButtonID" : "swfUploadButton8", "fileListAreaID" : "uploaded_file_list_8", "previewAreaID" : "preview_uploaded_8", "uploaderStatusID" : "uploader_status_8" }); }); //]]></script> <div class="write_author"> <input type="checkbox" name="notify_message" value="Y" id="notify_message" class="iCheck" /> <label for="notify_message">알림</label> </div> <div class="btnArea"> <button type="submit" class="btn">댓글 등록</button> </div> </form></div> <div class="fbFooter"> <a href="http://www.xpressengine.com/qna" class="btn">목록</a> </div> <!-- /COMMENT --> <div class="board_list" id="board_list"> <table width="100%" border="1" cellspacing="0" summary="List of Articles"> <thead> <!-- LIST HEADER --> <tr> <th scope="col"><span>번호</span></th> <th scope="col"><span>글쓴이</span></th> <th scope="col" class="title"><span>제목</span></th> <th scope="col"><span><a href="http://www.xpressengine.com/index.php?mid=qna&document_srl=22682190&sort_index=update_order&order_type=desc">최종 글</a></span></th> </tr> <!-- /LIST HEADER --> </thead> <tbody> <!-- NOTICE --> <tr class="notice"> <td class="notice"> 공지 </td> <td class="author"><a href="#popup_menu_area" class="member_21039147" onclick="return false">BJ람보</a></td> <td class="title"> <a href="http://www.xpressengine.com/qna/22638272"> <span style="font-weight:bold;">답변을 확실하게 받을 수 있는 질문글을 남길려면?</span> </a> <a href="http://www.xpressengine.com/qna/22638272#comment" class="replyNum" title="Replies"> [14] </a> </td> <td class="lastReply"> <a href="http://www.xpressengine.com/22638272#comment" title="Last Reply"> 2014.04.09 </a> <span> <sub>by</sub> 키스투엑스이 </span> </td> </tr><tr class="notice"> <td class="notice"> 공지 </td> <td class="author"><a href="#popup_menu_area" class="member_18323188" onclick="return false"><img src="http://www.xpressengine.com/./files/attach/filebox/626/768/019/19768626.gif" style="border:0;max-height:16px;vertical-align:middle;margin-right:3px" alt="XE 코어 개발" title="XE Dev. Team" />XE</a></td> <td class="title"> <a href="http://www.xpressengine.com/qna/22547110"> <span style="font-weight:bold;">글 쓰기,삭제 운영방식 변경 공지</span> </a> <a href="http://www.xpressengine.com/qna/22547110#comment" class="replyNum" title="Replies"> [12] </a> </td> <td class="lastReply"> <a href="http://www.xpressengine.com/22547110#comment" title="Last Reply"> 2014.02.07 </a> <span> <sub>by</sub> 영흥도우럭 </span> </td> </tr> <!-- /NOTICE --> <!-- LIST --> <tr> <td class="no"> » </td> <td class="author"><a href="#popup_menu_area" class="member_21857146" onclick="return false">루팡쿠팡</a></td> <td class="title"> <a href="http://www.xpressengine.com/qna/22682190">검색창에 검색어 입력하면 error_return_url= 라고 뜨는거 없애는 방법 ㅠㅠ</a> <a href="http://www.xpressengine.com/qna/22682190#comment" class="replyNum" title="Replies">[16]</a> <img src="http://www.xpressengine.com/modules/document/tpl/icons/update.gif" alt="update" title="update" style="margin-right:2px;" /> </td> <td class="lastReply"> <a href="http://www.xpressengine.com/22682190#comment" title="Last Reply"> 2014.04.15 </a> <span> <sub>by</sub> 애니즌 </span> </td> </tr><tr> <td class="no"> 108333 </td> <td class="author"><a href="#popup_menu_area" class="member_20396844" onclick="return false">verysery</a></td> <td class="title"> <a href="http://www.xpressengine.com/qna/22688727">www 도메인 인증서 문의드려요</a> <img src="http://www.xpressengine.com/modules/document/tpl/icons/new.gif" alt="new" title="new" style="margin-right:2px;" /><img src="http://www.xpressengine.com/modules/document/tpl/icons/file.gif" alt="file" title="file" style="margin-right:2px;" /> </td> <td class="lastReply"> </td> </tr><tr> <td class="no"> 108332 </td> <td class="author"><a href="#popup_menu_area" class="member_22372352" onclick="return false">제이니스</a></td> <td class="title"> <a href="http://www.xpressengine.com/qna/22688480">관리자모드에서 뜨는 팝업(레이어) 안뜨게 하려면~??</a> <a href="http://www.xpressengine.com/qna/22688480#comment" class="replyNum" title="Replies">[3]</a> <img src="http://www.xpressengine.com/modules/document/tpl/icons/new.gif" alt="new" title="new" style="margin-right:2px;" /> </td> <td class="lastReply"> <a href="http://www.xpressengine.com/22688480#comment" title="Last Reply"> 2014.04.15 </a> <span> <sub>by</sub> Double'U' </span> </td> </tr><tr> <td class="no"> 108331 </td> <td class="author"><a href="#popup_menu_area" class="member_20396844" onclick="return false">verysery</a></td> <td class="title"> <a href="http://www.xpressengine.com/qna/22688605">회원가입시 인증메일 문구 수정하는 방법을 알고 싶습니다.</a> <a href="http://www.xpressengine.com/qna/22688605#comment" class="replyNum" title="Replies">[2]</a> <img src="http://www.xpressengine.com/modules/document/tpl/icons/new.gif" alt="new" title="new" style="margin-right:2px;" /><img src="http://www.xpressengine.com/modules/document/tpl/icons/file.gif" alt="file" title="file" style="margin-right:2px;" /> </td> <td class="lastReply"> <a href="http://www.xpressengine.com/22688605#comment" title="Last Reply"> 2014.04.15 </a> <span> <sub>by</sub> verysery </span> </td> </tr><tr> <td class="no"> 108330 </td> <td class="author"><a href="#popup_menu_area" class="member_22628087" onclick="return false">putty</a></td> <td class="title"> <a href="http://www.xpressengine.com/qna/22688649">위젯을 이용해서 게시판을 나타낼때 카테고리 처리 문제가 생겼습니다.</a> <a href="http://www.xpressengine.com/qna/22688649#comment" class="replyNum" title="Replies">[3]</a> <img src="http://www.xpressengine.com/modules/document/tpl/icons/new.gif" alt="new" title="new" style="margin-right:2px;" /> </td> <td class="lastReply"> <a href="http://www.xpressengine.com/22688649#comment" title="Last Reply"> 2014.04.15 </a> <span> <sub>by</sub> putty </span> </td> </tr><tr> <td class="no"> 108329 </td> <td class="author"><a href="#popup_menu_area" class="member_17429029" onclick="return false">꿈꾸는돌</a></td> <td class="title"> <a href="http://www.xpressengine.com/qna/22688196">특정 확장변수 유무만 체크할 수 있을까요?</a> <a href="http://www.xpressengine.com/qna/22688196#comment" class="replyNum" title="Replies">[4]</a> <img src="http://www.xpressengine.com/modules/document/tpl/icons/new.gif" alt="new" title="new" style="margin-right:2px;" /> </td> <td class="lastReply"> <a href="http://www.xpressengine.com/22688196#comment" title="Last Reply"> 2014.04.15 </a> <span> <sub>by</sub> 꿈꾸는돌 </span> </td> </tr><tr> <td class="no"> 108328 </td> <td class="author"><a href="#popup_menu_area" class="member_3216753" onclick="return false">우탕카멘</a></td> <td class="title"> <a href="http://www.xpressengine.com/qna/22687071">레이아웃 헤더 스크립트 삽입 방법</a> <a href="http://www.xpressengine.com/qna/22687071#comment" class="replyNum" title="Replies">[5]</a> <img src="http://www.xpressengine.com/modules/document/tpl/icons/update.gif" alt="update" title="update" style="margin-right:2px;" /> </td> <td class="lastReply"> <a href="http://www.xpressengine.com/22687071#comment" title="Last Reply"> 2014.04.15 </a> <span> <sub>by</sub> 銀童 </span> </td> </tr><tr> <td class="no"> 108327 </td> <td class="author"><a href="#popup_menu_area" class="member_22200870" onclick="return false">안드로이더스스</a></td> <td class="title"> <a href="http://www.xpressengine.com/qna/22688016">XE 최신버전 글쓰기오류</a> <a href="http://www.xpressengine.com/qna/22688016#comment" class="replyNum" title="Replies">[1]</a> <img src="http://www.xpressengine.com/modules/document/tpl/icons/new.gif" alt="new" title="new" style="margin-right:2px;" /> </td> <td class="lastReply"> <a href="http://www.xpressengine.com/22688016#comment" title="Last Reply"> 2014.04.15 </a> <span> <sub>by</sub> 銀童 </span> </td> </tr><tr> <td class="no"> 108326 </td> <td class="author"><a href="#popup_menu_area" class="member_22618540" onclick="return false">도메인8295</a></td> <td class="title"> <a href="http://www.xpressengine.com/qna/22672769">10억짜리 홈페이지가 있나요?</a> <a href="http://www.xpressengine.com/qna/22672769#comment" class="replyNum" title="Replies">[13]</a> <img src="http://www.xpressengine.com/modules/document/tpl/icons/update.gif" alt="update" title="update" style="margin-right:2px;" /> </td> <td class="lastReply"> <a href="http://www.xpressengine.com/22672769#comment" title="Last Reply"> 2014.04.15 </a> <span> <sub>by</sub> airbogo </span> </td> </tr><tr> <td class="no"> 108325 </td> <td class="author"><a href="#popup_menu_area" class="member_22177410" onclick="return false">88번타자</a></td> <td class="title"> <a href="http://www.xpressengine.com/qna/22688552">글쓰기버튼을 눌렀을때 글쓰기가 안되네요.ㅠㅠ 오류해결쫌도와 주세요</a> <a href="http://www.xpressengine.com/qna/22688552#comment" class="replyNum" title="Replies">[2]</a> <img src="http://www.xpressengine.com/modules/document/tpl/icons/new.gif" alt="new" title="new" style="margin-right:2px;" /><img src="http://www.xpressengine.com/modules/document/tpl/icons/file.gif" alt="file" title="file" style="margin-right:2px;" /> </td> <td class="lastReply"> <a href="http://www.xpressengine.com/22688552#comment" title="Last Reply"> 2014.04.15 </a> <span> <sub>by</sub> 88번타자 </span> </td> </tr><tr> <td class="no"> 108324 </td> <td class="author"><a href="#popup_menu_area" class="member_22087416" onclick="return false">진지한남자</a></td> <td class="title"> <a href="http://www.xpressengine.com/qna/22688190">특정 그룹은 접근이 불가능하게 만드는 방법</a> <a href="http://www.xpressengine.com/qna/22688190#comment" class="replyNum" title="Replies">[1]</a> <img src="http://www.xpressengine.com/modules/document/tpl/icons/new.gif" alt="new" title="new" style="margin-right:2px;" /> </td> <td class="lastReply"> <a href="http://www.xpressengine.com/22688190#comment" title="Last Reply"> 2014.04.15 </a> <span> <sub>by</sub> 애니즌 </span> </td> </tr><tr> <td class="no"> 108323 </td> <td class="author"><a href="#popup_menu_area" class="member_18695942" onclick="return false">바가G</a></td> <td class="title"> <a href="http://www.xpressengine.com/qna/22687273">추천수 많이 받으면 공지로 자동 등록되게 할 수 있을까요?</a> <a href="http://www.xpressengine.com/qna/22687273#comment" class="replyNum" title="Replies">[9]</a> <img src="http://www.xpressengine.com/modules/document/tpl/icons/update.gif" alt="update" title="update" style="margin-right:2px;" /> </td> <td class="lastReply"> <a href="http://www.xpressengine.com/22687273#comment" title="Last Reply"> 2014.04.15 </a> <span> <sub>by</sub> 애니즌 </span> </td> </tr><tr> <td class="no"> 108322 </td> <td class="author"><a href="#popup_menu_area" class="member_20396844" onclick="return false">verysery</a></td> <td class="title"> <a href="http://www.xpressengine.com/qna/22675039">최신글 위젯 출력 문의드려요</a> <a href="http://www.xpressengine.com/qna/22675039#comment" class="replyNum" title="Replies">[2]</a> <img src="http://www.xpressengine.com/modules/document/tpl/icons/update.gif" alt="update" title="update" style="margin-right:2px;" /><img src="http://www.xpressengine.com/modules/document/tpl/icons/file.gif" alt="file" title="file" style="margin-right:2px;" /> </td> <td class="lastReply"> <a href="http://www.xpressengine.com/22675039#comment" title="Last Reply"> 2014.04.15 </a> <span> <sub>by</sub> verysery </span> </td> </tr><tr> <td class="no"> 108321 </td> <td class="author"><a href="#popup_menu_area" class="member_22538186" onclick="return false">designare0</a></td> <td class="title"> <a href="http://www.xpressengine.com/qna/22688514">익명게시판에 ip 다는 법?</a> <a href="http://www.xpressengine.com/qna/22688514#comment" class="replyNum" title="Replies">[4]</a> <img src="http://www.xpressengine.com/modules/document/tpl/icons/new.gif" alt="new" title="new" style="margin-right:2px;" /> </td> <td class="lastReply"> <a href="http://www.xpressengine.com/22688514#comment" title="Last Reply"> 2014.04.15 </a> <span> <sub>by</sub> 애니즌 </span> </td> </tr><tr> <td class="no"> 108320 </td> <td class="author"><a href="#popup_menu_area" class="member_22674379" onclick="return false">jhjhjhjhjh</a></td> <td class="title"> <a href="http://www.xpressengine.com/qna/22688390">XE core 다운로드가 안됩니다.</a> <a href="http://www.xpressengine.com/qna/22688390#comment" class="replyNum" title="Replies">[4]</a> <img src="http://www.xpressengine.com/modules/document/tpl/icons/new.gif" alt="new" title="new" style="margin-right:2px;" /> </td> <td class="lastReply"> <a href="http://www.xpressengine.com/22688390#comment" title="Last Reply"> 2014.04.15 </a> <span> <sub>by</sub> jhjhjhjhjh </span> </td> </tr><tr> <td class="no"> 108319 </td> <td class="author"><a href="#popup_menu_area" class="member_21830986" onclick="return false">zombiman</a></td> <td class="title"> <a href="http://www.xpressengine.com/qna/22688148">아무것도 모르는 상태에서 XE 개발을 하려면?</a> <a href="http://www.xpressengine.com/qna/22688148#comment" class="replyNum" title="Replies">[7]</a> <img src="http://www.xpressengine.com/modules/document/tpl/icons/new.gif" alt="new" title="new" style="margin-right:2px;" /> </td> <td class="lastReply"> <a href="http://www.xpressengine.com/22688148#comment" title="Last Reply"> 2014.04.15 </a> <span> <sub>by</sub> zombiman </span> </td> </tr><tr> <td class="no"> 108318 </td> <td class="author"><a href="#popup_menu_area" class="member_20659563" onclick="return false">포동이</a></td> <td class="title"> <a href="http://www.xpressengine.com/qna/22656885">모바일 NEW 노출시간 문의드립니다.</a> <a href="http://www.xpressengine.com/qna/22656885#comment" class="replyNum" title="Replies">[4]</a> <img src="http://www.xpressengine.com/modules/document/tpl/icons/update.gif" alt="update" title="update" style="margin-right:2px;" /> </td> <td class="lastReply"> <a href="http://www.xpressengine.com/22656885#comment" title="Last Reply"> 2014.04.15 </a> <span> <sub>by</sub> 포동이 </span> </td> </tr><tr> <td class="no"> 108317 </td> <td class="author"><a href="#popup_menu_area" class="member_3784867" onclick="return false">강태양444</a></td> <td class="title"> <a href="http://www.xpressengine.com/qna/22687958">모바일레이아웃과 관련해 질문드려요</a> <a href="http://www.xpressengine.com/qna/22687958#comment" class="replyNum" title="Replies">[4]</a> <img src="http://www.xpressengine.com/modules/document/tpl/icons/new.gif" alt="new" title="new" style="margin-right:2px;" /> </td> <td class="lastReply"> <a href="http://www.xpressengine.com/22687958#comment" title="Last Reply"> 2014.04.15 </a> <span> <sub>by</sub> 바가G </span> </td> </tr><tr> <td class="no"> 108316 </td> <td class="author"><a href="#popup_menu_area" class="member_22667261" onclick="return false">다부숴버리고싶다</a></td> <td class="title"> <a href="http://www.xpressengine.com/qna/22688294">재재재업) 최근 글 위젯 수정 방법 좀 알려주세요...</a> <a href="http://www.xpressengine.com/qna/22688294#comment" class="replyNum" title="Replies">[1]</a> <img src="http://www.xpressengine.com/modules/document/tpl/icons/new.gif" alt="new" title="new" style="margin-right:2px;" /> </td> <td class="lastReply"> <a href="http://www.xpressengine.com/22688294#comment" title="Last Reply"> 2014.04.15 </a> <span> <sub>by</sub> 다부숴버리고싶다 </span> </td> </tr><tr> <td class="no"> 108315 </td> <td class="author"><a href="#popup_menu_area" class="member_21737319" onclick="return false">designslam</a></td> <td class="title"> <a href="http://www.xpressengine.com/qna/22687471">제로보드 유료결제 서비스 모듈은 잇나요?</a> <a href="http://www.xpressengine.com/qna/22687471#comment" class="replyNum" title="Replies">[5]</a> <img src="http://www.xpressengine.com/modules/document/tpl/icons/update.gif" alt="update" title="update" style="margin-right:2px;" /> </td> <td class="lastReply"> <a href="http://www.xpressengine.com/22687471#comment" title="Last Reply"> 2014.04.15 </a> <span> <sub>by</sub> designslam </span> </td> </tr><tr> <td class="no"> 108314 </td> <td class="author"><a href="#popup_menu_area" class="member_3332725" onclick="return false">애니즌</a></td> <td class="title"> <a href="http://www.xpressengine.com/qna/22688290">애드온 설정파일을 작성할 때 <addon version=""></a> <a href="http://www.xpressengine.com/qna/22688290#comment" class="replyNum" title="Replies">[2]</a> <img src="http://www.xpressengine.com/modules/document/tpl/icons/new.gif" alt="new" title="new" style="margin-right:2px;" /> </td> <td class="lastReply"> <a href="http://www.xpressengine.com/22688290#comment" title="Last Reply"> 2014.04.15 </a> <span> <sub>by</sub> 애니즌 </span> </td> </tr><tr> <td class="no"> 108313 </td> <td class="author"><a href="#popup_menu_area" class="member_3796405" onclick="return false">6869994</a></td> <td class="title"> <a href="http://www.xpressengine.com/qna/22688137">다른 게시판의 글을 불러올 수 있나요?</a> <a href="http://www.xpressengine.com/qna/22688137#comment" class="replyNum" title="Replies">[2]</a> <img src="http://www.xpressengine.com/modules/document/tpl/icons/new.gif" alt="new" title="new" style="margin-right:2px;" /> </td> <td class="lastReply"> <a href="http://www.xpressengine.com/22688137#comment" title="Last Reply"> 2014.04.15 </a> <span> <sub>by</sub> 6869994 </span> </td> </tr><tr> <td class="no"> 108312 </td> <td class="author"><a href="#popup_menu_area" class="member_19114961" onclick="return false">퍼피죤</a></td> <td class="title"> <a href="http://www.xpressengine.com/qna/22687857">게시판 글 올릴때 자동으로 비밀글 체크 되는 문제..</a> <a href="http://www.xpressengine.com/qna/22687857#comment" class="replyNum" title="Replies">[1]</a> <img src="http://www.xpressengine.com/modules/document/tpl/icons/update.gif" alt="update" title="update" style="margin-right:2px;" /> </td> <td class="lastReply"> <a href="http://www.xpressengine.com/22687857#comment" title="Last Reply"> 2014.04.15 </a> <span> <sub>by</sub> sejin7940 </span> </td> </tr><tr> <td class="no"> 108311 </td> <td class="author"><a href="#popup_menu_area" class="member_17333474" onclick="return false">용초딩</a></td> <td class="title"> <a href="http://www.xpressengine.com/qna/22688068">최근글 상단탭 게시판이름 옆에 전체글 갯수를 넣고 싶은데</a> <a href="http://www.xpressengine.com/qna/22688068#comment" class="replyNum" title="Replies">[1]</a> <img src="http://www.xpressengine.com/modules/document/tpl/icons/new.gif" alt="new" title="new" style="margin-right:2px;" /><img src="http://www.xpressengine.com/modules/document/tpl/icons/file.gif" alt="file" title="file" style="margin-right:2px;" /> </td> <td class="lastReply"> <a href="http://www.xpressengine.com/22688068#comment" title="Last Reply"> 2014.04.15 </a> <span> <sub>by</sub> sejin7940 </span> </td> </tr><tr> <td class="no"> 108310 </td> <td class="author"><a href="#popup_menu_area" class="member_21034014" onclick="return false">냐냐냐냔</a></td> <td class="title"> <a href="http://www.xpressengine.com/qna/22688214">화면이 두번 로딩되는 현상 (배경음악이 중복됩니다)</a> <a href="http://www.xpressengine.com/qna/22688214#comment" class="replyNum" title="Replies">[2]</a> <img src="http://www.xpressengine.com/modules/document/tpl/icons/new.gif" alt="new" title="new" style="margin-right:2px;" /> </td> <td class="lastReply"> <a href="http://www.xpressengine.com/22688214#comment" title="Last Reply"> 2014.04.15 </a> <span> <sub>by</sub> 애니즌 </span> </td> </tr><tr> <td class="no"> 108309 </td> <td class="author"><a href="#popup_menu_area" class="member_22536712" onclick="return false">sulin819</a></td> <td class="title"> <a href="http://www.xpressengine.com/qna/22673464">홈페이지 만들때 xe상위폴더 자체를 빼고 만들었는데...</a> <a href="http://www.xpressengine.com/qna/22673464#comment" class="replyNum" title="Replies">[1]</a> <img src="http://www.xpressengine.com/modules/document/tpl/icons/update.gif" alt="update" title="update" style="margin-right:2px;" /> </td> <td class="lastReply"> <a href="http://www.xpressengine.com/22673464#comment" title="Last Reply"> 2014.04.15 </a> <span> <sub>by</sub> 최최최쵭 </span> </td> </tr><tr> <td class="no"> 108308 </td> <td class="author"><a href="#popup_menu_area" class="member_3353977" onclick="return false">아찌물개</a></td> <td class="title"> <a href="http://www.xpressengine.com/qna/22675550">최근 게시글 위젯 수정 아이콘이 안보입니다</a> <a href="http://www.xpressengine.com/qna/22675550#comment" class="replyNum" title="Replies">[1]</a> <img src="http://www.xpressengine.com/modules/document/tpl/icons/update.gif" alt="update" title="update" style="margin-right:2px;" /> </td> <td class="lastReply"> <a href="http://www.xpressengine.com/22675550#comment" title="Last Reply"> 2014.04.15 </a> <span> <sub>by</sub> 최최최쵭 </span> </td> </tr><tr> <td class="no"> 108307 </td> <td class="author"><a href="#popup_menu_area" class="member_16231515" onclick="return false">ⓨomin</a></td> <td class="title"> <a href="http://www.xpressengine.com/qna/22682968">주소에서 '/xe'를 없앨 수 있나요?</a> <a href="http://www.xpressengine.com/qna/22682968#comment" class="replyNum" title="Replies">[7]</a> <img src="http://www.xpressengine.com/modules/document/tpl/icons/update.gif" alt="update" title="update" style="margin-right:2px;" /> </td> <td class="lastReply"> <a href="http://www.xpressengine.com/22682968#comment" title="Last Reply"> 2014.04.15 </a> <span> <sub>by</sub> 최최최쵭 </span> </td> </tr><tr> <td class="no"> 108306 </td> <td class="author"><a href="#popup_menu_area" class="member_20599084" onclick="return false">초코파이</a></td> <td class="title"> <a href="http://www.xpressengine.com/qna/22687942">고해상도 이미지 썸네일안 생기는 현상</a> <a href="http://www.xpressengine.com/qna/22687942#comment" class="replyNum" title="Replies">[2]</a> <img src="http://www.xpressengine.com/modules/document/tpl/icons/new.gif" alt="new" title="new" style="margin-right:2px;" /> </td> <td class="lastReply"> <a href="http://www.xpressengine.com/22687942#comment" title="Last Reply"> 2014.04.15 </a> <span> <sub>by</sub> 카르마 </span> </td> </tr><tr> <td class="no"> 108305 </td> <td class="author"><a href="#popup_menu_area" class="member_16241755" onclick="return false">AcRite</a></td> <td class="title"> <a href="http://www.xpressengine.com/qna/22687895">출석부에서 설정된 포인트가 노출되질 않습니다...</a> <a href="http://www.xpressengine.com/qna/22687895#comment" class="replyNum" title="Replies">[3]</a> <img src="http://www.xpressengine.com/modules/document/tpl/icons/update.gif" alt="update" title="update" style="margin-right:2px;" /><img src="http://www.xpressengine.com/modules/document/tpl/icons/file.gif" alt="file" title="file" style="margin-right:2px;" /> </td> <td class="lastReply"> <a href="http://www.xpressengine.com/22687895#comment" title="Last Reply"> 2014.04.15 </a> <span> <sub>by</sub> AcRite </span> </td> </tr> <!-- /LIST --> </tbody> </table> </div> <div class="list_footer"> <div class="pagination"> <a href="http://www.xpressengine.com/qna" class="direction prev"><span></span><span></span> 첫 페이지</a> <strong>1</strong> <a href="http://www.xpressengine.com/index.php?mid=qna&page=2">2</a> <a href="http://www.xpressengine.com/index.php?mid=qna&page=3">3</a> <a href="http://www.xpressengine.com/index.php?mid=qna&page=4">4</a> <a href="http://www.xpressengine.com/index.php?mid=qna&page=5">5</a> <a href="http://www.xpressengine.com/index.php?mid=qna&page=6">6</a> <a href="http://www.xpressengine.com/index.php?mid=qna&page=7">7</a> <a href="http://www.xpressengine.com/index.php?mid=qna&page=8">8</a> <a href="http://www.xpressengine.com/index.php?mid=qna&page=9">9</a> <a href="http://www.xpressengine.com/index.php?mid=qna&page=10">10</a> <a href="http://www.xpressengine.com/index.php?mid=qna&page=3612" class="direction next">끝 페이지 <span></span><span></span></a> </div> <div class="btnArea"> <a href="http://www.xpressengine.com/index.php?mid=qna&act=dispBoardWrite" class="btn">쓰기</a> </div> <button type="button" class="bsToggle" title="검색">검색</button> <form action="http://www.xpressengine.com/" method="get" onsubmit="return procFilter(this, search)" id="board_search" class="board_search" ><input type="hidden" name="act" value="" /> <input type="hidden" name="vid" value="" /> <input type="hidden" name="mid" value="qna" /> <input type="hidden" name="category" value="" /> <input type="text" name="search_keyword" value="" title="검색" class="iText" /> <select name="search_target"> <option value="title">제목</option><option value="content">내용</option><option value="title_content">제목+내용</option><option value="comment">댓글</option><option value="user_name">이름</option><option value="nick_name">닉네임</option><option value="user_id">아이디</option><option value="tag">태그</option> </select> <button type="submit" class="btn" onclick="xGetElementById('board_search').submit();return false;">검색</button> </form> <a href="http://www.xpressengine.com/index.php?mid=qna&document_srl=22682190&act=dispBoardTagList" class="tagSearch" title="태그">태그</a> </div> </div> </div> </div> <hr class="hr" /> <div class="footer"> <p>Xpress Engine. Copyright NAVER Corp. All rights reserved.</p> <a href="http://www.xpressengine.com/contact">사이트 이용 문의</a> <a href="/privacy">개인정보보호취급방침</a> <a href="/communityRule">커뮤니티운영규칙</a> <a href="/zb4_main">제로보드4</a> </div> </div> <meta name="google-site-verification" content="UeZL0A6wMjjQ4_zHt6LN7x6UUtIZ6mUu0JqDSjZX7sU" /> <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-46389165-1', 'xpressengine.com'); ga('send', 'pageview'); </script><script type="text/javascript"> window.SyntaxHighlighter.autoloader( "text plain /modules/editor/components/code_highlighter/syntaxhighlighter/scripts/shBrushPlain.js", "applescript /modules/editor/components/code_highlighter/syntaxhighlighter/scripts/shBrushAppleScript.js", "actionscript3 as3 /modules/editor/components/code_highlighter/syntaxhighlighter/scripts/shBrushAS3.js", "bash shell /modules/editor/components/code_highlighter/syntaxhighlighter/scripts/shBrushBash.js", "bat cmd batch btm /modules/editor/components/code_highlighter/syntaxhighlighter/scripts/shBrushBatch.js", "coldfusion cf /modules/editor/components/code_highlighter/syntaxhighlighter/scripts/shBrushColdFusion.js", "cpp c /modules/editor/components/code_highlighter/syntaxhighlighter/scripts/shBrushCpp.js", "c# c-sharp csharp /modules/editor/components/code_highlighter/syntaxhighlighter/scripts/shBrushCSharp.js", "css /modules/editor/components/code_highlighter/syntaxhighlighter/scripts/shBrushCss.js", "delphi pascal /modules/editor/components/code_highlighter/syntaxhighlighter/scripts/shBrushDelphi.js", "diff patch pas /modules/editor/components/code_highlighter/syntaxhighlighter/scripts/shBrushDiff.js", "erl erlang /modules/editor/components/code_highlighter/syntaxhighlighter/scripts/shBrushErlang.js", "groovy /modules/editor/components/code_highlighter/syntaxhighlighter/scripts/shBrushGroovy.js", "java /modules/editor/components/code_highlighter/syntaxhighlighter/scripts/shBrushJava.js", "jfx javafx /modules/editor/components/code_highlighter/syntaxhighlighter/scripts/shBrushJavaFX.js", "js jscript javascript /modules/editor/components/code_highlighter/syntaxhighlighter/scripts/shBrushJScript.js", "perl pl /modules/editor/components/code_highlighter/syntaxhighlighter/scripts/shBrushPerl.js", "php /modules/editor/components/code_highlighter/syntaxhighlighter/scripts/shBrushPhp.js", "powershell ps /modules/editor/components/code_highlighter/syntaxhighlighter/scripts/shBrushPowerShell.js", "py python /modules/editor/components/code_highlighter/syntaxhighlighter/scripts/shBrushPython.js", "ruby rails ror rb /modules/editor/components/code_highlighter/syntaxhighlighter/scripts/shBrushRuby.js", "sass scss /modules/editor/components/code_highlighter/syntaxhighlighter/scripts/shBrushSass.js", "scala /modules/editor/components/code_highlighter/syntaxhighlighter/scripts/shBrushScala.js", "sql /modules/editor/components/code_highlighter/syntaxhighlighter/scripts/shBrushSql.js", "vb vbnet /modules/editor/components/code_highlighter/syntaxhighlighter/scripts/shBrushVb.js", "xml xhtml xslt html /modules/editor/components/code_highlighter/syntaxhighlighter/scripts/shBrushXml.js" ); window.SyntaxHighlighter.config.bloggerMode = true; window.SyntaxHighlighter.all(); </script><!-- ETC --> <div class="wfsr"></div> <script src="/files/cache/js_filter_compiled/d046d1841b9c79c545b82d3be892699d.ko.compiled.js?20140320110318"></script><script src="/files/cache/js_filter_compiled/1bdc15d63816408b99f674eb6a6ffcea.ko.compiled.js?20140320110318"></script><script src="/files/cache/js_filter_compiled/9b007ee9f2af763bb3d35e4fb16498e9.ko.compiled.js?20140320110318"></script><script src="/addons/autolink/autolink.js?20140226113633"></script><script src="/addons/oembed/jquery.oembed.js?20140320102751"></script><script src="/addons/oembed/oembed.js?20140226113633"></script><script src="/common/js/plugins/ui/jquery-ui.min.js?20140226113634"></script><script src="/common/js/plugins/ui/jquery.ui.datepicker-ko.js?20140226113634"></script><script src="/addons/resize_image/js/resize_image.js?20140226113633"></script><script src="/modules/board/skins/default/board.default.js?20140226113634"></script><script src="/layouts/xe_v3_sub/xe_v3_sub.js?20140226113634"></script></body> </html>
-
애니즌
2014.04.15 17:19
이건 XE 공홈 소스보기인데요..-_-;;
루팡님 사이트에서 소스보기를 말하는 겁니당.
위에 말씀드렸던 <form~ 부분이 제대로 수정이 되었는지 확인이 필요한 겁니다.
만일 제대로 수정되어 있다면 그 문제는 아니라는 거겠죠..(레이아웃편집관련)
-
루팡쿠팡
2014.04.15 17:26
아.. 확인해보겠습니다^^
-
루팡쿠팡
2014.04.15 17:49
해결했습니다! 감사합니다!!!!
-
루팡쿠팡
2014.04.15 17:36
어라... <form action="./" method="post"> 이렇게 바꿔줬는데요...
<form action="http://주소.com/" method="get"><input type="hidden" name="error_return_url" value="/" />
소스보기로 하면 이렇게 되있습니다;;
-
애니즌
2014.04.15 18:35
그게 레이아웃 편집에서 별도의 편집이 가해졌기 때문에
원본 layout.html 파일을 불러오지 못하는 겁니다.
따라서 레이아웃 설정 페이지 가서 해당 레이아웃의 편집 메뉴를 클릭 한 후
초기화를 눌러 초기화 시키던지
아니면 편집 메뉴에서 해당 코드를 직접 수정하던지 하셔야 합니다.
-
시니시즘
2014.04.15 13:45
정말 편법 알려드릴까요? 폼 전송하기 이전에 이걸 실행해주세요. jQuery('input[name="error_return_url"]').remove();
-
루팡쿠팡
2014.04.15 13:56
이건 제이쿼리인데 어떤 방식이죠? 안좋은 영향은 없나요?
-
시니시즘
2014.04.15 13:57
폼에서 error_return_url라는 네임값을 가진 항목을 삭제해버립니다. -
루팡쿠팡
2014.04.15 14:08
안좋은 영향은 없나요?
-
lililiillililiil
2014.04.15 17:47
질문하기전에 우선 시도해보시는게..
-
루팡쿠팡
2014.04.15 17:50
시니시즘님 해결했습니다 감사합니다!
-
루팡쿠팡
2014.04.15 17:51
저와 같은 문제가 발생하시는분들을 위해 해결 후기 후기 남깁니다.
layout.html 을 고쳐주고,
사이트 관리 화면 - 사이트 디자인 설정 html 수정에 가서 그곳에서도 또 고쳐줘야합니다.
이러면 해결될것입니다.
도와주신모든분들 정말 감사드립니다^^
-
애니즌
2014.04.15 18:32
그게 그전에 한번이라도 수정이 가해지면 layout 파일을 안읽어와서 그렇습니다.
그럼 원본 layout.html 파일을 수정해도 아무런 소용이 없게 되는 거죠..
왜냐면 레이아웃 데이터를 파일로 가져오는 것이 아니라 저장된 DB에서 빼오기 때문에..
따라서 그럴 땐 초기화 버튼을 누르면 해결됩니다. 다만 기존에 편집을 통하여 수정한 게 있다면
날라가게 되겠죠...
사실 저도 이 문제로 고생했던 적이 있는지라
여쭤봤던 겁니다~ 왜냐면 get을 post로 바꿨는데 주소에 변수들이 나올 수가 절대! 없거든요.
-
루팡쿠팡
2014.04.15 18:40
그렇군요..ㅎ
애니즌님! 진짜 딱! 마지막으로 딱! 한가지만 답변해주시와용!!!
<form action="./" method="post"><form action="{getUrl()}" method="post">차이점은 <form action= 바로 뒷 부분인데요./ 이것과 {getUrl()} 어느것이 더 쌔련된 표현이고 괜찮은것인지에 대해 너무 궁금합니다..ㅎ제가 궁금한것은 못참아서요..ㅠ -
애니즌
2014.04.15 18:42
<form action="{getUrl()}" method="post">
이걸로 하세요
./이거는 상대 경로라서 간혹 문제가 될 수 있습니다.
{getUrl()} 이것은 xe 코드로 자동으로 url을 값을 가져오는 겁니다.
결과적으로 두번째를 추천드립니다.
-
루팡쿠팡
2014.04.15 18:45
그렇군요! 감사드립니다! 애니즌님 짱!
-
시니시즘
2014.04.15 22:56
아 그 문제였군... 저도 당해본 기억이
-
애니즌
2014.04.15 23:04
알고나면 참 뭔 삽질을 했던 건지 허망하기 그지 없습니다 ㅠㅠ
동일한 방법으로 보입니다.
저런 식으로 검색 form을 찾아서 no-error-return-url="true"를 추가해 주면 되겠네요.