I wish to have the user blogs as a sub domain
ie http://johndoe.scrapgalaxy.com
I have done the following
1. Installed WPMU into the root dir
2. Permissions for root dir and wp-content set to 777
3. My web hosting company has enabled mod_rewrite register_globals and errors are off.
4. DNS wildcards are enabled
Wordpress works fine for the admin blog that is not on a subdomain however when I attempt to create a sub-domain the registration works fine but I get a 404 not found when I try to activate the account.
On a test account:
user: test
subdomain: test.scrapgalaxy.com
activation key sent by email to test@scrapgalaxy.com:
http://test.scrapgalaxy.com/wp-activate.php?key=bc3d9278e2cdc379
.htaccess file:
php_flag register_globals 0
php_flag display_errors 0
AddType application/x-httpd-php .php .php3 .html .phtml .foo
AddType application/x-httpd-php-source .phps .bar
RewriteEngine On
RewriteBase BASE/
# Rewrite http://www.domain.com to domain.com
RewriteCond %{HTTP_HOST} ^www\.(.*)
RewriteRule ^(.*) http://%1/$1 [R,L]
#uploaded files
RewriteRule ^(.*)?/?files/(.*) wp-content/blogs.php?file=$2 [L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule . - [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-.*) $2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
RewriteRule . index.php [L]
I suspect it has something to do with the .htaccess file
Any ideas where I should start to look for trouble shooting ?