Virtual hosts 'site' DNS server could not be found

Problems with the Windows version of XAMPP, questions, comments, and anything related.

Virtual hosts 'site' DNS server could not be found

Postby makeitso » 24. May 2016 18:37

Hi all, I'm at a total loss here and decided to post my problem hoping someone knows the problem. I'm using Windows 10 Professional. I have installed Xampp 3.3.2 (Apache included) and wish to set up Virtual Hosts for 2x web sites called budget & bayside. It seems that the include htppd.conf file is not being read. The localhost works from the Xampp/htdocs dir but the virtual ones will not work at all. Just keeps saying can't be found. I always restart Xampp before testing. I have removed all the code with # before it to consolidate the programs. I have put it all below and labelled each section for easier reading. Any help would be much appreciated. I also disabled World wide pulishing from Windows 10 because it used port 80 too.

Directories used/created: (with index.html files for testing purposes)

C:/vhosts/bayside
C:/vhosts/budget
C:/Xampp/htdocs

C:/Windows/System/Drivers/etc/hosts (no file extention)

127.0.0.1 localhost
::1 localhost
127.0.0.1 budget
127.0.0.1 bayside

C:/Xampp/apache/conf/httpd.conf

ServerRoot "C:/xampp/apache"
Listen 80
LoadModule access_compat_module modules/mod_access_compat.so
LoadModule actions_module modules/mod_actions.so
LoadModule alias_module modules/mod_alias.so
LoadModule allowmethods_module modules/mod_allowmethods.so
LoadModule asis_module modules/mod_asis.so
LoadModule auth_basic_module modules/mod_auth_basic.so
LoadModule authn_core_module modules/mod_authn_core.so
LoadModule authn_file_module modules/mod_authn_file.so
LoadModule authz_core_module modules/mod_authz_core.so
LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
LoadModule authz_host_module modules/mod_authz_host.so
LoadModule authz_user_module modules/mod_authz_user.so
LoadModule autoindex_module modules/mod_autoindex.so
LoadModule cgi_module modules/mod_cgi.so
LoadModule dav_lock_module modules/mod_dav_lock.so
LoadModule dir_module modules/mod_dir.so
LoadModule env_module modules/mod_env.so
LoadModule headers_module modules/mod_headers.so
LoadModule include_module modules/mod_include.so
LoadModule info_module modules/mod_info.so
LoadModule isapi_module modules/mod_isapi.so
LoadModule log_config_module modules/mod_log_config.so
LoadModule cache_disk_module modules/mod_cache_disk.so
LoadModule mime_module modules/mod_mime.so
LoadModule negotiation_module modules/mod_negotiation.so
LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_ajp_module modules/mod_proxy_ajp.so
LoadModule rewrite_module modules/mod_rewrite.so
LoadModule setenvif_module modules/mod_setenvif.so
LoadModule socache_shmcb_module modules/mod_socache_shmcb.so
LoadModule ssl_module modules/mod_ssl.so
LoadModule status_module modules/mod_status.so
LoadModule version_module modules/mod_version.so
<IfModule unixd_module>
User daemon
Group daemon
</IfModule>
ServerAdmin postmaster@localhost
ServerName localhost:80
<Directory />
AllowOverride none
Require all denied
</Directory>
DocumentRoot "C:/xampp/htdocs"
<Directory "C:/xampp/htdocs">
Options Indexes FollowSymLinks Includes ExecCGI
AllowOverride All
Require all granted
</Directory>
<IfModule dir_module>
DirectoryIndex index.php index.pl index.cgi index.asp index.shtml index.html index.htm \
default.php default.pl default.cgi default.asp default.shtml default.html default.htm \
home.php home.pl home.cgi home.asp home.shtml home.html home.htm
</IfModule>

C:/Xampp/apache/conf/extra/httpd-vhosts.conf

<Directory C:/vhosts>
Order Deny,Allow
Allow from all
</Directory>
NameVirtualHost *:80
<VirtualHost *:80>
DocumentRoot C:/xampp/htdocs
ServerName localhost
</VirtualHost>
<VirtualHost *:80>
DocumentRoot C:/vhosts/bayside
ServerName bayside
</VirtualHost>
<VirtualHost *:80>
DocumentRoot C:/vhosts/budget
ServerName budget
</VirtualHost>
makeitso
 
