<?php
/**
 *
 * index(入口文件)
 *
 * @package      	Yourphp
 * @author          liuxun QQ:147613338 <web@yourphp.cn>
 * @copyright     	Copyright (c) 2008-2011  (http://www.yourphp.cn)
 * @license         http://www.yourphp.cn/license.txt
 * @version        	YourPHP企业网站管理系统 v2.1 2012-10-08 yourphp.cn $
 */
header("Content-type: text/html;charset=utf-8");
if(!is_file('./Cache/config.php')){
	echo "找不到配置文件";
	exit;
}
ini_set('memory_limit','32M');
error_reporting(E_ERROR | E_WARNING | E_PARSE);
define('Yourphp',true);
define('UPLOAD_PATH','./Uploads/');
define('VERSION','v5');
define('UPDATETIME','20121225');
define('APP_NAME','Yourphp');
define('APP_PATH','./Yourphp/');
define('APP_LANG',true);
define('APP_DEBUG',true);
define('THINK_PATH','./Core/');
require(THINK_PATH.'Core.php');
?>
