icon Get the most out of Surmunity, read our tips here! Need an interesting blog to read? You've got to read the Surpass Blog! | Welcome! Please register to access all of our features.

» Surpass Web Hosting Forums » Discussions » Web Hosting Tutorials » [All] Installing WordPress Multi User (WPMU)

Web Hosting Tutorials Feel free to browse or contribute.

Reply
 
LinkBack Thread Tools Search this Thread Rate Thread
Old April 26th, 2009, 7:02 AM   #46 (permalink)
ceo
\ (^_^) /
Super #1
 
ceo's Avatar
 
Joined in Jan 2005
Lives in Albany, N.Y.
1,599 posts
Gave thanks: 83
Thanked 33 times
Quote:
Originally Posted by ceo View Post
Bump!

Okies, I'm going mildly insane trying to get this to work. (You'd think with all my years of WP experience this wouldn't be so hard, but it is.) So far as I can tell I've done everything right. WPMU is installed properly - and if I set it up to use subfolders it works just fine. But it won't create a blog with a subdomain. (Well, it does, but I get a 404.)

I contacted support and they enabled the wildcard domains. But I still get a 404 (albeit now it's a cPanel designed 404, but not really an improvement).

Help please! (I have a ticket open regarding this, btw: FEC-109001.)
All is well, Support contacted me and the issue was that httpd.conf wasn't edited when creating the wildcard subdomain. Yayz!
ceo is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old May 12th, 2009, 2:52 PM   #47 (permalink)
Registered User
Fresh Surpasser
 
hadimhd's Avatar
 
Joined in May 2009
22 posts
Gave thanks: 4
Thanked 1 Time in 1 Post
thnx for the tutorial..

i just added * .domain , in subdomains and set its path to the same folder.
it just worked. All subdomains are working.
hadimhd is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old June 16th, 2009, 2:26 AM   #48 (permalink)
Registered User
Comfy Contributor
 
Hardtana's Avatar
 
Joined in Mar 2005
Lives in Beograd, Serbia
Hosted on pass50
111 posts
Gave thanks: 2
Thanked 0 times
Send a message via AIM to Hardtana Send a message via MSN to Hardtana Send a message via Yahoo to Hardtana Send a message via Skype™ to Hardtana
Thanks for the tut, as usual it was very helpful.

I'm experimenting with it to see how it works, as installing it [at the place where my problematic site is hosted] is not going to be this easy. O_O
Hardtana is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old June 17th, 2009, 8:41 AM   #49 (permalink)
Registered User
Comfy Contributor
 
Hardtana's Avatar
 
Joined in Mar 2005
Lives in Beograd, Serbia
Hosted on pass50
111 posts
Gave thanks: 2
Thanked 0 times
Send a message via AIM to Hardtana Send a message via MSN to Hardtana Send a message via Yahoo to Hardtana Send a message via Skype™ to Hardtana
OK, so I decided to handle all my personal sites with it.

What do I actually have to do?
I should email support and ask for wildcard domains on iva-is.me AND this, right?


Code:
<IfModule mod_rewrite.c>
RewriteEngine On

RewriteBase /

# Lock WPMu out of the following subdomain directories...
# These occur before the final rewrite of www.domain.tld to domain.tld
# which is my preference on how the domain is branded

RewriteCond %{HTTP_HOST} forum.benefact.org
RewriteCond %{REQUEST_URI} !forum/
RewriteRule ^(.*)$ forum/$1 [L]

# Rewrite www.benefact.org to benefact.org with a 301
RewriteCond %{HTTP_HOST} ^www.(.*) [NC]
RewriteRule ^(.*) http://%1/$1 [R=301,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]

#uploaded files
RewriteRule ^(.*/)?files/$ index.php [L]
RewriteRule ^(.*/)?files/(.*) wp-content/blogs.php?file=$2 [L]

</IfModule>
Hardtana is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On