Hi, I'm using ClarckConnect linux distro for my Web (and other functions) server. In my first install of CC 3.x, I used the /var/www/html for all my needs in term of web server. But since I had, in the long run, many things that were not really related to the main web site in this directory, I want to make use of the virtual host in Apache. So far, I'm not sure it is working as expected. My sittuation is the following: - I use a DynDNS dynamic address for a domain name that, let,s say, is meall.homedns.org. - In in web server config of CC, I made the server name to be meall.homedns.org, SSL disable (don't use it anyway, but I read that SSL could be working badly with names server feature of Apache) - I made the default web server (the one in the /var/www/html) to www.meall.homedns.org - I created a virtual host with a name like virtualserver.meall.homedns.org. CC created a directory with that name in the /var/www/virtual directory. - my ISP is blocking port 80, so I change the port number for the web server to 8080 (using webmin) for each virtual hosts and for the main server as well. - I have a Linksys router in front of my server, so I redirected the port 8080 to my server IP address. - I change the default statement "listen 80" to "listen 8080" and NameServer *:8080 too. That make it works for basic HTML files. (kinda Hello world) Without that, it was not working, even if the virtual host port has been changed to 8080. But trying to execute CGI script, from the virtual host, does not work. The CGI is executable, located in the ScriptAlias directory, so... ooking at the virtual host error log, I found this: mod_include: Options +Includes (or IncludesNoExec) wasn't set, INCLUDES filter removed But I already added that directive into my vhost file: <VirtualHost *:8080> ServerName virtualserver.meall.homedns.org ServerAlias *.virtualserver.meall.homedns.org DocumentRoot /var/www/virtual/virtualserver.meall.homedns.org ErrorLog /var/log/httpd/virtualserver.meall.homedns.org_error_log CustomLog /var/log/httpd/virtualserver.meall.homedns.org_access_log combined Options ExecCGI +Includes DirectoryIndex index.shtml </VirtualHost> So, where is the problem really? Is there anything else I need to do for CGI to work? Thanks