· 8 years ago · Dec 29, 2017, 10:54 PM
1<?php
2
3/**#@+
4 *Community Name
5 *
6 * @since 1.0a RC1
7 */
8define('COMMUNITY_NAME', 'Invincible Roleplay');
9
10/**#@+
11 * Database connection variables
12 *
13 * @since 1.0a RC1
14 */
15define('DB_NAME', 'invincib_opencad');
16define('DB_USER', 'Admin');
17define('DB_PASSWORD', 'MikeisHigh');
18define('DB_HOST', '127.0.0.1');
19
20/* Enable or disable NCIC in MDT */
21define('POLICE_NCIC', true);
22
23/* Enable or disable civilians to be able to create or delete warrants from their character */
24define('CIV_WARRANT', false);
25
26/**#@+
27 * Base URL Settings
28 *
29 * BASE_URL - The URL to your installation of OpenCAD inlcuding,
30 * if utilized, it's subdirectory
31 *
32 * Valid Examples include:
33 * //example.com - Root domain, no subdirectory
34 * //subdomain.example.com - subdomain, no subdirectory
35 * //subdomain.example.comsubdir - subdomain with subdirectory
36 * //example.com/subdir - root domain with subdirectory
37 *
38 * We do not reccomend including the trailing / on any of the above examples.
39 * It won't necessarily break anything but just make reference look strange having
40 * two slashed when it isn't needed.
41 *
42 * @since 1.0a RC1
43 */
44define('BASE_URL', '//http://www.invinsiblerp.com/otherstuff/cad');
45
46/**#@+
47 *To & From emails for system generated emails
48 * To be used in a later version for notificaton emails
49 *
50 * @since 1.0a RC2
51 *
52 */
53define('CAD_FROM_EMAIL', 'cad@invinciblerp.com');
54define('CAD_FROM_NAME', COMMUNITY_NAME.' Invincible Roleplay');
55define('CAD_TO_EMAIL', 'admins@invinciblerp.com');
56define('CAD_TO_NAME', COMMUNITY_NAME.' Invincible Roleplay');
57
58/**#@+
59 * Toggle Gravatar
60 *
61 * OpenCAD will dynamically retrieve your avatar from {@link Gravatar http://en.gravatar.com/} if you have an account. Otherwise
62 * it will use the default generic avatar image included with OpenCAD .
63 *
64 * @since 1.0a RC1
65 */
66define('USE_GRAVATAR', true);
67
68/**#@+
69 * Authentication Unique Keys and Salts.
70 *
71 * Change these to different unique phrases!
72 * You can generate these using the {@link WordPress.org secret-key service}
73 * You can change these at any point in time to invalidate all existing cookies. This will force all users to have to log in again.
74 *
75 * UTILIZIATION TO BE IMPLEMENTED
76 *
77 * @since 1.0a RC2
78 *
79 */
80define('AUTH_KEY', 'put your unique phrase here');
81define('SECURE_AUTH_KEY', 'put your unique phrase here');
82define('LOGGED_IN_KEY', 'put your unique phrase here');
83define('NONCE_KEY', 'put your unique phrase here');
84define('AUTH_SALT', 'put your unique phrase here');
85define('SECURE_AUTH_SALT', 'put your unique phrase here');
86define('LOGGED_IN_SALT', 'put your unique phrase here');
87define('NONCE_SALT', 'put your unique phrase here');
88
89/* That's all, stop editing! Happy dispatching. */
90
91/** Absolute path to the OpenCAD directory. */
92if ( !defined('ABSPATH') )
93 define('ABSPATH', dirname(OpenCAD) . '/');
94
95include ABSPATH . "oc-functions.php";