install_config 수정방법
본문
제가 그누보드5를 처음으로 이용해봅니다.
그런데 설치 중간에 data/dbconfig.php 오류 관련해서 질문 글을 올렸습니다. 어떤 분께서 install_config.php 에 라이센스 동의부분을 주석처리하고, db정보를 입력하라고 답변해주셨는데 제가 어디부분을 주석처리하고, 어디에 정보를 입력해야 할지 모르겠네요... 답변 부탁드립니다!
<?php
$gmnow = gmdate('D, d M Y H:i:s').' GMT';
header('Expires: 0'); // rfc2616 - Section 14.21
header('Last-Modified: ' . $gmnow);
header('Cache-Control: no-store, no-cache, must-revalidate'); // HTTP/1.1
header('Cache-Control: pre-check=0, post-check=0, max-age=0'); // HTTP/1.1
header('Pragma: no-cache'); // HTTP/1.0
include_once ('../config.php');
$title = G5_VERSION." 초기환경설정 2/3";
include_once ('./install.inc.php');
if (!isset($_POST['agree']) || $_POST['agree'] != '동의함') {
echo "<div class=\"ins_inner\"><p>라이센스(License) 내용에 동의하셔야 설치를 계속하실 수 있습니다.</p>".PHP_EOL;
echo "<div class=\"inner_btn\"><a href=\"./\">뒤로가기</a></div></div>".PHP_EOL;
exit;
}
?>
<form id="frm_install" method="post" action="./install_db.php" autocomplete="off" onsubmit="return frm_install_submit(this)">
<div class="ins_inner">
<table class="ins_frm">
<caption>MySQL 정보입력</caption>
<colgroup>
<col style="width:150px">
<col>
</colgroup>
<tbody>
<tr>
<th scope="row"><label for="mysql_host">Host</label></th>
<td>
<input name="mysql_host" type="text" value="localhost" id="mysql_host">
</td>
</tr>
<tr>
<th scope="row"><label for="mysql_user">User</label></th>
<td>
<input name="mysql_user" type="text" id="mysql_user">
</td>
</tr>
<tr>
<th scope="row"><label for="mysql_pass">Password</label></th>
<td>
<input name="mysql_pass" type="text" id="mysql_pass">
</td>
</tr>
<tr>
<th scope="row"><label for="mysql_db">DB</label></th>
<td>
<input name="mysql_db" type="text" id="mysql_db">
</td>
</tr>
<tr>
<th scope="row"><label for="table_prefix">TABLE명 접두사</label></th>
<td>
<input name="table_prefix" type="text" value="g5_" id="table_prefix">
<span>가능한 변경하지 마십시오.</span>
</td>
</tr>
</tbody>
</table>
<table class="ins_frm">
<caption>최고관리자 정보입력</caption>
<colgroup>
<col style="width:150px">
<col>
</colgroup>
<tbody>
<tr>
<th scope="row"><label for="admin_id">회원 ID</label></th>
<td>
<input name="admin_id" type="text" value="admin" id="admin_id">
</td>
</tr>
<tr>
<th scope="row"><label for="admin_pass">비밀번호</label></th>
<td>
<input name="admin_pass" type="text" id="admin_pass">
</td>
</tr>
<tr>
<th scope="row"><label for="admin_name">이름</label></th>
<td>
<input name="admin_name" type="text" value="최고관리자" id="admin_name">
</td>
</tr>
<tr>
<th scope="row"><label for="admin_email">E-mail</label></th>
<td>
<input name="admin_email" type="text" value="*** 개인정보보호를 위한 이메일주소 노출방지 ***" id="admin_email">
</td>
</tr>
</tbody>
</table>
<p>
<strong class="st_strong">주의! 이미 <?php echo G5_VERSION ?>가 존재한다면 DB 자료가 망실되므로 주의하십시오.</strong><br>
주의사항을 이해했으며, 그누보드 설치를 계속 진행하시려면 다음을 누르십시오.
</p>
<div class="inner_btn">
<input type="submit" value="다음">
</div>
</div>
<script>
function frm_install_submit(f)
{
if (f.mysql_host.value == '')
{
alert('MySQL Host 를 입력하십시오.'); f.mysql_host.focus(); return false;
}
else if (f.mysql_user.value == '')
{
alert('MySQL User 를 입력하십시오.'); f.mysql_user.focus(); return false;
}
else if (f.mysql_db.value == '')
{
alert('MySQL DB 를 입력하십시오.'); f.mysql_db.focus(); return false;
}
else if (f.admin_id.value == '')
{
alert('최고관리자 ID 를 입력하십시오.'); f.admin_id.focus(); return false;
}
else if (f.admin_pass.value == '')
{
alert('최고관리자 비밀번호를 입력하십시오.'); f.admin_pass.focus(); return false;
}
else if (f.admin_name.value == '')
{
alert('최고관리자 이름을 입력하십시오.'); f.admin_name.focus(); return false;
}
else if (f.admin_email.value == '')
{
alert('최고관리자 E-mail 을 입력하십시오.'); f.admin_email.focus(); return false;
}
if(/^[a-z][a-z0-9]/i.test(f.admin_id.value) == false) {
alert('최고관리자 회원 ID는 첫자는 반드시 영문자 그리고 영문자와 숫자로만 만드셔야 합니다.');
f.admin_id.focus();
return false;
}
return true;
}
</script>
<?php
include_once ('./install.inc2.php');
?>
그런데 설치 중간에 data/dbconfig.php 오류 관련해서 질문 글을 올렸습니다. 어떤 분께서 install_config.php 에 라이센스 동의부분을 주석처리하고, db정보를 입력하라고 답변해주셨는데 제가 어디부분을 주석처리하고, 어디에 정보를 입력해야 할지 모르겠네요... 답변 부탁드립니다!
<?php
$gmnow = gmdate('D, d M Y H:i:s').' GMT';
header('Expires: 0'); // rfc2616 - Section 14.21
header('Last-Modified: ' . $gmnow);
header('Cache-Control: no-store, no-cache, must-revalidate'); // HTTP/1.1
header('Cache-Control: pre-check=0, post-check=0, max-age=0'); // HTTP/1.1
header('Pragma: no-cache'); // HTTP/1.0
include_once ('../config.php');
$title = G5_VERSION." 초기환경설정 2/3";
include_once ('./install.inc.php');
if (!isset($_POST['agree']) || $_POST['agree'] != '동의함') {
echo "<div class=\"ins_inner\"><p>라이센스(License) 내용에 동의하셔야 설치를 계속하실 수 있습니다.</p>".PHP_EOL;
echo "<div class=\"inner_btn\"><a href=\"./\">뒤로가기</a></div></div>".PHP_EOL;
exit;
}
?>
<form id="frm_install" method="post" action="./install_db.php" autocomplete="off" onsubmit="return frm_install_submit(this)">
<div class="ins_inner">
<table class="ins_frm">
<caption>MySQL 정보입력</caption>
<colgroup>
<col style="width:150px">
<col>
</colgroup>
<tbody>
<tr>
<th scope="row"><label for="mysql_host">Host</label></th>
<td>
<input name="mysql_host" type="text" value="localhost" id="mysql_host">
</td>
</tr>
<tr>
<th scope="row"><label for="mysql_user">User</label></th>
<td>
<input name="mysql_user" type="text" id="mysql_user">
</td>
</tr>
<tr>
<th scope="row"><label for="mysql_pass">Password</label></th>
<td>
<input name="mysql_pass" type="text" id="mysql_pass">
</td>
</tr>
<tr>
<th scope="row"><label for="mysql_db">DB</label></th>
<td>
<input name="mysql_db" type="text" id="mysql_db">
</td>
</tr>
<tr>
<th scope="row"><label for="table_prefix">TABLE명 접두사</label></th>
<td>
<input name="table_prefix" type="text" value="g5_" id="table_prefix">
<span>가능한 변경하지 마십시오.</span>
</td>
</tr>
</tbody>
</table>
<table class="ins_frm">
<caption>최고관리자 정보입력</caption>
<colgroup>
<col style="width:150px">
<col>
</colgroup>
<tbody>
<tr>
<th scope="row"><label for="admin_id">회원 ID</label></th>
<td>
<input name="admin_id" type="text" value="admin" id="admin_id">
</td>
</tr>
<tr>
<th scope="row"><label for="admin_pass">비밀번호</label></th>
<td>
<input name="admin_pass" type="text" id="admin_pass">
</td>
</tr>
<tr>
<th scope="row"><label for="admin_name">이름</label></th>
<td>
<input name="admin_name" type="text" value="최고관리자" id="admin_name">
</td>
</tr>
<tr>
<th scope="row"><label for="admin_email">E-mail</label></th>
<td>
<input name="admin_email" type="text" value="*** 개인정보보호를 위한 이메일주소 노출방지 ***" id="admin_email">
</td>
</tr>
</tbody>
</table>
<p>
<strong class="st_strong">주의! 이미 <?php echo G5_VERSION ?>가 존재한다면 DB 자료가 망실되므로 주의하십시오.</strong><br>
주의사항을 이해했으며, 그누보드 설치를 계속 진행하시려면 다음을 누르십시오.
</p>
<div class="inner_btn">
<input type="submit" value="다음">
</div>
</div>
<script>
function frm_install_submit(f)
{
if (f.mysql_host.value == '')
{
alert('MySQL Host 를 입력하십시오.'); f.mysql_host.focus(); return false;
}
else if (f.mysql_user.value == '')
{
alert('MySQL User 를 입력하십시오.'); f.mysql_user.focus(); return false;
}
else if (f.mysql_db.value == '')
{
alert('MySQL DB 를 입력하십시오.'); f.mysql_db.focus(); return false;
}
else if (f.admin_id.value == '')
{
alert('최고관리자 ID 를 입력하십시오.'); f.admin_id.focus(); return false;
}
else if (f.admin_pass.value == '')
{
alert('최고관리자 비밀번호를 입력하십시오.'); f.admin_pass.focus(); return false;
}
else if (f.admin_name.value == '')
{
alert('최고관리자 이름을 입력하십시오.'); f.admin_name.focus(); return false;
}
else if (f.admin_email.value == '')
{
alert('최고관리자 E-mail 을 입력하십시오.'); f.admin_email.focus(); return false;
}
if(/^[a-z][a-z0-9]/i.test(f.admin_id.value) == false) {
alert('최고관리자 회원 ID는 첫자는 반드시 영문자 그리고 영문자와 숫자로만 만드셔야 합니다.');
f.admin_id.focus();
return false;
}
return true;
}
</script>
<?php
include_once ('./install.inc2.php');
?>
답변을 작성하시기 전에 로그인 해주세요.