보안관련/그누보드
정보보호진흥원에서 보안서버 구축의 공문을 받으신 고객님께서는 로그인 부분을 링크에 걸린 스킨으로 적용하시기 바랍니다.
Font_Charisma
2012. 3. 12. 17:11
정보보호진흥원에서 보안서버 구축의 공문을 받으신 고객님께서는 로그인 부분을 링크에 걸린 스킨으로 적용하시기 바랍니다.
회원가입시 보안코드 적용방법
f.submit();
위에
<?
if ($g4[https_url])
echo "f.action = '$g4[https_url]/$g4[bbs]/register_form_update.php';";
else
echo "f.action = './register_form_update.php';";
?>
f.submit();
if ($g4[https_url])
echo "f.action = '$g4[https_url]/$g4[bbs]/register_form_update.php';";
else
echo "f.action = './register_form_update.php';";
?>
f.submit();
와 같은 코드를 삽입하시기 바랍니다.
bbs/register_form_update.php 의
<html><title>회원정보수정</title><meta http-equiv='Content-Type' content='text/html; charset=$g4[charset]'></html><body>
이 코드 위에
if ($g4[https_url])
$https_url = "$g4[https_url]/$g4[bbs]";
else
$https_url = ".";
echo "
<html><title>회원정보수정</title><meta http-equiv='Content-Type' content='text/html; charset=$g4[charset]'></html><body>
$https_url = "$g4[https_url]/$g4[bbs]";
else
$https_url = ".";
echo "
<html><title>회원정보수정</title><meta http-equiv='Content-Type' content='text/html; charset=$g4[charset]'></html><body>
와 같은 코드를 삽입하시기 바랍니다.