Problem with Virtual host

Author Message

Adas Wasowski

Tuesday 10 January 2006 6:31:38 am

Im my .htaccess I have (/opt/lampp/htdocs/ez/.htaccess):

NameVirtualHost 127.0.0.1
 
<VirtualHost 127.0.0.1>
    <Directory /opt/lampp/htdocs/ez>
        Options FollowSymLinks
        AllowOverride None
    </Directory>
 
    <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>
 
    DirectoryIndex index.php
 
    <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>
 
    DocumentRoot /opt/lampp/htdocs/ez
    ServerName localhost/ez
    ServerAlias localhost/ez
</VirtualHost>

and I have a message when I go to http://localhost/ez

Internal Server Error

The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator, you@your.address and inform them of the time the error occurred, and anything you might have done that may have caused the error.

More information about this error may be available in the server error log.
Apache/2.0.53 (Unix) mod_ssl/2.0.53 OpenSSL/0.9.7d PHP/4.3.11 DAV/2 mod_perl/1.999.21 Perl/v5.8.6 Server at localhost Port 80

what is wrong??
thanks

Adas Wasowski

Tuesday 10 January 2006 6:38:05 am

in site.ini i have:

[SiteAccessSettings]
AvailableSiteAccessList[]
AvailableSiteAccessList[]=ez
MatchOrder=host
HostMatchMapItems[]=localhost/ez;ez

Łukasz Serwatka

Thursday 12 January 2006 11:48:09 pm

Hi Adas,

<VirtualHost> directive is not allowed in .htaccess files. You need to configure your VH in the server configuration file httpd.conf.

Take a look on on this example:
http://ez.no/doc/ez_publish/technical_manual/3_6/installation/virtual_host_setup/virtual_host_example

Personal website -> http://serwatka.net
Blog (about eZ Publish) -> http://serwatka.net/blog

Adas Wasowski

Friday 13 January 2006 2:50:57 am

Hi Lukasz

thanks, it works on my local machine

but I dont have permission to access to http.conf on web server, what can I do? is it a another way??

Łukasz Serwatka

Friday 13 January 2006 2:58:09 am

You can ask your hosting administrator for help. He can add this directive in to httpd.conf. This is shouldn't be a problem.

Personal website -> http://serwatka.net
Blog (about eZ Publish) -> http://serwatka.net/blog

Adas Wasowski

Wednesday 01 February 2006 8:06:38 am

this works fine, but i lost access to /mail folder.
i have a /mail folder
when i go to http://domain.com/mail i cannot check up my emails but i have ezerror: Module not found.
what should i change in my file httpd.conf
but:
RewriteRule ^/mail - [L]
RewriteRule ^/mail/.* - [L]
doesnt work

Powered by eZ Publish™ CMS Open Source Web Content Management. Copyright © 1999-2014 eZ Systems AS (except where otherwise noted). All rights reserved.