2001-03-10 11:07:52 +00:00
|
|
|
<?php
|
2001-10-20 18:57:09 +00:00
|
|
|
// $Id$
|
2000-05-18 19:52:00 +00:00
|
|
|
|
|
|
|
#
|
2000-11-13 08:17:45 +00:00
|
|
|
# Database settings:
|
2002-12-02 22:18:37 +00:00
|
|
|
#
|
|
|
|
# Note that the $db_url variable gets parsed using PHP's built-in
|
2002-11-26 18:38:01 +00:00
|
|
|
# URL parser (i.e. using the "parse_url()" function) so make sure
|
|
|
|
# not to confuse the parser. In practice, you should avoid using
|
|
|
|
# special characters that are not used in "normal" URLs either.
|
2002-12-02 22:18:37 +00:00
|
|
|
# That is, the use of ':', '/', '@', '?', '=' and '#', ''', '"',
|
2002-11-26 18:38:01 +00:00
|
|
|
# and so on is likely to confuse the parser; use alpha-numerical
|
2002-12-02 22:18:37 +00:00
|
|
|
# characters instead.
|
2001-10-09 21:01:47 +00:00
|
|
|
|
2001-11-01 11:00:51 +00:00
|
|
|
# $db_url = "pgsql://user:password@hostname/database";
|
|
|
|
# $db_url = "mysql://user:password@hostname/database";
|
|
|
|
|
2001-12-24 08:15:46 +00:00
|
|
|
$db_url = "mysql://drupal:drupal@localhost/drupal";
|
2000-12-16 08:39:01 +00:00
|
|
|
|
2001-10-23 20:26:02 +00:00
|
|
|
#
|
|
|
|
# PHP settings:
|
|
|
|
#
|
2002-12-08 08:19:29 +00:00
|
|
|
# To see what PHP settings are known to work well, take a look at
|
2002-12-10 20:35:20 +00:00
|
|
|
# the .htacesss file in Drupal's root directory. If you get
|
2002-12-08 08:19:29 +00:00
|
|
|
# unexecpted warnings or errors, double-check your PHP settings.
|
2001-10-23 20:26:02 +00:00
|
|
|
|
|
|
|
# If required, update PHP's include path to include your PEAR directory:
|
|
|
|
// ini_set("include_path", ".:/path/to/pear");
|
|
|
|
|
2001-02-17 12:59:24 +00:00
|
|
|
#
|
|
|
|
# Languages / translation / internationalization:
|
2002-12-02 22:18:37 +00:00
|
|
|
#
|
2001-04-27 06:45:06 +00:00
|
|
|
# The first language listed in this associative array will
|
|
|
|
# automatically become the default language. You can add a language
|
|
|
|
# but make sure your SQL table, called locales is updated
|
|
|
|
# appropriately.
|
2001-03-26 20:22:09 +00:00
|
|
|
$languages = array("en" => "English");
|
2001-10-23 20:26:02 +00:00
|
|
|
|
2002-12-02 22:18:37 +00:00
|
|
|
#
|
|
|
|
# Custom navigation links:
|
|
|
|
#
|
|
|
|
# Custom navigation links override the standard page links offerred
|
|
|
|
# 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.
|
|
|
|
// $custom_links = array(
|
2002-12-20 22:08:17 +00:00
|
|
|
// "<a href=\"index.php\">home</a>",
|
|
|
|
// "<a href=\"module.php?mod=user\">school</a>",
|
|
|
|
// "<a href=\"module.php?mod=blog\">work</a>");
|
2002-12-02 22:18:37 +00:00
|
|
|
|
2002-04-02 09:45:57 +00:00
|
|
|
|
2002-11-26 18:38:01 +00:00
|
|
|
?>
|