-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.php
27 lines (25 loc) · 1.15 KB
/
config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php
/**
* config.php
*
* This file contains all of the configuration for the db
* that will
* @author SteamFriends Development Team
* @version 1.0.0
* @copyright SteamFriends (www.SteamFriends.com)
* @package SourceBans
*/
if(!defined('IN_SB')){echo 'You should not be here. Only follow links!';die();}
define('DB_HOST', 'localhost'); // The host/ip to your SQL server
define('DB_USER', 'root'); // The username to connect with
define('DB_PASS', '123456'); // The password
define('DB_NAME', 'sourcebans'); // Database name
define('DB_PREFIX', 'sb'); // The table prefix for SourceBans
define('DB_PORT', '3306'); // The SQL port (Default: 3306)
define('DB_CHARSET', 'utf8mb4'); // The Database charset (Default: utf8)
define('STEAMAPIKEY', '02EE05EF17D25CBA4B9BB3A7E1386F40'); // Steam API Key for Shizz
define('SB_WP_URL', 'https://bans.kingpandagamer.tf'); //URL of SourceBans Site
define('SB_EMAIL', '');
//define('DEVELOPER_MODE', true); // Use if you want to show debugmessages
//define('SB_MEM', '128M'); // Override php memory limit, if isn't enough (Banlist is just a blank page)
?>