Translated using Weblate.
[phpmyadmin.git] / show_config_errors.php
blobd3f9dbee71ea238462b13b572f485308b88024f4
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;