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