<?php
/***********************************************************
	Filename: index.php
	Note	: 前台页
	Version : 3.0
	Author  : PGcao
	Update  : 2009-12-22
***********************************************************/
$isdebug = isset($_REQUEST['sysdebug'])?1:0;
@ini_set('display_errors', $isdebug); 				// 显示PHP输出错误 (1显示,0不显示)		
@error_reporting($isdebug?E_ALL | E_STRICT:0);		// E_ALL | E_STRICT : E_ALL & ~E_NOTICE : E_ERROR | E_PARSE | E_STRICT
unset($isdebug);

header("Content-type: text/html; charset=utf-8");//文件头为UTF-8

define("APP_NAME","www");//应用模块名称,模块目录,可供应各个插件调用
define("ROOT",str_replace("\\","/",dirname(__FILE__))."/");//根目录
define("LIBS",ROOT."sources/");//核心库文件
define("APP_ROOT",ROOT."mvclibs/");//应用层文件
define("APP",APP_ROOT.APP_NAME."/");//前台
define("ROOT_DATA",ROOT."data/");//文本文件存储目标
define("ROOT_HTML",ROOT."html/");//静态页目录
define("ROOT_PLUGIN",ROOT."plugins/");//插件目录
define("PHPSYS_SET",true);//配置标识参数
define("ROOT_JS",ROOT."statics/js/php/");//PHP-JS目录
	
if(is_file(ROOT_DATA.'stopattack.lock')){
	$stopattackmod = file_get_contents(ROOT_DATA.'stopattack.lock');
	if($stopattackmod)require_once(LIBS.'stopattack.sys.php');
	unset($stopattackmod);//防CC攻击	
}

require_once(LIBS."index.inc.php");
?>