그누보드 [G4/G5] SSL 보안인증 로그인,회원가입 적용하기
페이지 정보
본문
[ 그누보드 4 ]
조건1 : 로그인, 회원가입때만 SSL사용
조건2 : 인증주소 ==> https://www.happyjung.com:1000
(주의: https://www.happyjung.com:1000 일때와 https://www.happyjung.com:1000 은 다른 인증서임)
조건3: 그누보드4 설치 https://www.happyjung.com
1. 환경설정
그누보드4 / config.php
$g4['url'] = ""; --->(수정) $g4['url'] = "https://www.happyjung.com";
$g4['https_url'] = ""; --->(수정) $g4['https_url'] = "https://www.happyjung.com:1000";
2. 외부로그인
그누보드4 / skin / outlogin / 스킨 / outlogin.skin.1.php 에서
원본: <input type="hidden" name="url" value="<?=$url?>">
수정: <input type="hidden" name="url" value="https://www.happyjung.com<?=$_SERVER['REQUEST_URI']?>">
원본: f.action = "<?=$g4[bbs_path]?>/login_check.php";
수 정: f.action = "https://www.happyjung.com:1000/bbs/login_check.php";
3. 로그인
그누보드4 / skin / member / 스킨 / login.skin.php 에서
17라인
원본: <input type="hidden" name="url" value='<?=$url?>'>
수정: <input type="hidden" name="url" value='https://www.happyjung.com<?=$_SERVER['REQUEST_URI']?>'>
102라인
원본: echo "f.action = '$g4[https_url]/$g4[bbs]/login_check.php';";
수정: echo "f.action = 'https://www.happyjung.com:1000/bbs/login_check.php';";
4. 회원가입 (1)
그누보드4 / skin / member / 스킨 / register_form.skin.php
원본: <input type="hidden" name="url" value="<?=$urlencode?>" />
수정: <input type="hidden" name="url" value="https://www.happyjung.com<?=$_SERVER['REQUEST_URI']?>" />
원본: echo "f.action = '$g4[https_url]/$g4[bbs]/register_form_update.php';";
수정: echo "f.action = "https://www.happyjung.com:1000/bbs/register_form_update.php";";
5. 회원가입 (2)
그누보드4 / bbs / register_form_update.php
원본: goto_url("{$https_url}/register_result.php");
수정: goto_url("https://www.happyjung.com/bbs/register_result.php");
참조사이트
http://www.sir.co.kr/bbs/board.php?bo_table=g4_qa&wr_id=64682
http://www.phpschool.com/gnuboard4/bbs/board.php?bo_table=tipntech&wr_id=37061
[ 그누보드 5 ]
조건1 : 로그인, 회원가입때만 SSL사용
조건2 : 인증주소 ==> https://www.happyjung.com:1000
(주의: https://www.happyjung.com:1000 일때와 https://www.happyjung.com:1000 은 다른 인증서임)
조건3: 그누보드5 설치 https://www.happyjung.com
1. 환경설정
그누보드5 / config.php
define('G5_DOMAIN', ''); --->(수정) define('G5_DOMAIN', 'https://www.happyjung.com');
define('G5_HTTPS_DOMAIN', ''); --->(수정) define('G5_HTTPS_DOMAIN', 'https://www.happyjung.com:1000');
2. 외부로그인
3. 로그인
4. 회원가입 (1)
5. 회원가입 (2)
조건1 : 로그인, 회원가입때만 SSL사용
조건2 : 인증주소 ==> https://www.happyjung.com:1000
(주의: https://www.happyjung.com:1000 일때와 https://www.happyjung.com:1000 은 다른 인증서임)
조건3: 그누보드4 설치 https://www.happyjung.com
1. 환경설정
그누보드4 / config.php
$g4['url'] = ""; --->(수정) $g4['url'] = "https://www.happyjung.com";
$g4['https_url'] = ""; --->(수정) $g4['https_url'] = "https://www.happyjung.com:1000";
2. 외부로그인
그누보드4 / skin / outlogin / 스킨 / outlogin.skin.1.php 에서
원본: <input type="hidden" name="url" value="<?=$url?>">
수정: <input type="hidden" name="url" value="https://www.happyjung.com<?=$_SERVER['REQUEST_URI']?>">
원본: f.action = "<?=$g4[bbs_path]?>/login_check.php";
수 정: f.action = "https://www.happyjung.com:1000/bbs/login_check.php";
3. 로그인
그누보드4 / skin / member / 스킨 / login.skin.php 에서
17라인
원본: <input type="hidden" name="url" value='<?=$url?>'>
수정: <input type="hidden" name="url" value='https://www.happyjung.com<?=$_SERVER['REQUEST_URI']?>'>
102라인
원본: echo "f.action = '$g4[https_url]/$g4[bbs]/login_check.php';";
수정: echo "f.action = 'https://www.happyjung.com:1000/bbs/login_check.php';";
4. 회원가입 (1)
그누보드4 / skin / member / 스킨 / register_form.skin.php
원본: <input type="hidden" name="url" value="<?=$urlencode?>" />
수정: <input type="hidden" name="url" value="https://www.happyjung.com<?=$_SERVER['REQUEST_URI']?>" />
원본: echo "f.action = '$g4[https_url]/$g4[bbs]/register_form_update.php';";
수정: echo "f.action = "https://www.happyjung.com:1000/bbs/register_form_update.php";";
5. 회원가입 (2)
그누보드4 / bbs / register_form_update.php
원본: goto_url("{$https_url}/register_result.php");
수정: goto_url("https://www.happyjung.com/bbs/register_result.php");
참조사이트
http://www.sir.co.kr/bbs/board.php?bo_table=g4_qa&wr_id=64682
http://www.phpschool.com/gnuboard4/bbs/board.php?bo_table=tipntech&wr_id=37061
[ 그누보드 5 ]
조건1 : 로그인, 회원가입때만 SSL사용
조건2 : 인증주소 ==> https://www.happyjung.com:1000
(주의: https://www.happyjung.com:1000 일때와 https://www.happyjung.com:1000 은 다른 인증서임)
조건3: 그누보드5 설치 https://www.happyjung.com
1. 환경설정
그누보드5 / config.php
define('G5_DOMAIN', ''); --->(수정) define('G5_DOMAIN', 'https://www.happyjung.com');
define('G5_HTTPS_DOMAIN', ''); --->(수정) define('G5_HTTPS_DOMAIN', 'https://www.happyjung.com:1000');
2. 외부로그인
3. 로그인
4. 회원가입 (1)
5. 회원가입 (2)