· 6 years ago · Sep 14, 2019, 05:20 PM
1<?php
2 // MYSQL Settings
3 $db_host = 'db.hexaneweb.com'; // Hostname or Host IP
4 $db_user = 'revenant_web'; // Username
5 $db_pass = '^Ow&bK-)zK#o'; // Password
6 $db_database = 'revenant_store'; // Database
7 $db_port = 3306; // Database port
8
9 $steam_api = 'E74A4B76D7142181E0849078B112DD44'; // Your Steam API key. This setting isn't needed, but if filled it will act as a fallback for name grabbing
10
11 /**
12 * Language setting
13 * @var string:
14 *
15 * Available options:
16 *
17 * en-gb English Great Britain
18 * swedish-chef Swedish Chef
19 * norwegian-chef Norwegian Chef
20 * fr French
21 * no-bk Norwegian Bokmål
22 * nl Dutch
23 * da Danish
24 */
25 $lang = 'en-gb'; // To make a new language file, copy the lang/en-gb.php file and rename it to for example "fr.php"
26
27 /**
28 * Use cache setting
29 * @var boolean
30 * This config option is for those free loaders who dont pay for hosting and have no support or access to change permissions on their site
31 */
32 $enable_cache = true;
33
34 /**
35 * Enable if you are using an SSL certificate
36 * @var boolean
37 */
38 $using_ssl = false;
39
40 // Don't touch this. Always have it on false unless you know what you're doing.
41 // Devmode clears cache, enables timestamp at bottom of the page and turns on error reporting
42 $devmode = false;
43?>