forked from phpmyadmin/phpmyadmin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add wrapper to show config errors even with no error reporting (RFE #…
…1447173).
- Loading branch information
Showing
3 changed files
with
21 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,6 +15,8 @@ $Source$ | |
* libraries/common.lib.php: Do not forget wrongly configured servers, | ||
otherwise user gets warning only on first access (RFE #1451521). | ||
* libraries/auth/config.auth.lib.php: Show possible error messages. | ||
* show_config_errors.php, libraries/common.lib.php: Add wrapper to show | ||
config errors even with no error reporting (RFE #1447173). | ||
|
||
2006-03-15 Michal Čihař <[email protected]> | ||
* libraries/export/htmlexcel.php: Fix output handling (bug #1450555). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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'); | ||
|
||
?> |