repo.or.cz
/
phpmyadmin
/
crack.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Translation update done using Pootle.
[phpmyadmin/crack.git]
/
show_config_errors.php
blob
9024fec22d7d207ec79e818aef4aa6ba8d96136c
1
<
?php
2
/* vim: set expandtab sw=4 ts=4 sts=4: */
3
/**
4
* Simple wrapper just to enable error reporting and include config
5
*
6
* @package phpMyAdmin
7
*/
8
9
require
'./libraries/vendor_config.php'
;
10
11
echo
"Starting to parse config file...
\n
"
;
12
13
error_reporting
(
E_ALL
);
14
/**
15
* Read config file.
16
*/
17
require
CONFIG_FILE
;
18
19
?
>