forked from PetaByet/cdp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.php
More file actions
17 lines (13 loc) · 711 Bytes
/
config.php
File metadata and controls
17 lines (13 loc) · 711 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php
error_reporting(E_ALL); //error reporting
ini_set('display_errors', 1);
date_default_timezone_set('UTC'); //set time zone
$config = array();
$config['adminusername'] = 'admin'; //admin user name
$config['adminpassword'] = '5f4dcc3b5aa765d61d8327deb882cf99'; //md5 encrypted hash of admin password (default password is 'password')
$config['adminemail'] = 'someone@test.com'; //admin email address
$config['sendnotification'] = true; //send email notification (recommended)
$config['path'] = '/var/www/html'; //script root path
$config['version'] = 'Beta 1.2'; //script version
$config['logintimeout'] = '1800'; //inactivity timeout in seconds
?>