faqts : Computers : Programming : Languages : PHP : Installation and Setup : Operating Systems : Windows

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

3 of 4 people (75%) answered Yes
Recently 2 of 3 people (67%) answered Yes

Entry

How I can configure PHP to execute scripts from a remote computer

Jun 12th, 2001 12:53
Florian Grimm, gaspar arias,


if you you have local network access to the remote computer
configure your apache(or what ever) !
1) add a network drive (e.g. n:\)
2) make an virtual diretory to the remote directory
for apache:
<Directory "n:/remotephp">
  Options Indexes FollowSymLinks ExecCGI
  AllowOverride None
  Order allow,deny
  Allow from all
</Directory>
Alias /otherphp/ "n:/remotephp/"
so you can acces with http://localhost/otherphp/my.php
for iis 
make a virtual directory by clicking .... (its really simple, too)
hope this helps
Flori