Hola :)
Kurioses Subdomain Problem:
Habe gerade auf meinen Server ein zweites WPMU installiert, meine erste Installation ist gut 3 Monate alt und funzt einwandfrei mit Subdomains. Bei der neuen Installation von heute bekomme ich nach dem Reggen eines neuen Blogs gesagt, die Subdomain wäre nicht vorhanden, wenn ich ihn aufrufe
Ich habe die vhosts-confs miteinander verglichen, sie lauten absolut gleich. Beide Installationen verwenden eine gleichlautende htaccess, mod_rewrite ist für beide vhosts aktiviert und trotzdem funzen auf dem neuen WPMU Subdomains nicht.
Zum Vergleich die beiden webx.conf, zuerst die funzende
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>
Alles anzeigen
und hier die nicht funzende:
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 echtxxxx.com
ServerAlias *.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>
Alles anzeigen
Ideen woran das noch liegen könnte? :D
Danke schonmal,
svchost