Monday 19 February 2007 6:59:56 am
Hi guys, I have just tried to enable virtual host setup and apache hangs loading the user site of my test install. The admin site works, albeit it seems a bit slower than without the virtual host setup, the user site hangs. Weird. In the apache error log I find the following:
[ Feb 19 2007 15:53:05 ] [217.224.218.88] index:
Undefined module: stylesheets
[ Feb 19 2007 15:53:05 ] [217.224.218.88] index:
Undefined module: stylesheets
[ Feb 19 2007 15:53:05 ] [217.224.218.88] error/view.php:
Error ocurred using URI: /stylesheets/t02/classes-colors.css
[ Feb 19 2007 15:53:05 ] [217.224.218.88] error/view.php:
Error ocurred using URI: /stylesheets/t02/site-colors.css
I have debian, apache 1.3, php4 mysql 4 Virtual Host setup looks as follows
<VirtualHost *>
ServerName my.site.de
DocumentRoot /var/www/directory
ServerAlias myintern.site.de
<Directory /var/www/karstenj/stories/dev>
Options FollowSymLinks
AllowOverride None
</Directory>
DirectoryIndex index.php
<IfModule mod_php4.c>
php_admin_flag safe_mode Off
php_admin_value register_globals 0
php_value magic_quotes_gpc 0
php_value magic_quotes_runtime 0
php_value allow_call_time_pass_reference 0
</IfModule>
<IfModule mod_rewrite.c>
RewriteEngine On
Rewriterule ^/var/storage/.* - [L]
Rewriterule ^/var/[^/]+/storage/.* - [L]
RewriteRule ^/var/cache/texttoimage/.* - [L]
RewriteRule ^/var/[^/]+/cache/texttoimage/.* - [L]
Rewriterule ^/design/[^/]+/(stylesheets|images|javascript)/.* - [L]
Rewriterule ^/share/icons/.* - [L]
Rewriterule ^/extension/[^/]+/design/[^/]+/(stylesheets|images|javascripts?)/.* - [L]
Rewriterule ^/packages/styles/.+/(stylesheets|images|javascript)/[^/]+/.* - [L]
RewriteRule ^/packages/styles/.+/thumbnail/.* - [L]
RewriteRule ^/favicon\.ico - [L]
RewriteRule ^/robots\.txt - [L]
# Uncomment the following lines when using popup style debug.
# RewriteRule ^/var/cache/debug\.html.* - [L]
# RewriteRule ^/var/[^/]+/cache/debug\.html.* - [L]
RewriteRule .* /index.php
</IfModule>
</VirtualHost>
Any ideas?
|