Merge branch 'g5'

This commit is contained in:
chicpro
2014-03-24 13:10:07 +09:00
3 changed files with 11 additions and 7 deletions

View File

@ -11,7 +11,7 @@ if (!$config['cf_icode_server_port']) $config['cf_icode_server_port'] = '7295';
if ($config['cf_icode_id'] && $config['cf_icode_pw']) if ($config['cf_icode_id'] && $config['cf_icode_pw'])
{ {
$res = get_sock("http://www.icodekorea.com/res/userinfo.php?userid=".$config['cf_icode_id']."&userpw=".$config['cf_icode_pw']); $res = get_sock("http://www.icodekorea.com/res/userinfo.php?userid=".$config['cf_icode_id']."&userpw=".$config['cf_icode_pw']);
$res = explode(';', $res); $res = explode(';', $res);
$userinfo = array( $userinfo = array(
'code' => $res[0], // 결과코드 'code' => $res[0], // 결과코드

View File

@ -1,6 +1,12 @@
@charset "utf-8"; @charset "utf-8";
/* SIR 지운아빠 */ /* SIR 지운아빠 */
/* 설치 */
#sms5_install {padding:20px 20px 0}
#sms5_install h2 {margin:0;padding:0 0 20px}
#sms5_install ol {margin:0 0 20px;padding:0 0 0 20px}
#sms5_install li {margin:0 0 10px}
/* 공통 */ /* 공통 */
.sms5_txt_success {color:blue} .sms5_txt_success {color:blue}
.sms5_txt_fail {color:red} .sms5_txt_fail {color:red}

View File

@ -31,17 +31,15 @@ if( isset($g5['sms5_config_table']) && sql_query(" DESCRIBE {$g5['sms5_config_ta
} }
?> ?>
<div class="ins_inner"> <div id="sms5_install">
<h2>SMS5 설치가 시작되었습니다.</h2>
<ol> <ol>
<li>SMS5 설치가 시작되었습니다.</li>
<li id="sms5_job_01">전체 테이블 생성중</li> <li id="sms5_job_01">전체 테이블 생성중</li>
<li id="sms5_job_02">DB설정 중</li> <li id="sms5_job_02">DB설정 중</li>
<li id="sms5_job_03"></li> <li id="sms5_job_03"></li>
</ol> </ol>
<p><input type="button" id="sms5_btn_next" disabled value="SMS 기본설정 바로가기" onclick="location.href='config.php';"></p> <p><button type="button" id="sms5_btn_next" disabled class="btn_frmline" onclick="location.href='config.php';">SMS 기본설정</button></p>
</div> </div>
<?php <?php
@ -75,7 +73,7 @@ echo "<script>document.getElementById('sms5_job_02').innerHTML='DB설정 완료'
flush(); usleep(50000); flush(); usleep(50000);
//------------------------------------------------------------------------------------------------- //-------------------------------------------------------------------------------------------------
echo "<script>document.getElementById('sms5_job_03').innerHTML='* SMS 기본 설정 변경해 주십시오.';</script>"; echo "<script>document.getElementById('sms5_job_03').innerHTML='SMS 기본 설정 변경 후 사용하세요.';</script>";
flush(); usleep(50000); flush(); usleep(50000);
?> ?>