I am not sure of exactly what you want to accomplish, but you might be able
to do something with netcat.  From the readme.txt:

A far more exciting thing to do is to get a quick shell going on a remote
machine by using the -l or "listen" option and the -e or "execute"
option.  You run Netcat listening on particular port for a connection.
When a connection is made, Netcat executes the program of your choice
and connects the stdin and stdout of the program to the network connection.

nc -l -p 23 -t -e cmd.exe

[http://www.atstake.com/research/tools/network_utilities/]

so,
nc -l -p 81 -t -e php.exe

would route data coming in on port 81 to php.exe.  If memory serves, if
php.exe does not get a file specified, it reads from standard input, so this
might help you.

> -----Original Message-----
> From: Rich Stupek [mailto:[EMAIL PROTECTED] 
> Sent: Thursday, January 22, 2004 10:06 PM
> To: [EMAIL PROTECTED]
> Subject: [PHP-WIN] fastcgi again on 4.3.X
> 
> 
> Well still looking for the answer to how to run PHP 4.3.X as 
> a standalone in a server farm.  Anyone out there have the answer?
> 
> -- 
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
> 

-- 
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to