Better comments describing multi server setup (patch #1226666).

This commit is contained in:
Michal Čihař
2005-06-27 15:27:54 +00:00
parent f17936c497
commit 51bf627c71
2 changed files with 13 additions and 0 deletions

View File

@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
$Id$
$Source$
2005-06-27 Michal Čihař <michal@cihar.com>
* config.inc.php: Better comments describing multi server setup (patch
#1226666).
2005-06-24 Michal Čihař <michal@cihar.com>
* tbl_change.php, tbl_properties_links.php, libraries/export/sql.php:
Remove error reporting.

View File

@@ -124,6 +124,11 @@ $cfg['Servers'][$i]['AllowDeny']['order'] // Host authentication order
$cfg['Servers'][$i]['AllowDeny']['rules'] // Host authentication rules, leave blank for defaults
= array();
/**
* If you are configuring for only one server, stop here. You can jump to the next
* section called "Other core phpMyAdmin settings."
* The following section allows you to add a second server to this installation.
*/
$i++;
$cfg['Servers'][$i]['host'] = '';
@@ -154,6 +159,10 @@ $cfg['Servers'][$i]['AllowDeny']['order']
$cfg['Servers'][$i]['AllowDeny']['rules']
= array();
/**
* This section allows you to configure a third server for this installation.
*/
$i++;
$cfg['Servers'][$i]['host'] = '';
$cfg['Servers'][$i]['port'] = '';