lazyzhu 发表于 2012-5-10 16:05 
你不贴全代码,咩咩都帮不了你
<?php
if (!defined('IN_PHPMPS'))
{
die('Access Denied');
}
error_reporting(E_ERROR | E_WARNING | E_PARSE);
define('PHPMPS_ROOT', str_replace("\\", '/', substr(dirname(__FILE__), 0, -7)));
$PHP_SELF = isset($_SERVER['PHP_SELF']) ? $_SERVER['PHP_SELF'] : $_SERVER['SCRIPT_NAME'];
if ('/' == substr($php_self, -1))$PHP_SELF .= 'index.php';
$PHP_QUERYSTRING = $_SERVER['QUERY_STRING'];
$PHP_DOMAIN = $_SERVER['SERVER_NAME'];
$PHP_SCHEME = $_SERVER['SERVER_PORT'] == '443' ? 'https://' : 'http://';
$PHP_PORT = $_SERVER['SERVER_PORT'] == '80' ? '' : ':'.$_SERVER['SERVER_PORT'];
$PHP_URL = $PHP_SCHEME.$PHP_DOMAIN.$PHP_PORT.$PHP_SELF.($PHP_QUERYSTRING ? '?'.$PHP_QUERYSTRING : '');
if (!file_exists(PHPMPS_ROOT . 'data/install.lock')) {
header("Location:./install/index.php");
exit;
}
require PHPMPS_ROOT . 'data/config.php';
require PHPMPS_ROOT . 'include/global.fun.php';
@set_magic_quotes_runtime(0);
@ini_set('session.auto_start', 0);
session_start();
header('Content-type: text/html; charset='.$charset);
if(!get_magic_quotes_gpc()) {
if (!empty($_GET))$_GET = addslashes_deep($_GET);
if (!empty($_POST))$_POST = addslashes_deep($_POST);
$_COOKIE = addslashes_deep($_COOKIE);
$_REQUEST = addslashes_deep($_REQUEST);
}
if(function_exists('date_default_timezone_set')){
date_default_timezone_set('Asia/Shanghai');
}
require PHPMPS_ROOT . 'include/mysql.class.php';
$db = new mysql($db_host, $db_user, $db_pass, $db_name, '1');
$db_host = $db_user = $db_pass = $db_name = NULL;
$CFG = get_config();
if($CFG['closesystem']) showmsg($CFG['close_tips']);
$_userid = 0;
$_username = '';
$uid = $_SESSION['userid'] ? $_SESSION['userid'] : $_COOKIE['userid'];
if(!empty($uid)) {
$user_info = $db->getRow("select userid,username,lastposttime,status from {$table}member where userid='$uid' ");
if($user_info) {
$_userid = $user_info['userid'];
$_username = $user_info['username'];
$_lastposttime = $user_info['lastposttime'];
$_status = $user_info['status'];
}
}
define('DEBUG_MODE', 0);
define('PHPMPS_PATH', $CFG['weburl'].'/');//网址
define('CSS_PATH', $CFG['weburl'].'/templates/'.$CFG['tplname'].'/style/');//css网址
define('IMG_PATH', $CFG['weburl'].'/templates/'.$CFG['tplname'].'/images/');//图片网址
require PHPMPS_ROOT . 'include/header.php';
?> |