채팅 프로그램이 그누보드 회원명단을 불러오지못합니다.ㅠ_ㅠ 채택완료
설치까진 완료하고, 현재 제 홈페이지에, tail.php에 넣어서 사용하려고 했습니다.
그런데, 아무리 설치를 해도, 회원닉네임을 자동으로 불러오지 못하면서, 자꾸 Guest만 출력됩니다. (물론, guest는 채팅불가)
원래 미니톡 만드신분 말씀을 들어보면, 그누보드에 로그인한 아이디의 닉네임을 자동으로 받아온다고 되어있더라구요...
미니톡 설명 주소 : http://www.minitalk.kr/document/example.arzz" target="_self">http://www.minitalk.kr/document/example.arzz
홈페이지 주소 : http://tf1club.speeds.kr/" target="_self" style="line-height: 1.5;">tf1club.speeds.kr
아래, 스샷과 함께 소스코드 첨부합니다. 한줄의 도움이라도 ,,,, 도와주시길 간절히 바래봅니다 ㅠ_ㅠ

tail.php 에는 다음과 같은 소스가 입혀져 있습니다.
</p><p><?</p><p>if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가 </p><p> </p><p>// 사용자 화면 우측과 하단을 담당하는 페이지입니다.</p><p>// 우측, 하단 화면을 꾸미려면 이 파일을 수정합니다.</p><p>?></p><p><span class="Apple-tab-span" style="white-space:pre"> </span></td></p><p><span class="Apple-tab-span" style="white-space:pre"> </span></tr></p><p></table></p><p> </p><p><div style='height:25px;border-bottom:1px solid #DDDDDD;'></div></p><p><div style='height:25px;border-top:1px solid #DDDDDD;'></div></p><p> </p><p><table width="<?=$table_width?>" cellpadding="0" cellspacing="0" border="0" align="center"></p><p><span class="Apple-tab-span" style="white-space:pre"> </span><tr></p><p><span class="Apple-tab-span" style="white-space:pre"> </span><td></p><p> <?php</p><p>$_MINITALK_KEY = '이부분은 제대로 넣었습니다.(비공개)';</p><p> </p><p>function MiniTalkEncoder($value) {</p><p><span class="Apple-tab-span" style="white-space:pre"> </span>global $_MINITALK_KEY;</p><p><span class="Apple-tab-span" style="white-space:pre"> </span>$padSize = 16 - (strlen($value) % 16);</p><p><span class="Apple-tab-span" style="white-space:pre"> </span>$value = $value.str_repeat(chr($padSize),$padSize);</p><p><span class="Apple-tab-span" style="white-space:pre"> </span>$output = mcrypt_encrypt(MCRYPT_RIJNDAEL_128,$_MINITALK_KEY,$value,MCRYPT_MODE_CBC,str_repeat(chr(0),16));</p><p><span class="Apple-tab-span" style="white-space:pre"> </span>return base64_encode($output);</p><p>}</p><p> </p><p>function MiniTalkDecoder($value) {</p><p><span class="Apple-tab-span" style="white-space:pre"> </span>global $_MINITALK_KEY;</p><p><span class="Apple-tab-span" style="white-space:pre"> </span>$value = base64_decode($value);</p><p><span class="Apple-tab-span" style="white-space:pre"> </span>$output = mcrypt_decrypt(MCRYPT_RIJNDAEL_128,$_MINITALK_KEY,$value,MCRYPT_MODE_CBC,str_repeat(chr(0),16));</p><p><span class="Apple-tab-span" style="white-space:pre"> </span>$valueLen = strlen($output);</p><p><span class="Apple-tab-span" style="white-space:pre"> </span>if ($valueLen % 16 > 0) $output = '';</p><p><span class="Apple-tab-span" style="white-space:pre"> </span>$padSize = ord($output{$valueLen - 1});</p><p><span class="Apple-tab-span" style="white-space:pre"> </span>if (($padSize < 1) || ($padSize > 16)) $output = '';</p><p><span class="Apple-tab-span" style="white-space:pre"> </span>for ($i=0;$i<$padSize;$i++) {</p><p><span class="Apple-tab-span" style="white-space:pre"> </span>if (ord($output{$valueLen - $i - 1}) != $padSize) $output = '';</p><p><span class="Apple-tab-span" style="white-space:pre"> </span>}</p><p><span class="Apple-tab-span" style="white-space:pre"> </span>return substr($output,0,$valueLen-$padSize);</p><p>}</p><p> </p><p>function GetOpperCode($opper) {</p><p><span class="Apple-tab-span" style="white-space:pre"> </span>$value = json_encode(array('opper'=>$opper,'ip'=>$_SERVER['REMOTE_ADDR']));</p><p><span class="Apple-tab-span" style="white-space:pre"> </span>return urlencode(MiniTalkEncoder($value));</p><p>}</p><p>?></p><p><script type="text/javascript" src="<a href="<a href="http://tf1club.speeds.kr/Minitalk/script/minitalk.js" target="_blank" rel="noopener noreferrer">http://tf1club.speeds.kr/Minitalk/script/minitalk.js</a>"><a href="http://tf1club.speeds.kr/Minitalk/script/minitalk.js" target="_blank" rel="noopener noreferrer">http://tf1club.speeds.kr/Minitalk/script/minitalk.js</a></a>" charset="UTF-8"></script></p><p><script type="text/javascript"></p><p>new Minitalk({</p><p><span class="Apple-tab-span" style="white-space:pre"> </span>channel:"tf1club",</p><p><span class="Apple-tab-span" style="white-space:pre"> </span>width:1000,</p><p><span class="Apple-tab-span" style="white-space:pre"> </span>height:300,</p><p><span class="Apple-tab-span" style="white-space:pre"> </span>skin:"default",</p><p><span class="Apple-tab-span" style="white-space:pre"> </span>type:"horizontal",</p><p><span class="Apple-tab-span" style="white-space:pre"> </span>viewUser:true,</p><p><span class="Apple-tab-span" style="white-space:pre"> </span>viewStatusIcon:true,</p><p><span class="Apple-tab-span" style="white-space:pre"> </span>toolType:"icon",</p><p><span class="Apple-tab-span" style="white-space:pre"> </span>language:"ko",</p><p><span class="Apple-tab-span" style="white-space:pre"> </span>encode:"UTF-8",</p><p><span class="Apple-tab-span" style="white-space:pre"> </span>viewAlert:true,</p><p><span class="Apple-tab-span" style="white-space:pre"> </span>viewAlertLimit:"MEMBER",</p><p><span class="Apple-tab-span" style="white-space:pre"> </span>nickname:"<?php echo $nickname; // 고정닉네임을 줄경우 $nickname 변수에 고정닉네임설정; ?>",</p><p><span class="Apple-tab-span" style="white-space:pre"> </span><?php if ($isAdmin == true) { // 관리자권한을 줘야하는경우, $isAdmin 변수에 true 설정 ?></p><p><span class="Apple-tab-span" style="white-space:pre"> </span>opperCode:"<?php echo GetOpperCode('ADMIN'); ?>",</p><p><span class="Apple-tab-span" style="white-space:pre"> </span><?php } elseif ($isPowerUser == true) { // 파워유저권한을 줘야하는경우, $isPowerUser 변수에 true 설정 ?></p><p><span class="Apple-tab-span" style="white-space:pre"> </span>opperCode:"<?php echo GetOpperCode('POWERUSER'); ?>",</p><p><span class="Apple-tab-span" style="white-space:pre"> </span><?php } elseif ($isMember == true) { // 회원권한을 줘야하는경우, $isMember 변수에 true 설정 ?></p><p><span class="Apple-tab-span" style="white-space:pre"> </span>opperCode:"<?php echo GetOpperCode('MEMBER'); ?>",</p><p><span class="Apple-tab-span" style="white-space:pre"> </span><?php } ?></p><p><span class="Apple-tab-span" style="white-space:pre"> </span>logLimit:30</p><p>});</p><p></script></p><p><span class="Apple-tab-span" style="white-space:pre"> </span><!-- 카피라이트 시작 --></p><p><span class="Apple-tab-span" style="white-space:pre"> </span><table width="100%" border="0" cellspacing="0" cellpadding="0"></p><p><span class="Apple-tab-span" style="white-space:pre"> </span><tr></p><p><span class="Apple-tab-span" style="white-space:pre"> </span><td height="20">© 2013-2014 Mesiana_KoR / cafe.naver.com/tunngleandf1 All rights reserved.</td></p><p><span class="Apple-tab-span" style="white-space:pre"> </span></tr></p><p><span class="Apple-tab-span" style="white-space:pre"> </span><tr></p><p><span class="Apple-tab-span" style="white-space:pre"> </span><td height="20">대표 : Mesiana_KOR Staff : Speedy Slowly, C.Sortem, YHkim KOR, ISAC Vincente, Gray Dino</td></p><p><span class="Apple-tab-span" style="white-space:pre"> </span></tr></p><p><span class="Apple-tab-span" style="white-space:pre"> </span><tr></p><p><span class="Apple-tab-span" style="white-space:pre"> </span><td height="20">Copyright © 감기약. All rights reserved.</td></p><p><span class="Apple-tab-span" style="white-space:pre"> </span></tr></p><p><span class="Apple-tab-span" style="white-space:pre"> </span></table></p><p><span class="Apple-tab-span" style="white-space:pre"> </span><!-- 카피라이트 끝 --></p><p><span class="Apple-tab-span" style="white-space:pre"> </span></td></p><p><span class="Apple-tab-span" style="white-space:pre"> </span></tr></p><p></table></p><p> </p><p><?</p><p>include_once("$g4[path]/tail.sub.php");</p><p>?> </p><p>
아, 그리고 홈페이지 API문서에 보니깐, 다음과 같은 글이 있던데,,, 설마 이부분을 적용하지 않아서 그런걸까요?
</p><p><code class="js keyword" style="white-space: pre; line-height: 1.1em !important; margin: 0px !important; padding: 0px !important; border-top-left-radius: 0px !important; border-top-right-radius: 0px !important; border-bottom-right-radius: 0px !important; border-bottom-left-radius: 0px !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; outline: 0px !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace, dotum !important; font-weight: bold !important; min-height: inherit !important; color: rgb(0, 102, 153) !important; background-image: none !important; background-attachment: initial !important; background-size: initial !important; background-origin: initial !important; background-clip: initial !important; background-position: initial !important; background-repeat: initial !important;">new</code><span style="font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace, dotum; line-height: 13.199999809265137px; white-space: pre; background-color: white;"> </span><code class="js plain" style="white-space: pre; line-height: 1.1em !important; margin: 0px !important; padding: 0px !important; border-top-left-radius: 0px !important; border-top-right-radius: 0px !important; border-bottom-right-radius: 0px !important; border-bottom-left-radius: 0px !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; outline: 0px !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace, dotum !important; min-height: inherit !important; background-image: none !important; background-attachment: initial !important; background-size: initial !important; background-origin: initial !important; background-clip: initial !important; background-position: initial !important; background-repeat: initial !important;">Minitalk({</code></p><div class="line number2 index1 alt1" style="line-height: 13.199999809265137px; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace, dotum; margin: 0px !important; padding: 0px 1em !important; border-top-left-radius: 0px !important; border-top-right-radius: 0px !important; border-bottom-right-radius: 0px !important; border-bottom-left-radius: 0px !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; outline: 0px !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; min-height: inherit !important; white-space: pre !important; background: none white !important;"><code class="js spaces" style="margin: 0px !important; padding: 0px !important; line-height: 1.1em !important; border-top-left-radius: 0px !important; border-top-right-radius: 0px !important; border-bottom-right-radius: 0px !important; border-bottom-left-radius: 0px !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; outline: 0px !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace, dotum !important; min-height: inherit !important; background: none !important;"> </code><code class="js plain" style="margin: 0px !important; padding: 0px !important; line-height: 1.1em !important; border-top-left-radius: 0px !important; border-top-right-radius: 0px !important; border-bottom-right-radius: 0px !important; border-bottom-left-radius: 0px !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; outline: 0px !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace, dotum !important; min-height: inherit !important; background: none !important;">nickname:</code><code class="js string" style="margin: 0px !important; padding: 0px !important; line-height: 1.1em !important; border-top-left-radius: 0px !important; border-top-right-radius: 0px !important; border-bottom-right-radius: 0px !important; border-bottom-left-radius: 0px !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; outline: 0px !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace, dotum !important; min-height: inherit !important; color: blue !important; background: none !important;">"<?php echo $member['nickname']; ?>"</code><code class="js plain" style="margin: 0px !important; padding: 0px !important; line-height: 1.1em !important; border-top-left-radius: 0px !important; border-top-right-radius: 0px !important; border-bottom-right-radius: 0px !important; border-bottom-left-radius: 0px !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; outline: 0px !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace, dotum !important; min-height: inherit !important; background: none !important;">,</code></div><div class="line number3 index2 alt2" style="line-height: 13.199999809265137px; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace, dotum; margin: 0px !important; padding: 0px 1em !important; border-top-left-radius: 0px !important; border-top-right-radius: 0px !important; border-bottom-right-radius: 0px !important; border-bottom-left-radius: 0px !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; outline: 0px !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; min-height: inherit !important; white-space: pre !important; background: none white !important;"><code class="js spaces" style="margin: 0px !important; padding: 0px !important; line-height: 1.1em !important; border-top-left-radius: 0px !important; border-top-right-radius: 0px !important; border-bottom-right-radius: 0px !important; border-bottom-left-radius: 0px !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; outline: 0px !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace, dotum !important; min-height: inherit !important; background: none !important;"> </code><code class="js plain" style="margin: 0px !important; padding: 0px !important; line-height: 1.1em !important; border-top-left-radius: 0px !important; border-top-right-radius: 0px !important; border-bottom-right-radius: 0px !important; border-bottom-left-radius: 0px !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; outline: 0px !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace, dotum !important; min-height: inherit !important; background: none !important;">nickcon:</code><code class="js string" style="margin: 0px !important; padding: 0px !important; line-height: 1.1em !important; border-top-left-radius: 0px !important; border-top-right-radius: 0px !important; border-bottom-right-radius: 0px !important; border-bottom-left-radius: 0px !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; outline: 0px !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace, dotum !important; min-height: inherit !important; color: blue !important; background: none !important;">"<a href="<a href="http://www.yourdomain.com/" target="_blank" rel="noopener noreferrer">http://www.yourdomain.com/</a>" style="margin: 0px !important; padding: 0px !important; line-height: 1.1em !important; border-top-left-radius: 0px !important; border-top-right-radius: 0px !important; border-bottom-right-radius: 0px !important; border-bottom-left-radius: 0px !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; outline: 0px !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; min-height: inherit !important; color: blue !important; background: none !important;"><a href="http://www.yourdomain.com/" target="_blank" rel="noopener noreferrer">http://www.yourdomain.com/</a></a><?php echo $member['user_id']; ?>.gif"</code><code class="js plain" style="margin: 0px !important; padding: 0px !important; line-height: 1.1em !important; border-top-left-radius: 0px !important; border-top-right-radius: 0px !important; border-bottom-right-radius: 0px !important; border-bottom-left-radius: 0px !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; outline: 0px !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace, dotum !important; min-height: inherit !important; background: none !important;">,</code></div><div class="line number4 index3 alt1" style="line-height: 13.199999809265137px; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace, dotum; margin: 0px !important; padding: 0px 1em !important; border-top-left-radius: 0px !important; border-top-right-radius: 0px !important; border-bottom-right-radius: 0px !important; border-bottom-left-radius: 0px !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; outline: 0px !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; min-height: inherit !important; white-space: pre !important; background: none white !important;"><code class="js spaces" style="margin: 0px !important; padding: 0px !important; line-height: 1.1em !important; border-top-left-radius: 0px !important; border-top-right-radius: 0px !important; border-bottom-right-radius: 0px !important; border-bottom-left-radius: 0px !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; outline: 0px !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace, dotum !important; min-height: inherit !important; background: none !important;"> </code><code class="js comments" style="margin: 0px !important; padding: 0px !important; line-height: 1.1em !important; border-top-left-radius: 0px !important; border-top-right-radius: 0px !important; border-bottom-right-radius: 0px !important; border-bottom-left-radius: 0px !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; outline: 0px !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace, dotum !important; min-height: inherit !important; color: rgb(0, 130, 0) !important; background: none !important;">// 이하 생략</code></div><p><span style="font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace, dotum; line-height: 1.1em; white-space: pre;">});</span> </p><p>
혹시나 해서, 스스로 넣어보았습니다. ... 그러니 아예 채팅창이 뜨질않네요;;
nickon 때문인가 싶어서, nickon도 떼어서 적용했는데 동일한 증상입니다. 무언가 잘못해서 안뜨는거같기도하고..
막막할 따름입니다 ㅠ_ㅠ;
답변 2개
답변에 대한 댓글 1개
댓글을 작성하려면 로그인이 필요합니다.
<script type="text/javascript"></p><p>new Minitalk({</p><p><span class="Apple-tab-span" style="white-space:pre"> </span>channel:"tf1club",</p><p><span class="Apple-tab-span" style="white-space:pre"> </span>width:1000,</p><p><span class="Apple-tab-span" style="white-space:pre"> </span>height:300,</p><p><span class="Apple-tab-span" style="white-space:pre"> </span>skin:"default",</p><p><span class="Apple-tab-span" style="white-space:pre"> </span>type:"horizontal",</p><p><span class="Apple-tab-span" style="white-space:pre"> </span>viewUser:true,</p><p><span class="Apple-tab-span" style="white-space:pre"> </span>viewStatusIcon:true,</p><p><span class="Apple-tab-span" style="white-space:pre"> </span>toolType:"icon",</p><p><span class="Apple-tab-span" style="white-space:pre"> </span>language:"ko",</p><p><span class="Apple-tab-span" style="white-space:pre"> </span>encode:"UTF-8",</p><p><span class="Apple-tab-span" style="white-space:pre"> </span>viewAlert:true,</p><p><span class="Apple-tab-span" style="white-space:pre"> </span>viewAlertLimit:"MEMBER",</p><p><span class="Apple-tab-span" style="white-space:pre"> </span>nickname:"<?php echo $member['mb_nick']; // 고정닉네임을 줄경우 $nickname 변수에 고정닉네임설정; ?>",</p><p><span class="Apple-tab-span" style="white-space:pre"> </span><?php if ($isAdmin == true) { // 관리자권한을 줘야하는경우, $isAdmin 변수에 true 설정 ?></p><p><span class="Apple-tab-span" style="white-space:pre"> </span>opperCode:"<?php echo GetOpperCode('ADMIN'); ?>",</p><p><span class="Apple-tab-span" style="white-space:pre"> </span><?php } elseif ($isPowerUser == true) { // 파워유저권한을 줘야하는경우, $isPowerUser 변수에 true 설정 ?></p><p><span class="Apple-tab-span" style="white-space:pre"> </span>opperCode:"<?php echo GetOpperCode('POWERUSER'); ?>",</p><p><span class="Apple-tab-span" style="white-space:pre"> </span><?php } elseif ($member['mb_id'] != null) { // 회원권한을 줘야하는경우, $isMember 변수에 true 설정 ?></p><p><span class="Apple-tab-span" style="white-space:pre"> </span>opperCode:"<?php echo GetOpperCode('MEMBER'); ?>",</p><p><span class="Apple-tab-span" style="white-space:pre"> </span><?php } ?></p><p><span class="Apple-tab-span" style="white-space:pre"> </span>logLimit:30</p><p>});</p><p></script></p><p>});<span style="line-height: 1.5;">
이렇게 수정해 보시기 바랍니다.
댓글을 작성하려면 로그인이 필요합니다.
답변을 작성하려면 로그인이 필요합니다.
로그인