summaryrefslogtreecommitdiff
path: root/sites
diff options
context:
space:
mode:
authorSteven Wittens <steven@10.no-reply.drupal.org>2006-04-12 08:42:47 +0000
committerSteven Wittens <steven@10.no-reply.drupal.org>2006-04-12 08:42:47 +0000
commit69726b0d7b7741122ded6994692ff24173a7caee (patch)
treec64d5c91ffad08f10dbeb1e6e11a838284c1d1d3 /sites
parent99e7c0ec7c630dde981cb5ee7c046e71833cfd50 (diff)
downloadbrdo-69726b0d7b7741122ded6994692ff24173a7caee.tar.gz
brdo-69726b0d7b7741122ded6994692ff24173a7caee.tar.bz2
#56634: Resolve issues with varying $base_url
- Fix locations links in watchdog - Fix repeated subdirectory in page cache CIDs
Diffstat (limited to 'sites')
-rw-r--r--sites/default/settings.php23
1 files changed, 15 insertions, 8 deletions
diff --git a/sites/default/settings.php b/sites/default/settings.php
index 96d49bc5c..bb8c0ab32 100644
--- a/sites/default/settings.php
+++ b/sites/default/settings.php
@@ -87,9 +87,14 @@ $db_url = 'mysql://username:password@localhost/databasename';
$db_prefix = '';
/**
- * Base URL:
+ * Base URL (optional).
*
- * The URL to your Drupal installation.
+ * If you are experiencing issues with different site domains,
+ * uncomment the Base URL statement below (remove the leading hash sign)
+ * and fill in the URL to your Drupal installation.
+ *
+ * You might also want to force users to use a given domain.
+ * See the .htaccess file for more information.
*
* Examples:
* $base_url = 'http://www.example.com';
@@ -100,7 +105,7 @@ $db_prefix = '';
* It is not allowed to have a trailing slash; Drupal will add it
* for you.
*/
-$base_url = 'http://www.example.com'; // NO trailing slash!
+# $base_url = 'http://www.example.com'; // NO trailing slash!
/**
* PHP settings:
@@ -132,10 +137,12 @@ ini_set('url_rewriter.tags', '');
* useful in a configuration file for a vhost or directory, rather than
* the default settings.php. Any configuration setting from the 'variable'
* table can be given a new value.
+ *
+ * Remove the leading hash signs to enable.
*/
-//$conf = array(
-// 'site_name' => 'My Drupal site',
-// 'theme_default' => 'pushbutton',
-// 'anonymous' => 'Visitor'
-//);
+# $conf = array(
+# 'site_name' => 'My Drupal site',
+# 'theme_default' => 'pushbutton',
+# 'anonymous' => 'Visitor'
+# );