flush -- WIP admin panel

This commit is contained in:
Tony Yang
2019-05-30 14:18:07 +08:00
parent 75af7df7b4
commit 84fb4180c9
53 changed files with 9104 additions and 2 deletions

14
config.php Normal file
View File

@@ -0,0 +1,14 @@
<?php
require_once('include/function.php');
if(!session_id()) {
session_start();
}
global $blog;
date_default_timezone_set("Asia/Taipei");
$blog['name'] = 'Cavern'; //網站名稱
$blog['limit'] = 10; //首頁顯示文章數量
$blog['register'] = true; //是否允許註冊
?>