From edebca004f1689c0c1e723f219a35aef44c3a029 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 14 Nov 2012 12:58:10 +0100 Subject: [PATCH] Do not start with warning, mention config.inc.php location --- doc/config.rst | 27 +++++++++++++++------------ 1 file changed, 15 insertions(+), 12 deletions(-) diff --git a/doc/config.rst b/doc/config.rst index 888bd62bc9..838c908f4b 100644 --- a/doc/config.rst +++ b/doc/config.rst @@ -5,6 +5,21 @@ Configuration ============= +Almost all configurable data is placed in :file:`config.inc.php`. If this file +does not exist, please refer to the :ref:`setup` section to create one. This +file only needs to contain the parameters you want to change from their +corresponding default value in :file:`libraries/config.default.php`. + +The parameters which relate to design (like colors) are placed in +:file:`themes/themename/layout.inc.php`. You might also want to create +:file:`config.footer.inc.php` and :file:`config.header.inc.php` files to add +your site specific code to be included on start and end of each page. + +.. note:: + + Some distributions (eg. Debian or Ubuntu) store :file:`config.inc.php` in + ``/etc/phpmyadmin`` instead of withing phpMyAdmin sources. + .. warning:: :term:`Mac` users should note that PHP does not seem to @@ -13,18 +28,6 @@ Configuration character (``\n``) in your text editor before saving a script you have modified. -.. note:: - - Almost all configurable data is placed in :file:`config.inc.php`. If this file - does not exist, please refer to the :ref:`setup` section to create one. This file only - needs to contain the parameters you want to change from their corresponding - default value in :file:`libraries/config.default.php`. - - The parameters which relate to design (like colors) are placed in - :file:`themes/themename/layout.inc.php`. You might also want to create - :file:`config.footer.inc.php` and :file:`config.header.inc.php` files to add your - site specific code to be included on start and end of each page. - Basic settings --------------