http://219.140.175.54:91/cs
看看我的服务器,为什么任何枪械图片,地图图片,都不能正常显示?超级管理员也无法添加!很郁闷,不知道到底是怎么一回事,就只有web显示正常一点点.!
大家看看我web下的config.php吧..
<?php
// User config for PsychoStats website interface
// Strings must be surrounded by single quotes. And all lines must end with a semi-colon
// Uncomment and edit the following option if you are having problems when logging in,
// searching or other 'weird' issues with your stats. This should be an absolute URL
// which points to the url of where your stats are located on your website.
// Note: DO NOT include "http://www.yourdomain.com" on this option.
// $conf['URLROOT'] = '/stats/';
// Game settings (these must match the same values from your original stats.cfg)
$conf['gametype'] = 'halflife';
$conf['modtype'] = 'cstrike';
$conf['uniqueid'] = 'name';
// Database Settings
$conf['dbuser'] = 'root';
$conf['dbpass'] = '8456065';
$conf['dbname'] = 'ps22';
$conf['dbhost'] = 'localhost';
$conf['dbpersistant'] = 1;
$conf['dbtblprefix'] = 'pstats_';
// What theme to use. 'psweb' is the standard and default theme.
$conf['theme'] = 'psweb';
$conf['allowthemechange'] = FALSE;
// If 'disablelogin' is TRUE then no users that are not admins will be able
// to login. the 'login' link will not be displayed, so an admin that wishes to
// login will have to manually go to the 'login.php' page first.
$conf['disablelogin'] = 0;
// The name of your server
$conf['servername'] = 'Powered By PsychoStats v2';
// The server IP:port to use for real-time server info display on the 'server' page
// If 'serverip' is an array, each element should be an IP:port that you want shown
// on your server page.
$conf['serverip'] = '192.168.0.224:27015';
//$conf['serverip'] = array('serverip1','serverip2','...');
// or
//$conf['serverip'][] = 'server1';
//$conf['serverip'][] = 'server2';
// Rule filters. These are PERL regular expressions to match against server rules.
// If a rule matches any of these than the rule is not displayed.
$conf['rulefilters'] = array('_tutor_', 'coop', 'deathmatch', 'pausable');
// If enabled the weapon hitboxes and damage will be displayed
$conf['showhitboxes'] = 1;
// Smarty configuration settings for templates:
// All directories default the current directory if nothing is specified
$conf['template_dir'] = '';
$conf['compile_dir'] = '';
$conf['smarty_dir'] = '';
// the 'root' options default to the current directory + '/images/*'
// You should not have to change these unless your images are in non-standard locations
$conf['statsroot'] = 'd:/web/cs/';
$conf['imagesroot'] = 'd:/web/cs/images/';
$conf['weaponsroot'] = 'd:/web/cs/images/weapons/';
$conf['mapsroot'] = 'd:/web/cs/images/maps/';
// The 'url' options default to the current directory + '/images/*'
// These settings define how files and images would appear to users browsing to your
// stats website (usually the same as the 'root' options without the document_root prefix)
// You should not have to change these unless your images are in non-standard locations
$conf['statsurl'] = 'd:/web/cs/';
$conf['imagesurl'] = 'd:/web/cs/images/';
$conf['weaponsurl'] = 'd:/web/cs/images/weapons/';
$conf['mapsurl'] = 'd:/web/cs/images/maps/';
// Enable/Disable SSL (HTTPS) support for session cookies.
$conf['usessl'] = 0;
?> |