Keep Server Online
If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.
or
A donation makes a contribution towards the costs, the time and effort that's going in this site and building.
Thank You! Steffen
Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
| |
|
Topic: Trying to run PHP docs on Win2K Server |
|
Author |
|
rabidjade
Joined: 12 Oct 2006 Posts: 25
|
Posted: Sat 11 Nov '06 4:47 Post subject: Trying to run PHP docs on Win2K Server |
|
|
Currently I have PHP 4.4.3 loaded in Apache 2.0.55. From remote machines I can open php pages fine. I to do something I needed to install MySQL and phpmyadmin. No matter what I tried I could not load phpmyadmin remotely unless I put the entire phpmyadmin directory into one of my web sites and then it's a security risk and not what I want. I figured without further headaches, I would just access phpmyadmin on the server side and configure it from there.
Problem is I can't run php files on my server on the server side of things. I never needed to as I did all the past configurations remotely. However this has changed so I need to get this working. Is this easy or do I have a fun time ahead of me? |
|
Back to top |
|
James Blond Moderator
Joined: 19 Jan 2006 Posts: 7373 Location: Germany, Next to Hamburg
|
Posted: Sun 12 Nov '06 22:44 Post subject: |
|
|
You can put it outside your htdocs. And make it reachable with an alias.
Alias /phpmyadmin "C:/phpMyAdmin/"
<Directory "C:/phpMyAdmin">
AllowOverride AuthConfig
Order allow,deny
Allow from all
</Directory>
If you change Alllow from all to the ip e.g. 127.0.0.1 it will only be reachable from 127.0.0.1 |
|
Back to top |
|
|
|
|
|
|