From 95f6c0a13756c25fa8b98f7153324152a6db4378 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Thu, 8 Apr 2010 12:31:24 +0200 Subject: [PATCH 1/3] Document Error_Handler. --- Documentation.html | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Documentation.html b/Documentation.html index abe01c4af..02682b35b 100644 --- a/Documentation.html +++ b/Documentation.html @@ -1379,6 +1379,12 @@ CREATE DATABASE,ALTER DATABASE,DROP DATABASE HTTP server is placed. +
$cfg['Error_Handler']['display'] boolean
+
Whether to display errors from PHP or not.
+ +
$cfg['Error_Handler']['gather'] boolean
+
Whether to gather errors from PHP or not.
+
$cfg['LeftFrameLight'] boolean
Defines whether to use a select-based menu and display only the current tables in the left frame (smaller page). Only in Non-Lightmode you can From c0b12a1eeac7b9acb46063236b772b5d5b14b3a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Thu, 8 Apr 2010 12:31:44 +0200 Subject: [PATCH 2/3] Fix typo (cfb -> cfg). --- Documentation.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Documentation.html b/Documentation.html index 02682b35b..7ae0f8d3d 100644 --- a/Documentation.html +++ b/Documentation.html @@ -1889,20 +1889,20 @@ $cfg['TrustedProxies'] = name of the field. The comment is shown as a tool-tip for that field.
-
$cfg['SQLQuery']['Edit'] boolean
+
$cfg['SQLQuery']['Edit'] boolean
Whether to display an edit link to change a query in any SQL Query box.
-
$cfg['SQLQuery']['Explain'] boolean
+
$cfg['SQLQuery']['Explain'] boolean
Whether to display a link to explain a SELECT query in any SQL Query box.
-
$cfg['SQLQuery']['ShowAsPHP'] boolean
+
$cfg['SQLQuery']['ShowAsPHP'] boolean
Whether to display a link to wrap a query in PHP code in any SQL Query box.
-
$cfg['SQLQuery']['Validate'] boolean
+
$cfg['SQLQuery']['Validate'] boolean
Whether to display a link to validate a query in any SQL Query box. See also $cfg_SQLValidator.
-
$cfg['SQLQuery']['Refresh'] boolean
+
$cfg['SQLQuery']['Refresh'] boolean
Whether to display a link to refresh a query in any SQL Query box.
$cfg['UploadDir'] string
From b68b7d1cdd48d48e4b2009a1cfd24e81a09a127d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Thu, 8 Apr 2010 12:33:20 +0200 Subject: [PATCH 3/3] Document enabling error reporting in devel docs. --- Documentation.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Documentation.html b/Documentation.html index 7ae0f8d3d..81e12b004 100644 --- a/Documentation.html +++ b/Documentation.html @@ -4457,6 +4457,9 @@ now synchronize your databases placed on the same server or some remote server. PEAR coding standards on the other hand. Please pay attention to this. +
  • Please enable showing PHP errors and warnings by the + $cfg['Error_Handler']['display'] + configuration directive.
  • Please try to keep up the file-naming conventions. Table-related stuff goes to tbl_*.php, db-related code to db_*.php, server-related tools to server_*.php and so on.