Merge branch 'master' of github.com:gnuboard/g4s

This commit is contained in:
chicpro
2013-03-07 18:22:32 +09:00
4 changed files with 96 additions and 29 deletions

View File

@ -104,9 +104,35 @@ if (file_exists($dbconfig_file)) {
$select_db = sql_select_db(G4_MYSQL_DB, $connect_db) or die('MySQL DB Error!!!');
@mysql_query(" set names utf8 ");
} else {
echo "<meta http-equiv='content-type' content='text/html; charset=utf-8'>";
echo "<h3>$dbconfig_file 파일을 찾을 수 없습니다.<br>프로그램 설치 후 실행하시기 바랍니다.</h3>";
echo '<a href="'.G4_URL.'/install/">그누보드4S 설치하기</a>';
?>
<!doctype html>
<html lang="ko">
<head>
<meta charset="utf-8">
<title>오류! 그누보드4S 설치하기</title>
<style>
body {background:#f7f7f2}
h1 {margin:50px auto 30px;width:540px;color:#ff3061;font-size:1.4em}
div {margin:0 auto;padding:20px;width:500px;border:1px solid #eee;background:#fff}
div p {line-height:1.5em}
div a {display:block;margin:50px auto 10px;width:170px;text-align:center}
</style>
</head>
<body>
<h1>오류가 있습니다.</h1>
<div>
<p>다음 파일을 찾을 수 없습니다.</p>
<ul>
<li><strong><?=$dbconfig_file?></strong></li>
</ul>
<p>프로그램 설치 후 실행하시기 바랍니다.</p>
<a href="<?=G4_URL?>/install/">그누보드4S 설치하기</a>
</div>
</body>
</html>
<?
exit;
}
//==============================================================================

View File

@ -73,6 +73,11 @@ CREATE TABLE IF NOT EXISTS `g4s_board` (
`bo_content_tail` text NOT NULL,
`bo_insert_content` text NOT NULL,
`bo_gallery_cols` int(11) NOT NULL default '0',
`bo_gallery_width` int(11) NOT NULL default '0',
`bo_gallery_height` int(11) NOT NULL default '0',
`bo_mobile_gallery_cols` int(11) NOT NULL default '0',
`bo_mobile_gallery_width` int(11) NOT NULL default '0',
`bo_mobile_gallery_height` int(11) NOT NULL default '0',
`bo_upload_size` int(11) NOT NULL default '0',
`bo_reply_order` tinyint(4) NOT NULL default '0',
`bo_use_search` tinyint(4) NOT NULL default '0',
@ -184,9 +189,6 @@ CREATE TABLE IF NOT EXISTS `g4s_config` (
`cf_include_head` varchar(255) NOT NULL default '',
`cf_include_tail` varchar(255) NOT NULL default '',
`cf_add_script` text NOT NULL default '',
`cf_include_head` varchar(255) NOT NULL default '',
`cf_include_tail` varchar(255) NOT NULL default '',
`cf_add_script` text NOT NULL default '',
`cf_use_point` tinyint(4) NOT NULL default '0',
`cf_use_norobot` tinyint(4) NOT NULL default '0',
`cf_use_copy_log` tinyint(4) NOT NULL default '0',

View File

@ -1,25 +1,28 @@
<?
$title = "그누보드4S 설치 3단계 중 1단계 라이센스 확인";
include_once ('../config.php');
include_once ('./install.inc.php');
?>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>그누보드4 설치 (1/3) - 라이센스(License)</title>
</head>
<body>
<h4>라이센스(License) 내용을 반드시 확인하십시오.</h4>
<textarea name="textarea" style='width:100%;height:300px;' readonly>
<?=implode('', file('../LICENSE.txt'));?>
</textarea>
<form method="post" action="./install_config.php" onsubmit="return frm_submit(this);">
<div>
<input type="checkbox" id="agree" name="agree" value="동의함">
<label for="agree">설치를 원하시면 위 내용에 동의하셔야 합니다.</label><br>
동의에 선택하신 후 &lt;다음&gt; 버튼을 클릭해 주세요.
<p>
<strong class="st_strong">라이센스(License) 내용을 반드시 확인하십시오.</strong><br>
라이센스에 동의하시는 경우에만 설치가 진행됩니다.
</p>
<textarea name="textarea" id="idx_license" readonly><?=implode('', file('../LICENSE.txt'));?></textarea>
</div>
<input type="submit" value="다음">
<form action="./install_config.php" method="post" onsubmit="return frm_submit(this);">
<div id="idx_agree">
<label for="agree">동의합니다.</label>
<input type="checkbox" id="agree" name="agree" value="동의함">
</div>
<div id="btn_confirm">
<input type="submit" value="다음">
</div>
</form>
<script>

View File

@ -1,29 +1,65 @@
<?
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
$data_path = '../'.G4_DATA_DIR;
if (!$title) $title = "그누보드4S 설치";
?>
<!doctype html>
<html lang="ko">
<head>
<meta charset="utf-8">
<title><?=$title?></title>
<style>
body {margin:0;padding:0;background:#f7f7f7}
h1 {margin:50px auto 30px;width:540px;font-size:1.4em}
p {line-height:1.5em}
#wrapper {margin:0 auto;padding:20px;width:500px;border:1px solid #eee;background:#fff}
#idx_license {padding:10px;width:480px;height:300px;border:1px solid #ccc;background:#000;color:#fff}
#idx_agree {padding:20px;font-weight:bold;text-align:center}
#btn_confirm {text-align:center}
.st_strong {color:#ff3061;font-weight:normal}
</style>
</head>
<body>
<h1><?=$title?></h1>
<div id="wrapper">
<?
// 파일이 존재한다면 설치할 수 없다.
$dbconfig_file = $data_path.'/'.G4_DBCONFIG_FILE;
if (file_exists($dbconfig_file)) {
echo '<meta http-equiv="content-type" content="text/html; charset=utf-8">';
echo '<p>프로그램이 이미 설치되어 있습니다.<br />새로 설치하시려면 '.$dbconfig_file.' 파일을 삭제후 설치하시기 바랍니다.</p>';
?>
<p>프로그램이 이미 설치되어 있습니다.<br />새로 설치하시려면 '.$dbconfig_file.' 파일을 삭제후 설치하시기 바랍니다.</p>
<?
exit;
}
?>
<?
// data 디렉토리가 있는가?
if (!is_dir($data_path))
{
echo '<meta http-equiv="content-type" content="text/html; charset=utf-8">';
echo '<p>루트 디렉토리에 아래로 '.G4_DATA_DIR.' 디렉토리를 생성하여 주십시오.<br />(common.php 파일이 있는곳이 루트 디렉토리 입니다.)<br /><br />$> mkdir '.G4_DATA_DIR.'<br /><br />위 명령 실행후 다시 설치하여 주십시오.</p>';
?>
<p>루트 디렉토리에 아래로 '.G4_DATA_DIR.' 디렉토리를 생성하여 주십시오.<br />(common.php 파일이 있는곳이 루트 디렉토리 입니다.)<br /><br />$> mkdir '.G4_DATA_DIR.'<br /><br />위 명령 실행후 다시 설치하여 주십시오.</p>
<?
exit;
}
?>
<?
// data 디렉토리에 파일 생성 가능한지 검사.
if (!(is_readable($data_path) && is_writeable($data_path) && is_executable($data_path)))
{
echo '<meta http-equiv="content-type" content="text/html; charset=utf-8">'.PHP_EOL;
echo '<p>'.G4_DATA_DIR.' 디렉토리의 퍼미션을 707로 변경하여 주십시오.<br /><br />$> chmod 707 '.G4_DATA_DIR.' 또는 chmod uo+rwx '.G4_DATA_DIR.'<br /><br />위 명령 실행후 다시 설치하여 주십시오.</p>';
?>
<p>'.G4_DATA_DIR.' 디렉토리의 퍼미션을 707로 변경하여 주십시오.<br /><br />$> chmod 707 '.G4_DATA_DIR.' 또는 chmod uo+rwx '.G4_DATA_DIR.'<br /><br />위 명령 실행후 다시 설치하여 주십시오.</p>
<?
exit;
}
?>