Re: [EMAIL PROTECTED] warning message and virtual hosts

2006-03-09 Thread Jonathan S. Abrams
Victor, Thank you for your response. It got me thinking in the right paradigm to solve the problem. My main httpd.conf file had an Include line for including other .conf files. The problem was that the syntax of this line ended in *.conf, so all of the .conf files in the specified path wer

Re: [EMAIL PROTECTED] warning message and virtual hosts

2006-03-09 Thread Victor Trac
Is the error: [warn] NameVirtualHost aaa.bbb.ccc.ddd:80 has no VirtualHosts or [warn] NameVirtualHost *:80 has no VirtualHosts If you have a directive, but the error is actually "[warn] NameVirtualHost *:80 has no VirtualHosts", then you have an extra "NameVirtualHost *:80" somewhere. Do you hav

Re: [EMAIL PROTECTED] warning message and virtual hosts

2006-03-09 Thread Jonathan S. Abrams
Perhaps the syntax in my .conf file is wrong. Here is a more explicit description of my .conf file. NameVirtualHost aaa.bbb.ccc.ddd:80 #a bunch of stuff that is commented out ServerAdmin [EMAIL PROTECTED] DocumentRoot ibetyouwouldliketoknowthistoo ServerName e.f.com:80 CustomLog

Re: [EMAIL PROTECTED] warning message and virtual hosts

2006-03-09 Thread Aleksandar Skodric
Your .conf should contain something like this: # name based virtualhost NameVirtualHost *:80 # default virtualhost if nothing else matches criteria . Basicly, it seems that you have stated NameVitrualHost *:80 but have none virtual host and that's why Apache is complainig. Cheers, Alek

[EMAIL PROTECTED] warning message and virtual hosts

2006-03-09 Thread Jonathan S. Abrams
I am using Apache v2.0.55. In my error log file, I am seeing the following entry. [warn] NameVirtualHost *:80 has no VirtualHosts Now, looking in my .conf file, I do see a line that reads "NameVirtualHost *:80", and it is commented out. However, when I uncommented it, I still received the w