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: a00cf84b18691f48b2961bdc44685c73269e319f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/* $Id$ */

/* 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');

?>