Hello guys, i already have my databases and scripts working, and i was implementing a small webserver under windows 7 with xampp.
But after configuring all needed in apache, i can see the pages in the server but non of the clients can see the pages. No error is displayed, just a message saying Internet Explorer cannot display the webpage
Httpd-vhosts.conf:
<VirtualHost *:80>
ServerAdmin joao.dias@centralcervejas.pt
DocumentRoot "C:/xampp/htdocs/ad/adtable"
ServerName kadar
ServerAlias www.kadar
<Directory "C:/xampp/htdocs/ad/adtable/" >
Options Indexes FollowSymLinks ExecCGI Includes
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
<VirtualHost *:80>
ServerAdmin joao.dias@centralcervejas.pt
DocumentRoot "C:/xampp/htdocs"
ServerName vendas
ServerAlias www.vendas
<Directory "C:/xampp/htdocs/" >
Options Indexes FollowSymLinks ExecCGI Includes
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
Windows hosts file:
# localhost name resolution is handled within DNS itself.
# 127.0.0.1 localhost
# ::1 localhost
10.5.135.75 kadar
10.5.135.75 vendas
The server ip is 10.5.135.75
if i access via 10.5.135.75 i cann access the kadar virtualhost
If i access via kadar i get message: Internet Explorer cannot display the webpage
If i access via vendas i get message: Internet Explorer cannot display the webpage
Already rebooted windows 3 times and apache server several times, with no luck
What am i doing wrong?