Merge branch 'QA_3_4'
[phpmyadmin.git] / show_config_errors.php
blobe163c426c56a3fa9d46d0bd63d4c4923d9569143
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
4 * Simple wrapper just to enable error reporting and include config
6 * @package phpMyAdmin
7 */
9 $GLOBALS['now'] = gmdate('D, d M Y H:i:s') . ' GMT';
10 PMA_no_cache_header();
11 header('Content-Type: text/html; charset=utf-8');
13 require './libraries/vendor_config.php';
15 error_reporting(E_ALL);
16 /**
17 * Read config file.
19 require CONFIG_FILE;