forked from CuoBian/iwebsns-intel-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfiguration.php
executable file
·94 lines (72 loc) · 1.91 KB
/
configuration.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<?php
//语言包参数,目前参数值zh,en
$langPackagePara="zh";
//配置信息
$webRoot=strtr(dirname(__FILE__),"\\","/")."/";
$metaDesc="Intel Social Club";
$metaKeys="Intel Social Club";
$metaAuthor="wynn";
$siteName="Intel Social Club";
$copyright="Copyright@2009";
$domainRemark="";
$offLine=0;
$adminEmail="[email protected]";
$siteDomain="http://{$_SERVER['HTTP_HOST']}/iweb/iwebsns/";
$skinUrl="default/jooyea";
$tplAct="default";
$compileType="debug";
$indexFile="index.php";
$urlRewrite=0;
$inviteCode=0;
$inviteCodeLength=8;
$inviteCodeValue=1;
$allowReg=1;
$inviteCodeLife=72;
$mailCodeLifeDay=7;
$mailCodeLifeHour=0;
$mailActivation=0;
//时区设置
date_default_timezone_set ("Asia/Shanghai");
//当前时间
defined('NOWTIME') or define('NOWTIME',date('Y-m-d H:i:s',time()));
//支持库配置
$baseLibsPath="iweb_mini_lib/";
//防刷新时间设置,只限制insert动作.单位:秒
$allowRefreshTime=5;
//超限系统延时设置,单位:秒
$delayTime=5;
//开启缓存
$ctrlCache=1;
//缓存更新延时设置,单位为秒
$cache_update_delay_time=1;
//出生年份范围
$setMinYear=1950;
$setMaxYear=2000;
//站点调试信息设置
ini_set("display_errors",0);
//站点关闭提示信息
$offlineMessage="本网站目前正在维护中,请稍后再来访问";
//分页数据量
$cachePages=10;
//限制访问的时间段
$limit_guest_time="";
//限制交互时间段
$limit_action_time="";
//限制访问的ip列表
$limit_ip_list="";
//主页显示动态条数
$homeAffairNum=10;
//首页显示动态人数
$mainAffairNum=5;
//是否开启过滤
$wordFilt=1;
//敏感词过滤
$filtrateStr="";
//cookie开启校验
$cookieOpen=1;
//session前缀
global $session_prefix;
$session_prefix="isns_";
//plugins位置文件
$pluginOpsition=array("home.html","index.html","main.html","modules/blog/blog_edit.html");
?>