You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by Jose Morales <jm...@yahoo.com> on 2002/03/12 15:06:37 UTC

error in virtual domains

Hello list...

I had configured some virtual domains: domains1.com,
domains2.com and domain3.com
Some times when I access any domain, the browser does
not show anything, I check in the error_log and see
the next error:
No directory () for Hostname www.domains1.com
I have checked the configuration and is fine compared
with the sample that comes with the http.conf.

Can any body tell me what happens???
I have: Apache/1.3.23 (Unix) mod_mp3/0.35 PHP/4.1.2
mod_fastcgi/2.2.12 mod_perl/1.26 mod_ssl/2.8.7
OpenSSL/0.9.6c

Regards.


__________________________________________________
Do You Yahoo!?
Try FREE Yahoo! Mail - the world's greatest free email!
http://mail.yahoo.com/

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: error in virtual domains

Posted by Jose Morales <jm...@yahoo.com>.
Guys...
I found the problem!!!!
I have a module called DynavicVirtual host, I didn�t
defined the directive for that module.

Regards.

JM.
--- Carlos Costa Portela <cc...@servidores.net>
wrote:
> 	Well, I can read something like 'Under
> construction' and so. Is
> that correct?
> 
>   http://www.tertulandia.com : sea cual sea tu
> tema... all� est� tu sitio!
> 
>  _______Carlos Costa
>
Portela_________________________________________________
> | e-mail:  ccosta@servidores.net | home page:
> http://casa.ccp.servidores.net |
> |_____T�dalas persoas maiores foron nenos antes,
> pero poucas se lembran______|
> 
> 
>
---------------------------------------------------------------------
> The official User-To-User support forum of the
> Apache HTTP Server Project.
> See <URL:http://httpd.apache.org/userslist.html> for
> more info.
> To unsubscribe, e-mail:
> users-unsubscribe@httpd.apache.org
> For additional commands, e-mail:
> users-help@httpd.apache.org
> 


__________________________________________________
Do You Yahoo!?
Try FREE Yahoo! Mail - the world's greatest free email!
http://mail.yahoo.com/

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: error in virtual domains

Posted by Carlos Costa Portela <cc...@servidores.net>.
	Well, I can read something like 'Under construction' and so. Is
that correct?

  http://www.tertulandia.com : sea cual sea tu tema... allí está tu sitio!

 _______Carlos Costa Portela_________________________________________________
| e-mail:  ccosta@servidores.net | home page: http://casa.ccp.servidores.net |
|_____Tódalas persoas maiores foron nenos antes, pero poucas se lembran______|


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: error in virtual domains

Posted by Jose Morales <jm...@yahoo.com>.
Below is the configuration of my personal site

<VirtualHost 168.234.196.147:80>
    ServerAdmin webmaster@jose.morales.name
    ServerName www.jose.morales.name
    DocumentRoot "/Hosting/jm/jose.morales.name/html"
    <Directory "/Hosting/jm/jose.morales.name/html">
         #Options Indexes FollowSymLinks MultiViews
         Options Includes FollowSymLinks MultiViews
         AllowOverride None
         Order allow,deny
         Allow from all
    </Directory>
    #ErrorDocument 404 /missing.php
    ErrorLog
/usr/local/apache1323/logs/jmname-error_log
    CustomLog
/usr/local/apache1323/logs/jmname-access_log combined
    ScriptAlias /cgi-bin/
"/Hosting/jm/jose.morales.name/cgi-bin/"
    <Directory
"/Hosting/jm/jose.morales.name/cgi-bin">
        AllowOverride None
        Options None
        Order allow,deny
        Allow from all
    </Directory>
   Alias /webmail/
"/Hosting/jm/jose.morales.name/webmail/"

    <Directory
"/Hosting/jm/jose.morales.name/webmail">
        Options All
        AllowOverride None
        Allow from All
    </Directory>
</VirtualHost>

Thanks for you help.

Jos� Morales


--- Carlos Costa Portela <cc...@servidores.net>
wrote:
> On Tue, 12 Mar 2002, Jose Morales wrote:
> > No directory () for Hostname www.domains1.com
> > I have checked the configuration and is fine
> compared
> > with the sample that comes with the http.conf.
> 
> 	Have you specified DocumentRoot inside the
> <VirtualHost> tags?.
> Show us your httpd.conf file (or a relevant section)
> and we can help you.
> 
> 	Best regards,
> 		Carlos.
> 
>        [ all about apache and web ::
> http://www.improveyourweb.com/ ]
> 
>  _______Carlos Costa
>
Portela_________________________________________________
> | e-mail:  ccosta@servidores.net | home page:
> http://casa.ccp.servidores.net |
> |_____T�dalas persoas maiores foron nenos antes,
> pero poucas se lembran______|
> 
> 
>
---------------------------------------------------------------------
> The official User-To-User support forum of the
> Apache HTTP Server Project.
> See <URL:http://httpd.apache.org/userslist.html> for
> more info.
> To unsubscribe, e-mail:
> users-unsubscribe@httpd.apache.org
> For additional commands, e-mail:
> users-help@httpd.apache.org
> 


__________________________________________________
Do You Yahoo!?
Try FREE Yahoo! Mail - the world's greatest free email!
http://mail.yahoo.com/

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: error in virtual domains

Posted by Carlos Costa Portela <cc...@servidores.net>.
On Tue, 12 Mar 2002, Jose Morales wrote:
> No directory () for Hostname www.domains1.com
> I have checked the configuration and is fine compared
> with the sample that comes with the http.conf.

	Have you specified DocumentRoot inside the <VirtualHost> tags?.
Show us your httpd.conf file (or a relevant section) and we can help you.

	Best regards,
		Carlos.

       [ all about apache and web :: http://www.improveyourweb.com/ ]

 _______Carlos Costa Portela_________________________________________________
| e-mail:  ccosta@servidores.net | home page: http://casa.ccp.servidores.net |
|_____Tódalas persoas maiores foron nenos antes, pero poucas se lembran______|


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org