? _ports.patch ? sites/.DS_Store ? sites/feast-or-fa.mine.nu.8888.disobey.com Index: INSTALL.txt =================================================================== RCS file: /cvs/drupal/drupal/INSTALL.txt,v retrieving revision 1.20 diff -u -r1.20 INSTALL.txt --- INSTALL.txt 23 Apr 2005 05:07:08 -0000 1.20 +++ INSTALL.txt 19 Aug 2005 01:31:40 -0000 @@ -163,6 +163,10 @@ sites/example.com/settings.php sites/default/settings.php + If you are installing on a non-standard port number, the ':' is + replaced by a '.'. For example, http://www.drupal.org:8080/mysite/test/ + could be loaded from sites/www.drupal.org.8080/mysite/test/. + Each site configuration can have its own site-specific modules and themes that will be made available in addition to those installed in the standard 'modules' and 'themes' directories. To use Index: includes/bootstrap.inc =================================================================== RCS file: /cvs/drupal/drupal/includes/bootstrap.inc,v retrieving revision 1.60 diff -u -r1.60 bootstrap.inc --- includes/bootstrap.inc 5 Aug 2005 00:49:02 -0000 1.60 +++ includes/bootstrap.inc 19 Aug 2005 01:31:40 -0000 @@ -116,7 +116,7 @@ $confdir = 'sites'; $uri = explode('/', $_SERVER['PHP_SELF']); - $server = explode('.', rtrim($_SERVER['HTTP_HOST'], '.')); + $server = explode('.', str_replace(':', '.', rtrim($_SERVER['HTTP_HOST'], '.'))); for ($i = count($uri) - 1; $i > 0; $i--) { for ($j = count($server); $j > 0; $j--) { $dir = implode('.', array_slice($server, -$j)) . implode('.', array_slice($uri, 0, $i)); @@ -879,4 +879,4 @@ $theme = ''; } -?> \ No newline at end of file +?> Index: sites/default/settings.php =================================================================== RCS file: /cvs/drupal/drupal/sites/default/settings.php,v retrieving revision 1.16 diff -u -r1.16 settings.php --- sites/default/settings.php 14 Apr 2005 18:34:31 -0000 1.16 +++ sites/default/settings.php 19 Aug 2005 01:31:40 -0000 @@ -30,6 +30,10 @@ * 9. sites/org * * 10. sites/default + * + * If you are installing on a non-standard port number, the ':' is + * replaced by a '.'. For example, http://www.drupal.org:8080/mysite/test/ + * could be loaded from sites/www.drupal.org.8080/mysite/test/. */ /**