From f863709c7ec199a6f6bdcb185886dbd5b546f59e Mon Sep 17 00:00:00 2001 From: donncha Date: Tue, 9 Aug 2005 15:51:06 +0000 Subject: Turn on VHOSTS by default until directory blogs are working. git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@150 7be80a69-a1ef-0310-a953-fb0f7c49ff36 --- index.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'index.php') diff --git a/index.php b/index.php index 2cc57f6..b2f43ef 100644 --- a/index.php +++ b/index.php @@ -251,9 +251,9 @@ function printstep1form( $dbname = 'wordpress', $uname = 'username', $pwd = 'pas

Virtual Server Support

-

Do you want to enable virtual server support?   Yes No

-

If you do, your blog addresses will appear like http://joesblog.example.com/ instead of http://www.example.com/joesblog/ but you need to do a few more things to Apache and your DNS settings before it'll work.
- If this is your first time installing WPMU then leave this at No.

+

Each blog on your site will have their own hostname or 'sub domain'. Your blog addresses will appear like http://joesblog.example.com/ instead of http://www.example.com/joesblog/ but you need to do a few more things to Apache and your DNS settings before it'll work.

+

Apache will have to have a wildcard alias configured in the virtual server definition of your server. You'll have to add a wildcard DNS record for your domain too. That's usually as easy as adding a * hostname in your online dns software.

+

More:


Database

We need some information on the database. You will need to know the following items before proceeding.

@@ -340,7 +340,7 @@ function step2() { fwrite($handle, str_replace("localhost", $dbhost, $line)); break; case "define('VHOST', ": - fwrite($handle, str_replace("VHOSTSETTING", $vhost, $line)); + fwrite($handle, str_replace("VHOSTSETTING", 'yes', $line)); break; case '$table_prefix =': fwrite($handle, str_replace('wp_', $prefix, $line)); -- cgit