<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: How to Configure NameVirtualHost in XAMPP&#8217;s Apache Server</title>
	<atom:link href="http://www.ardamis.com/2005/08/11/xampp-apache-namevirtualhost/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ardamis.com/2005/08/11/xampp-apache-namevirtualhost/</link>
	<description>Ardamis is a blog about web development and technology in general.</description>
	<lastBuildDate>Fri, 03 Feb 2012 03:06:09 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Pixeldrummer</title>
		<link>http://www.ardamis.com/2005/08/11/xampp-apache-namevirtualhost/#comment-89936</link>
		<dc:creator>Pixeldrummer</dc:creator>
		<pubDate>Sun, 22 Jan 2012 22:52:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.ardamis.com/2005/08/11/xampp-apache-namevirtualhost/#comment-89936</guid>
		<description>Thank you so much for your post. It was a bit of a nightmare finding the right tool (XAMPP) to use on my Windows machine. Then more frustration trying to configure it to use as a web server. I tried a few other instructions and nothing worked until I read yours. I&#039;ll now be able to take over the maintenance of a couple of website applications for a client whose sites I could not &quot;see&quot; and test with IIS (even though it worked for PHP sites) because they use .htaccess. I am sooooo grateful!</description>
		<content:encoded><![CDATA[<p>Thank you so much for your post. It was a bit of a nightmare finding the right tool (XAMPP) to use on my Windows machine. Then more frustration trying to configure it to use as a web server. I tried a few other instructions and nothing worked until I read yours. I&#8217;ll now be able to take over the maintenance of a couple of website applications for a client whose sites I could not &#8220;see&#8221; and test with IIS (even though it worked for PHP sites) because they use .htaccess. I am sooooo grateful!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hal</title>
		<link>http://www.ardamis.com/2005/08/11/xampp-apache-namevirtualhost/#comment-73319</link>
		<dc:creator>Hal</dc:creator>
		<pubDate>Mon, 19 Dec 2011 11:15:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.ardamis.com/2005/08/11/xampp-apache-namevirtualhost/#comment-73319</guid>
		<description>This was great -- clear, concise and it works perfectly.  I&#039;m using XAMPP 1.7.7 on Windows 7 - no Windows reboot necessary.  Just update the hosts file &amp; apache CONF file and you&#039;re good to go.</description>
		<content:encoded><![CDATA[<p>This was great &#8212; clear, concise and it works perfectly.  I&#8217;m using XAMPP 1.7.7 on Windows 7 &#8211; no Windows reboot necessary.  Just update the hosts file &amp; apache CONF file and you&#8217;re good to go.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stan</title>
		<link>http://www.ardamis.com/2005/08/11/xampp-apache-namevirtualhost/#comment-69672</link>
		<dc:creator>Stan</dc:creator>
		<pubDate>Wed, 07 Dec 2011 23:41:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.ardamis.com/2005/08/11/xampp-apache-namevirtualhost/#comment-69672</guid>
		<description>Thanks for this, I was on another site which had an example that didn&#039;t work and was a lot more complicated.</description>
		<content:encoded><![CDATA[<p>Thanks for this, I was on another site which had an example that didn&#8217;t work and was a lot more complicated.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Subash Pathak</title>
		<link>http://www.ardamis.com/2005/08/11/xampp-apache-namevirtualhost/#comment-66889</link>
		<dc:creator>Subash Pathak</dc:creator>
		<pubDate>Thu, 17 Nov 2011 08:36:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.ardamis.com/2005/08/11/xampp-apache-namevirtualhost/#comment-66889</guid>
		<description>Thanks DUDE</description>
		<content:encoded><![CDATA[<p>Thanks DUDE</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ardamis</title>
		<link>http://www.ardamis.com/2005/08/11/xampp-apache-namevirtualhost/#comment-61478</link>
		<dc:creator>ardamis</dc:creator>
		<pubDate>Sat, 24 Sep 2011 14:52:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.ardamis.com/2005/08/11/xampp-apache-namevirtualhost/#comment-61478</guid>
		<description>It looks like you are missing part of the HOSTS file line.

The line in HOSTS should be:

[sourcecode]
127.0.0.1 sumitlocal.localhost
[/sourcecode]

It also looks like you are missing some lines in xampp\apache\conf\extra\httpd-vhosts.conf.

The lines should be:

[sourcecode]
NameVirtualHost *:80
&lt;VirtualHost *:80&gt;
    DocumentRoot &quot;c:/xampp/htdocs&quot;
    ServerName localhost
&lt;/VirtualHost&gt;
&lt;VirtualHost *:80&gt;
    DocumentRoot &quot;c:/xampp/htdocs/sumitlocal&quot;
    ServerName sumitlocal.localhost
&lt;/VirtualHost&gt;
[/sourcecode]

Good luck.</description>
		<content:encoded><![CDATA[<p>It looks like you are missing part of the HOSTS file line.</p>
<p>The line in HOSTS should be:</p>
<pre class="brush: plain; title: ; notranslate">
127.0.0.1 sumitlocal.localhost
</pre>
<p>It also looks like you are missing some lines in xampp\apache\conf\extra\httpd-vhosts.conf.</p>
<p>The lines should be:</p>
<pre class="brush: plain; title: ; notranslate">
NameVirtualHost *:80
&lt;VirtualHost *:80&gt;
    DocumentRoot &quot;c:/xampp/htdocs&quot;
    ServerName localhost
&lt;/VirtualHost&gt;
&lt;VirtualHost *:80&gt;
    DocumentRoot &quot;c:/xampp/htdocs/sumitlocal&quot;
    ServerName sumitlocal.localhost
&lt;/VirtualHost&gt;
</pre>
<p>Good luck.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sumit kalra</title>
		<link>http://www.ardamis.com/2005/08/11/xampp-apache-namevirtualhost/#comment-61477</link>
		<dc:creator>sumit kalra</dc:creator>
		<pubDate>Sat, 24 Sep 2011 14:43:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.ardamis.com/2005/08/11/xampp-apache-namevirtualhost/#comment-61477</guid>
		<description>Hosts file content :127.0.0.1 sumitlocal
httpd-vhosts.conf Content

DocumentRoot “c:/xampp/htdocs/sumitlocal”
ServerName sumitlocal.localhost

After changes its showing me xampp folder content (http://localhost/ )

Please tell me what should i do
its show lthe path //http://sumitlocal/xampp
After restart  of my system and appache server  its not working 
still the same problem i am not abel to run my virtual site

i am using window 7  can i send u my both setting files</description>
		<content:encoded><![CDATA[<p>Hosts file content :127.0.0.1 sumitlocal<br />
httpd-vhosts.conf Content</p>
<p>DocumentRoot “c:/xampp/htdocs/sumitlocal”<br />
ServerName sumitlocal.localhost</p>
<p>After changes its showing me xampp folder content (<a href="http://localhost/" rel="nofollow">http://localhost/</a> )</p>
<p>Please tell me what should i do<br />
its show lthe path //http://sumitlocal/xampp<br />
After restart  of my system and appache server  its not working<br />
still the same problem i am not abel to run my virtual site</p>
<p>i am using window 7  can i send u my both setting files</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sumit kalra</title>
		<link>http://www.ardamis.com/2005/08/11/xampp-apache-namevirtualhost/#comment-61408</link>
		<dc:creator>sumit kalra</dc:creator>
		<pubDate>Fri, 23 Sep 2011 19:15:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.ardamis.com/2005/08/11/xampp-apache-namevirtualhost/#comment-61408</guid>
		<description>its not working</description>
		<content:encoded><![CDATA[<p>its not working</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sumit kalra</title>
		<link>http://www.ardamis.com/2005/08/11/xampp-apache-namevirtualhost/#comment-61405</link>
		<dc:creator>sumit kalra</dc:creator>
		<pubDate>Fri, 23 Sep 2011 18:44:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.ardamis.com/2005/08/11/xampp-apache-namevirtualhost/#comment-61405</guid>
		<description>Hosts file content  :127.0.0.1 sumitlocal
httpd-vhosts.conf Content  

	    DocumentRoot &quot;c:/xampp/htdocs/sumitlocal&quot;
	    ServerName sumitlocal.localhost
			

After changes its showing me xampp folder content (http://localhost/ )

Please tell me what should i do 
its show lthe path //http://sumitlocal/xampp</description>
		<content:encoded><![CDATA[<p>Hosts file content  :127.0.0.1 sumitlocal<br />
httpd-vhosts.conf Content  </p>
<p>	    DocumentRoot &#8220;c:/xampp/htdocs/sumitlocal&#8221;<br />
	    ServerName sumitlocal.localhost</p>
<p>After changes its showing me xampp folder content (<a href="http://localhost/" rel="nofollow">http://localhost/</a> )</p>
<p>Please tell me what should i do<br />
its show lthe path //http://sumitlocal/xampp</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kevin Stevens</title>
		<link>http://www.ardamis.com/2005/08/11/xampp-apache-namevirtualhost/#comment-52349</link>
		<dc:creator>Kevin Stevens</dc:creator>
		<pubDate>Mon, 20 Jun 2011 15:18:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.ardamis.com/2005/08/11/xampp-apache-namevirtualhost/#comment-52349</guid>
		<description>Thanks, I was having an issue with this and your post pointed the way (needed to add the &#039;ServerName localhost&#039; to my almost working configuration).
I am running xampp on Windows 7, and have found that you can leave out the drive letter in the path names, which means it&#039;s still a portable configuration : i.e.


    DocumentRoot &quot;/xampp/htdocs/drupal&quot;
    ServerName drupal.localhost


Works for me - ymmv!</description>
		<content:encoded><![CDATA[<p>Thanks, I was having an issue with this and your post pointed the way (needed to add the &#8216;ServerName localhost&#8217; to my almost working configuration).<br />
I am running xampp on Windows 7, and have found that you can leave out the drive letter in the path names, which means it&#8217;s still a portable configuration : i.e.</p>
<p>    DocumentRoot &#8220;/xampp/htdocs/drupal&#8221;<br />
    ServerName drupal.localhost</p>
<p>Works for me &#8211; ymmv!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ivan</title>
		<link>http://www.ardamis.com/2005/08/11/xampp-apache-namevirtualhost/#comment-50586</link>
		<dc:creator>Ivan</dc:creator>
		<pubDate>Fri, 22 Apr 2011 12:24:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.ardamis.com/2005/08/11/xampp-apache-namevirtualhost/#comment-50586</guid>
		<description>Hi!
I could not save the host file because this file doesn&#039;t have any extensions. What should I do?</description>
		<content:encoded><![CDATA[<p>Hi!<br />
I could not save the host file because this file doesn&#8217;t have any extensions. What should I do?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

