-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathconfig.php
51 lines (44 loc) · 1.65 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?php
/* General Settings */
// Web Settings Key
// The key used to access the additional settings from the web
// Does not grant access to any of the settings found in this file
$general['key'] = "NHzwGmAggt3e";
// AMXModX Compiler Location
// Location where all the usable compilers are stored, must be absolute path
$general['amxxcomp'] = "/home/user/compilers/amxx";
// SourceMod Compiler Location
// Location where all the usable compilers are stored, must be absolute path
$general['smcomp'] = "/home/user/compilers/sm";
// Compiled Files Path
// Location where to store the compiled files
$general['compiled'] = "/home/user/compilers/compiled";
// Temp Upload Path
// Location where to store the uploaded files temporarly
$general['temp'] = "/home/user/compilers/temp";
// vBulletin Upload Path
// Location where the vBulletin Uploads are stored, optional
$general['vbupload'] = "";
// IPB Upload Path
// Location where the IPB Uploads are stored, optional
$general['ipbupload'] = "";
// The Database type.
// sqlite = Uses SQLite. This is the default, database is stored locally, no username/password required
// mysql = Uses MySQL. Use either a local or remote MySQL server.
$db_type = "sqlite";
/* SQLite Settings */
// The location of where to save the SQLite database. Relative to the configs directory, or absolute path.
// Database will be created if it doesn't exist, directories will not.
$sqlite['db'] = "data.sqlite";
/* MySQL Settings */
// Database Server
$mysql['server'] = "localhost";
// Username
$mysql['user'] = "root";
// Password
$mysql['pass'] = "";
// Database
$mysql['db'] = "compiler";
// Table Prefix
$mysql['prefix'] = "";
?>