네이버/카카오톡 로그인을 하려고 수정중인데요...
뭘 잘못만졌는지.. 홈페이지 기본환경 설정값 전체가 변경이 안됩니다ㅠㅠ
config_form.php에 다음 내용 추가..
<!-- 네이버 로그인 필드 START -->
<tr>
<th scope="row"><label for="naver_client_id">naver_client_id</label></th>
<td>
<input type="text" name="naver_client_id" value="<?php echo $config['naver_client_id'] ?>" id="naver_client_id" class="frm_input"> <a href="http://developer.naver.com" target="_blank" class="btn_frmline">등록하기</a>
</td>
<th scope="row"><label for="naver_secret_key">naver_secret_key</label></th>
<td>
<input type="text" name="naver_secret_key" value="<?php echo $config['naver_secret_key'] ?>" id="naver_secret_key" class="frm_input"> <a href="http://developer.naver.com" target="_blank" class="btn_frmline">등록하기</a>
</td>
</tr>
<!-- 네이버 로그인 필드 END -->
<!-- 카카오 로그인 필드 START -->
<tr>
<th scope="row"><label for="cf_kakao_js_apikey">카카오 REST API key</label></th>
<td colspan="3">
<input type="text" name="cf_kakao_rest_apikey" value="<?php echo $config['cf_kakao_rest_apikey'] ?>" id="cf_kakao_rest_apikey" class="frm_input"> <a href="http://developers.kakao.com/" target="_blank" class="btn_frmline">앱 등록하기</a>
</td>
</tr>
<!-- 카카오 로그인 필드 END -->
config_form_update.php에서 다음 내용 추가
cf_10 = '{$_POST['cf_10']}'
cf_kakao_rest_apikey = '{$_POST['cf_kakao_rest_apikey']}',
naver_client_id = '{$_POST['naver_client_id']}',
naver_secret_key = '{$_POST['naver_secret_key']}'
";
sql_query($sql);
db에서 cf_kakao_rest_apikey, naver_client_id, naver_secret_key 추가...
login.skin.php 에는 다음 내용 추가
<a onclick="window.open('http://aroos.cafe24.com/plugin/sns_plugin/naver/login.php','naverlogin','height=645,width=480,menubar=no,toolbar=no,resizable=no,scrollbars=no,top=300,left=700');"><img src="http://aroos.cafe24.com/plugin/sns_plugin/naver/img/naver_login.png" width="120" /></a>
<a onclick="window.open('http://aroos.cafe24.com/plugin/sns_plugin/kakao/login.php','kakaologin','height=645,width=480,menubar=no,toolbar=no,resizable=no,scrollbars=no,top=300,left=700');"><img src="http://aroos.cafe24.com/plugin/sns_plugin/kakao/img/kakao_account_login_btn.png" width="150" /></a>
그랬는데...홈페이지 기본환경 설정/SNS설정에서 naver_client_id 등 값이 저장 안되길래 이것저것 값을 변경해보니, 기본환경 전체 변수 값이 저장이 안되네요...ㅠㅠ 무엇이 잘못되었는지 모르겠어요...
답변 1개 / 댓글 1개
cf_10 = '{$_POST['cf_10']}',
끝에 콤마 추가
답변에 대한 댓글 1개
답변을 작성하려면 로그인이 필요합니다.
그런데, 네이버아이디/카카오계정 로그인은 에러가 뜹니다..ㅠㅠ