-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig_verify.php
More file actions
28 lines (25 loc) · 840 Bytes
/
Copy pathconfig_verify.php
File metadata and controls
28 lines (25 loc) · 840 Bytes
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
<?php
define("DB_HOST", "<insert host address here>");
define("DB_USER", "<insert host username here>");
define("DB_PASS", "<insert host password here>");
define("DB_DATABASE", "<insert host database name here>");
define("DB_TABLE", "<insert host database table name here>");
/*
* General DB constants
*/
if(!defined("KEY_PLATFORM")) define("KEY_PLATFORM", "PLATFORM");
if(!defined("KEY_NETWORK")) define("KEY_NETWORK", "NETWORK");
if(!defined("TO_UID")) define("TO_UID", "TO_UID");
if(!defined("FROM_UID")) define("FROM_UID", "FROM_UID");
if(!defined("DATA")) define("DATA", "DATA");
if(!defined("NETWORK")) define("NETWORK", "NETWORK");
/*
* Verification DB constants
*/
define("KEY_VID", "VID");
define("KEY_V_CODE", "V_KEY");
/*
* VID MD5 Helper
*/
define("MD5_VID", "<insert random string of characters here>")
?>