Posts: 2
Joined: 24. May 2016 18:32
XAMPP version: 3.2.2
Operating System: Windows 10

Re: Virtual hosts 'site' DNS server could not be found

Postby Nobbie » 24. May 2016 19:41

makeitso wrote:Just keeps saying can't be found.


This is an extremely poor description and quite unusable. If you would like us to help you, please provide exact and complete information:

a) on which PC do you start the browser in order to call your VirtualHosts?

b) what exactly do you enter into the browsers URL line?

c) what exactly does happen? please provide the full error message including any error number. "cant be found" is not a valid message, its nothing.

Anyway, youre VirtualHost declarations are very incomplete, where and how do you grant any rights to the client in order to access c:/vhosts/....? Their is neither any "Allow From..." Clause nor any "Require..." Clause.
Nobbie
 
Posts: 13182
Joined: 09. March 2008 13:04

Re: Virtual hosts 'site' DNS server could not be found

Postby makeitso » 25. May 2016 10:37

Hi, I have removed the code from the individual files that had a hashtag so as to consolidate the post. I start Chrome from my own PC (that I'm wanting virtual hosts from. I have tried entering:
http://localhost (this is the only one that works),
http://budget/ (doesn't work)
http://bayside/ (doesn't work)
127.0.0.1/budget/ (doesn't work)
127.0.0.1/bayside (doesn't work)

The error message is:
This site can’t be reached

budget’s server DNS address could not be found.
Did you mean http://budget.com/?
Search Google for budget
ERR_NAME_NOT_RESOLVED

I am using David Powells Dreamweaver CS$4 with CSS, Ajax, and PHP book published by Friends of Ed to set up the Xampp/Apache Virtual Servers but it is tricky to follow and his instructions refer to an earlier version of Xampp.

The Allow code is about 20 lines up from my first post and looks like:

<Directory C:/vhosts>
Order Deny,Allow
Allow from all
</Directory>

Also for some reason when I copied and pasted my original message it missed off this section of code from the httpd.conf file at the end:

</IfModule>
<Files ".ht*">
Require all denied
</Files>
ErrorLog "logs/error.log"
LogLevel warn
<IfModule log_config_module>
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %b" common
<IfModule logio_module>
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
</IfModule>
CustomLog "logs/access.log" combined
</IfModule>
<IfModule alias_module>
ScriptAlias /cgi-bin/ "C:/xampp/cgi-bin/"
</IfModule>
<IfModule cgid_module>
</IfModule>
<Directory "C:/xampp/cgi-bin">
AllowOverride All
Options None
Require all granted
</Directory>
<IfModule mime_module>
TypesConfig conf/mime.types
AddType application/x-compress .Z
AddType application/x-gzip .gz .tgz
AddHandler cgi-script .cgi .pl .asp
AddType text/html .shtml
AddOutputFilter INCLUDES .shtml
</IfModule>
<IfModule mime_magic_module>
MIMEMagicFile "conf/magic"
</IfModule>
Include conf/extra/httpd-mpm.conf
Include conf/extra/httpd-multilang-errordoc.conf
Include conf/extra/httpd-autoindex.conf
Include conf/extra/httpd-languages.conf
Include conf/extra/httpd-userdir.conf
Include conf/extra/httpd-info.conf
Include conf/extra/httpd-vhosts.conf
Include "conf/extra/httpd-proxy.conf"
Include "conf/extra/httpd-default.conf"
Include "conf/extra/httpd-xampp.conf"
<IfModule proxy_html_module>
Include conf/extra/proxy-html.conf
</IfModule>
Include conf/extra/httpd-ssl.conf
<IfModule ssl_module>
SSLRandomSeed startup builtin
SSLRandomSeed connect builtin
</IfModule>
AcceptFilter http none
AcceptFilter https none
<IfModule mod_proxy.c>
<IfModule mod_proxy_ajp.c>
Include "conf/extra/httpd-ajp.conf"
</IfModule>
</IfModule>
makeitso
 
Posts: 2
Joined: 24. May 2016 18:32
XAMPP version: 3.2.2
Operating System: Windows 10


Return to XAMPP for Windows

Who is online

Users browsing this forum: No registered users and 90 guests