XAMPP diagnostic page and my own working together - how?

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

XAMPP diagnostic page and my own working together - how?

Postby Zirian » 23. August 2005 19:32

Hi.

How the subject says - in htdocs folders are files from XAMPP diagnostic page, where I can access Webalizaer, phpAdmin, see the status etc. To these time a daleted thise files, and had put there my own page.
Now I would like to do, that diagnostic page will be still active, and my own also. I tried by putting XAMPP files of diagnostic page to another folder (also by change some parts in apache configuration), but it doesn`t work.
My adres is now only public IP address, till I will register a domain. How to make, that by address for example http://XX.XX.XXX.XX/ will be show my page, and for example http://XX.XX.XXX.XX/xampp diagnostic page of XAMMP? What I should to change in httpd.conf?

Or maybe you have other better proposition for me? Forgive for stupid qquestions, but I star in this world :)

Thanks for your help
Zirian
 
Posts: 2
Joined: 23. August 2005 19:18

Postby Dave_L » 24. August 2005 04:16

Replace htdocs/index.html with your own file.

Then http://xxx.xxx.xxx.xxx/ will access your index.html, and http://xxx.xxx.xxx.xxx/xampp/ will access the original XAMPP page.
User avatar
Dave_L
 
Posts: 212
Joined: 23. October 2004 00:43

Postby Bugman » 24. August 2005 08:39

Will you just be running the pages from home?

E.g. you have a server on your home computer which only you want to use and not the outside world?

Bugman
Bugman
 
Posts: 53
Joined: 13. July 2004 23:39

Postby Zirian » 24. August 2005 13:05

I have resolve that problem by VirtualHost. I found some tips in other post so:

Code: Select all
NameVirtualHost *:80

<VirtualHost *:80>
    ServerName localhost:80
    DocumentRoot "/xampp/htdocs"
    <Directory "/xampp/htdocs">
        Order Allow,Deny
        Allow from all
        #Options All
        #AllowOverride All
    </Directory>
</VirtualHost>

<VirtualHost *:80>
    ServerName XXX.XXX.XX.XXX:80
    DocumentRoot "D:/www"
    <Directory "D:/www">
        Order Allow,Deny
        Allow from all
        #Options All
        #AllowOverride All
    </Directory>
</VirtualHost>



where XXX.XXX.XX.XXX is my IP address. That should work.

But, if you can tell me, how to do, that logs from this side will be somewhere writen, that webalizer could show me that, or Awstat.
Zirian
 
Posts: 2
Joined: 23. August 2005 19:18


Return to XAMPP for Windows

Who is online

Users browsing this forum: No registered users and 129 guests