Welcome to mirror list, hosted at ThFree Co, Russian Federation.

show_config_errors.php - github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4e18ad57a6b3c75630376c59c7ee58cf1fb982c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php
/* $Id$ */
// vim: expandtab sw=4 ts=4 sts=4:

/* Simple wrapper just to enable error reporting and include config */

echo "Starting to parse config file...\n";

error_reporting(E_ALL);
require('./config.inc.php');

?>