Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Ok Im not advanced in this area either. However after much playing around with XAMPP and following a few different guides I got mine working.</p> <p>The Host under drivers seems abit weird. I declared mine as:</p> <pre><code> 127.0.0.1:8080 test.localhost.com 127.0.0.1:8080 test2.localhost.com </code></pre> <p>Back up you Xampp, then extract a clean install to C: - Just because that Status check failure sounds like bad news. </p> <p>!Remember to run setup_xampp.bat from the xampp directory and install the apache service!</p> <p>Then under you httpd.conf add: </p> <pre><code>ServerRoot C:\xampp\apache Listen 7070 Listen 8080 Listen 9090 </code></pre> <p>Apache might not like that at first but meh.</p> <p>The ServerRoot may already be declared above the Listen spot so just double check.</p> <p>After that head to C:\xampp\apache\conf\extra.</p> <p>Edit the httpd-vhosts.conf.</p> <p>Under the section Name-based virtual hosting add:</p> <pre><code>NameVirtualHost *:7070 NameVirtualHost *:8080 NameVirtualHost *:9090 </code></pre> <p>There will be a couple of examples of virtual hosts below that. Add:</p> <pre><code>&lt;VirtualHost *:7070&gt; DocumentRoot "C:/xampp/www/YOURWEBSITEDIR1" ServerName test.localhost.com &lt;Directory "C://xampp/www/YOURWEBSITEDIR1"&gt; Allow from all &lt;/Directory&gt; &lt;/VirtualHost&gt; &lt;VirtualHost *:9090&gt; DocumentRoot "C:/xampp/www/YOURWEBSITEDIR2" ServerName test2.localhost.com &lt;Directory "C://xampp/www/YOURWEBSITEDIR2"&gt; Allow from all &lt;/Directory&gt; &lt;/VirtualHost&gt; </code></pre> <p>Not the double slash in the Directory tag. Now ensure there is an index.html under each of those directories. Restart the apache (Stop, start). </p> <p>I cant navigate to the test.localhost.com URLs, probably due to the fact they are terribly wrong in the HOSTs config. Though I can connect to 127.0.0.1:7070, 127.0.0.1:9090 and access the webpages from there. </p> <p>Also 127.0.0.1:8080 connects me to the xampp welcome panel that localhost used to connect you too.</p> <p>Hope this helps and good luck! </p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload