You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
< ? php
/**
* 金菠菜子站点入口
*/
if ( version_compare ( PHP_VERSION , '5.3.0' , '<' )) die ( 'require PHP > 5.3.0 !' );
/**
* 系统调试设置
* 项目正式部署后请设置为false
*/
define ( 'APP_DEBUG' , true );
define ( 'BIND_MODULE' , 'Admin' );
define ( 'ROOTTT' , dirname ( __FILE__ ) . '/' );
define ( 'ROOTTTTT' , dirname ( __FILE__ ));
define ( 'FONTS' , dirname ( __FILE__ ) . '/Public/Admin/fonts/' );
/**
* 应用目录设置
* 安全期间, 建议安装调试完成后移动到非WEB目录
*/
define ( 'APP_PATH' , './Application/' );
if ( ! is_file ( APP_PATH . 'User/Conf/config.php' )){
header ( 'Location: ./install.php' );
exit ;
}
/**
* 缓存目录设置
* 此目录必须可写, 建议移动到非WEB目录
*/
define ( 'RUNTIME_PATH' , './Runtime/' );
/**
* 项目配置
*/
$JBC_DB_CONFIG = include_once APP_PATH . " /Common/Conf/env.php " ;
if ( ! isset ( $JBC_DB_CONFIG [ 'SUBSITE_DB_CONFIG' ][ 'WM_DB_CONFIG' ])){
die ( " 请先配置子站点连接参数 " );
}
$JBC_DB_CONFIG = $JBC_DB_CONFIG [ 'SUBSITE_DB_CONFIG' ][ 'WM_DB_CONFIG' ];
define ( 'IS_SUBSITE' , true );
define ( 'PARTNER_TYPE' , 1 );
define ( 'SUBSITE_NAME' , " wm " );
define ( 'SUBSITE_DB' , $JBC_DB_CONFIG );
define ( 'SUBSITE_INDEX' , " wm.php " ); //子站点路口, 影响session
/**
* 引入核心入口
* ThinkPHP亦可移动到WEB以外的目录
*/
require './ThinkPHP/ThinkPHP.php' ;