diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-02-15 21:49:17 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-02-15 21:49:17 +0000 |
commit | 8f190d131be384034061439224015db95bd00c23 (patch) | |
tree | b28046efbe88b4b124c07d712ad77bc510f46355 | |
parent | a76151351e0e00da6b5e7f81fdd009cb44e7eabe (diff) | |
download | brdo-8f190d131be384034061439224015db95bd00c23.tar.gz brdo-8f190d131be384034061439224015db95bd00c23.tar.bz2 |
- Documented the fact that the $base_url should not have a trailing slash.
Requested by Kjartan.
- Fixed at least 3 typos.
-rw-r--r-- | includes/conf.php | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/includes/conf.php b/includes/conf.php index f9b29e4c3..d6bc038ba 100644 --- a/includes/conf.php +++ b/includes/conf.php @@ -20,7 +20,8 @@ $db_url = "mysql://drupal:drupal@localhost/drupal"; # # Base URL: # -# The URL of your website's main page. +# The URL of your website's main page. It is not allowed to have +# a trailing slash; Drupal will add it for you. # $base_url = "http://localhost"; @@ -28,8 +29,8 @@ $base_url = "http://localhost"; # PHP settings: # # To see what PHP settings are known to work well, take a look at -# the .htacesss file in Drupal's root directory. If you get -# unexecpted warnings or errors, double-check your PHP settings. +# the .htaccesss file in Drupal's root directory. If you get +# unexcepted warnings or errors, double-check your PHP settings. # If required, update PHP's include path to include your PEAR directory: // ini_set("include_path", ".:/path/to/pear"); @@ -46,7 +47,7 @@ $languages = array("en" => "English"); # # Custom navigation links: # -# Custom navigation links override the standard page links offerred +# Custom navigation links override the standard page links offered # by most Drupal modules. Administrators may add/remove/reorder all # links here. These links are typically displayed in a row near the # top of every page. |