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 = "mysql://user:password@hostname/database";
|
2003-03-16 07:02:20 +00:00
|
|
|
# $db_url = "pgsql://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
|
|
|
|
2003-07-10 17:46:44 +00:00
|
|
|
# If $db_prefix is specified all database table names will be
|
|
|
|
# prepended with this string. Be sure to use valid database
|
|
|
|
# characters only, usually alphanumeric and underscore. If no
|
|
|
|
# prefixes are desired, set to empty string "".
|
|
|
|
$db_prefix = "";
|
|
|
|
|
2003-02-14 19:52:45 +00:00
|
|
|
#
|
|
|
|
# Base URL:
|
|
|
|
#
|
2003-02-15 21:49:17 +00:00
|
|
|
# The URL of your website's main page. It is not allowed to have
|
|
|
|
# a trailing slash; Drupal will add it for you.
|
2003-02-14 19:52:45 +00:00
|
|
|
#
|
|
|
|
$base_url = "http://localhost";
|
|
|
|
|
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
|
2003-02-15 21:49:17 +00:00
|
|
|
# the .htaccesss file in Drupal's root directory. If you get
|
|
|
|
# unexcepted 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.
|
2003-02-20 22:44:51 +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:
|
|
|
|
#
|
2003-02-15 21:49:17 +00:00
|
|
|
# Custom navigation links override the standard page links offered
|
2002-12-02 22:18:37 +00:00
|
|
|
# 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>",
|
2003-01-06 19:51:01 +00:00
|
|
|
// "<a href=\"blog\">journal</a>",
|
|
|
|
// "<a href=\"story\">articles</a>");
|
2002-04-02 09:45:57 +00:00
|
|
|
|
2002-11-26 18:38:01 +00:00
|
|
|
?>
|