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

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'show_config_errors.php')
-rw-r--r--show_config_errors.php12
1 files changed, 12 insertions, 0 deletions
diff --git a/show_config_errors.php b/show_config_errors.php
new file mode 100644
index 0000000000..4e18ad57a6
--- /dev/null
+++ b/show_config_errors.php
@@ -0,0 +1,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');
+
+?>