WPMU Wildcard Domains

x-mode

New Member
Hola,
weiss nicht, ob das Thema ein bischen zu spezifisch ist, aber ich finde auch im Wordpress-Forum keine Lösung und ich hoffe hier findet sich Rat.

Ich habe auf einem VServer mit Confixx bereits ein Wordpress-Multiuser-System für den User web10 im Einsatz, es funktioniert einwandfrei mit Wildcard-Subdomains, soll heissen, neue Blogs werden in der Form angelegt: http://neuerblog.wpmu.domain.tld (man beachte, dass es sich bei den Blogs um Sub-Subdomains handelt).

Jetzt wollte ich ein zweites identisches WPMU für User web3 auf einer anderen Domain installieren bei dem das WPMU ebefalls auf einer Subdomain liegt und neue Blogs auch als Subdomains
http://neuerblog.wpmu.domain.tld
angelegt werden sollen - Installation verlief auch reibungslos.

Allerdings bekomme ich bei dem neuen WPMU-System auf web3, nach dem Reggen und beim Aufrufen eines neuen Blogs eine Confixx Seite gezeigt, die sagt die entsprechende Subdomain wäre nicht vorhanden.....

Ich habe die vhosts-confs von web3 und web10 miteinander verglichen, sie lauten im Syntax gleich. Beide Installationen verwenden eine gleichlautende htaccess, mod_rewrite ist für beide vhosts aktiviert und trotzdem funzen auf dem neuen WPMU die Subdomains nicht.

Zum Vergleich Auszüge aus den beiden webx.conf, zuerst die des funktionierenden Systems auf web10:
Code:
<Directory "/var/www/web10/html">
  Options -FollowSymLinks -SymLinksIfOwnerMatch
  <IfModule mod_access.c>
    Allow from all
  </IfModule>
  <IfModule mod_authz_host.c>
    Allow from all
  </IfModule>
  php_admin_flag engine on
</Directory>

<VirtualHost 91.000.00.76:80>
  ServerName blogs.yyyy-rss.com
ServerAlias *.blogs.yyyy-rss.com
DocumentRoot /var/www/web10/html/sub/blogs
  SuexecUserGroup web10 web10
  ScriptAlias /cgi-bin/ /var/www/web10/html/cgi-bin/
  php_admin_value open_basedir /var/www/web10/html/:/var/www/web10/phptmp/:/var/www/web10/files/:/var/www/web10/atd/
  php_admin_value file_uploads 1
  php_admin_value upload_tmp_dir /var/www/web10/phptmp/

<Directory "/var/www/web10/html">
AllowOverride FileInfo
Options +FollowSymlinks
</Directory>
php_admin_flag safe_mode off
<Directory "/var/www/web10/html">
AllowOverride All
Options +FollowSymLinks +SymLinksIfOwnerMatch
</Directory>
suPHP_Engine off
RemoveHandler .php
php_admin_flag engine on
</VirtualHost>

und hier die webx.conf des nicht funktionierenden, neuen Systems web3:
Code:
<Directory "/var/www/web3/html">
  Options -FollowSymLinks -SymLinksIfOwnerMatch
  <IfModule mod_access.c>
    Allow from all
  </IfModule>
  <IfModule mod_authz_host.c>
    Allow from all
  </IfModule>
  php_admin_flag engine on
</Directory>

<VirtualHost 91.00.00.76:80>
  ServerName ist.echtxxxx.com
  ServerAlias *.ist.echtxxxx.com
  DocumentRoot /var/www/web3/html/wpmu
  SuexecUserGroup web3 web3
  ScriptAlias /cgi-bin/ /var/www/web3/html/cgi-bin/
  php_admin_value open_basedir /var/www/web3/html/:/var/www/web3/phptmp/:/var/www/web3/files/:/var/www/web3/atd/
  php_admin_value file_uploads 1
  php_admin_value upload_tmp_dir /var/www/web3/phptmp/

<Directory "/var/www/web3/html">
AllowOverride FileInfo
Options +FollowSymlinks
</Directory>
<Directory "/var/www/web3/html">
AllowOverride All
Options +FollowSymLinks +SymLinksIfOwnerMatch
</Directory>
suPHP_Engine off
RemoveHandler .php
php_admin_flag engine on
</VirtualHost>

Ich bin gerade ratlos.... jemand eine Idee?
Vielen Dank!
 
Back
Top