Merge branch 'master' of github.com:gnuboard/g4s
This commit is contained in:
@ -27,9 +27,9 @@ include_once('./admin.head.php');
|
||||
if (is_array($files)) {
|
||||
$before_time = G4_SERVER_TIME - 3600; // 한시간전
|
||||
foreach ($files as $gcaptcha_file) {
|
||||
$access_time = fileatime($gcaptcha_file); // 파일접근시간
|
||||
$modification_time = filemtime($gcaptcha_file); // 파일접근시간
|
||||
|
||||
if ($access_time > $before_time) continue;
|
||||
if ($modification_time > $before_time) continue;
|
||||
|
||||
$cnt++;
|
||||
unlink($gcaptcha_file);
|
||||
|
||||
@ -102,7 +102,7 @@ if (file_exists($dbconfig_file)) {
|
||||
<html lang="ko">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>오류! 그누보드4S 설치하기</title>
|
||||
<title>오류! 그누보드4s 설치하기</title>
|
||||
<style>
|
||||
body {background:#f7f7f2}
|
||||
h1 {margin:50px auto 30px;width:540px;color:#ff3061;font-size:1.4em}
|
||||
@ -119,7 +119,7 @@ div a {display:block;margin:50px auto 10px;width:170px;text-align:center}
|
||||
<li><strong><?=G4_DATA_DIR.'/'.G4_DBCONFIG_FILE?></strong></li>
|
||||
</ul>
|
||||
<p>프로그램 설치 후 실행하시기 바랍니다.</p>
|
||||
<a href="./install/">그누보드4S 설치하기</a>
|
||||
<a href="./install/">그누보드4s 설치하기</a>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@ -61,6 +61,7 @@ if (!is_dir($data_path))
|
||||
<p>루트 디렉토리에 아래로 <?=G4_DATA_DIR?> 디렉토리를 생성하여 주십시오.<br />
|
||||
(common.php 파일이 있는곳이 루트 디렉토리 입니다.)<br /><br />
|
||||
$> mkdir <?=G4_DATA_DIR?><br /><br />
|
||||
윈도우의 경우 data 폴더를 하나 생성해 주시기 바랍니다.<br /><br />
|
||||
위 명령 실행후 브라우저를 새로고침 하십시오.</p>
|
||||
<?
|
||||
$exists_data_dir = false;
|
||||
|
||||
Reference in New Issue
Block a user