Page 1 of 1

xampplite, virtual host configuration needed

PostPosted: 01. October 2007 21:14
by thepatriotman
I have successfully installed xampplite and tested. I then installed Joomla in the c:/xampplite/htdocs for webdesign on my local machine.
I created the vitrtual directories as such
<VirtualHost *:80>
DocumentRoot c:/xampplite/htdocs
ServerName localhost
<Directory />
Options FollowSymLinks
AllowOverride All
</Directory>
</VirtualHost>

<VirtualHost *:80>
DocumentRoot c:/xampplite/htdocs/site1
ServerName localhost.site1
<Directory />
Options FollowSymLinks
AllowOverride All
</Directory>
</VirtualHost>

<VirtualHost *:80>
DocumentRoot c:/xampplite/htdocs/site2
ServerName localhost.site2
<Directory />
Options FollowSymLinks
AllowOverride All
</Directory>
</VirtualHost>

And my Windows host file as such

127.0.0.1 localhost
127.0.0.1 localhost.site1
127.0.0.1 localhost.site2

Upon start up of Apache I receive
Warning documentroot [c:/xampplite/htdocs/site1] does not exist
Warning documentroot [c:/xampplite/htdocs/site2 does not exist

I am able to pull up the sites default web pages, as I edit my software from the backend it changes both sites.
Being a beginner I m looking for any help you can supply

PostPosted: 01. October 2007 23:20
by Wiedmann
Warning documentroot [c:/xampplite/htdocs/site1] does not exist
Warning documentroot [c:/xampplite/htdocs/site2] does not exist

And does this two directorys exists?

PostPosted: 01. October 2007 23:24
by thepatriotman
yes they do but they are empty, does this require me to create new databases in MYSQL?
Thanky ou for the quick response