-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathconfig.php
59 lines (47 loc) · 954 Bytes
/
config.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
<?php
/** The username for phpMyXSS */
define ( 'PMX_USERNAME', 'root' );
/**
* The password(phpass) for phpMyXSS
*/
define ( 'PMX_PASSWORD', '$2a$08$p8fMax0stoVUhkAEKR1SuO35qib6WwyIXEU5czCkTdaYeVAF4OoiK' );
/**
* The name of the MySQL database
*/
define ( 'PMX_DB_NAME', 'pmx' );
/**
* MySQL database username
*/
define ( 'PMX_DB_USER', 'root' );
/**
* MySQL database password
*/
define ( 'PMX_DB_PASSWORD', '' );
/**
* MySQL hostname
*/
define ( 'PMX_DB_HOST', 'localhost' );
/**
* Database Charset to use in creating database tables.
*/
define ( 'PMX_DB_CHARSET', 'utf8' );
/**
* The timezone in your area.
*/
define ( 'PMX_TIMEZONE', 'Asia/Shanghai' );
/**
* The name of this site.
*/
define ( 'PMX_SITENAME', 'phpMyXSS' );
/**
* The URL of your site
*/
define ( 'PMX_SITEURL', 'http://127.0.0.1:8010/' );
/**
* For developers
*/
define ( 'PMX_DEBUG', true );
/**
* Database Table prefix.
*/
$table_prefix = 'pmx_';