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:
|
2000-05-18 19:52:00 +00:00
|
|
|
#
|
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:
|
|
|
|
#
|
|
|
|
|
|
|
|
# Avoid "page has expired" problems when browsing from your cache or history
|
|
|
|
# after having filled out a form:
|
|
|
|
// ini_set("session.cache_limiter", "");
|
|
|
|
|
|
|
|
# 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:
|
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-04-02 09:45:57 +00:00
|
|
|
# Custom Navigation Links override the standard page links
|
|
|
|
# offerred by most Drupal modules. Administrators may
|
|
|
|
# add/remove/reorder nav links here. These links are typically
|
|
|
|
# displayed in a row near the top of every page.
|
|
|
|
# $custom_links = array(
|
|
|
|
# "<a href=\"\index.php\">home</a>",
|
|
|
|
# "<a href=\"\module.php?mod=user\">school</a>",
|
|
|
|
# "<a href=\"\module.php?mod=blog\">work</a>");
|
|
|
|
|
2001-05-14 19:41:18 +00:00
|
|
|
?>
|