-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.sample.php
65 lines (54 loc) · 3.17 KB
/
config.sample.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?php
/**
* =======================================================================================
* GemFramework (c) gempixel.com
* ---------------------------------------------------------------------------------------
* This software is packaged with an exclusive framework as such distribution
* or modification of this framework is not allowed before prior consent from
* gempixel.com. If you find that this framework is packaged in a software not distributed
* by gempixel.com or authorized parties, you must not use this software and contact gempixel.com
* at https://gempixel.com/contact to inform them of this misuse otherwise you risk
* of being prosecuted in courts.
* =======================================================================================
*
* @package gempixel.com\Premium_URL_Shortener
* @author gempixel
* @copyright 2020 gempixel.com
* @license https://gempixel.com/license
* @link https://gempixel.com
*/
// Database Configuration
define('DBhost', '__HOST__'); // Your mySQL Host (usually Localhost)
define('DBname', '__DB__'); // The database name where the data will be stored
define('DBuser', '__USER__'); // Your mySQL username
define('DBpassword', '__PASS__'); // Your mySQL Password
define('DBprefix', '__PRE__'); // Prefix for your tables if you are using same db for multiple scripts
define('DBport', 3306);
// This is your base path. If you have installed this script in a folder, add the folder's name here. e.g. /folderName/
define('BASEPATH', 'AUTO');
// Use CDN to host libraries for faster loading
define('USECDN', true);
// CDN URL to your assets
define('CDNASSETS', null);
define('CDNUPLOADS', null);
// If FORCEURL is set to false, the software will accept any domain name that resolves to the server otherwise it will force settings url
define('FORCEURL', true);
// Your Server's Timezone - List of available timezones (Pick the closest): https://php.net/manual/en/timezones.php
define('TIMEZONE', 'GMT+0');
// Cache Data - If you notice anomalies, disable this. You should enable this when you get high hits
define('CACHE', true);
// Do not enable this if your site is live or has many visitors
define('DEBUG', 0);
/************************************************************************************
====================================================================================
* Do not change anything below - it might crash your site
* ----------------------------------------------------------------------------------
* - Setup a security phrase - This is used to encode some important user
* information such as password. The longer the key the more secure they are.
* - If you change this, many things such as user login and even admin login will
* not work anymore.
====================================================================================
***********************************************************************************/
define('AuthToken', '__KEY__');
define('EncryptionToken', '__ENC__');
define('PublicToken', '__PUB__');