Creating a portable PHP install?
Posted
by Xeoncross
on Server Fault
See other posts from Server Fault
or by Xeoncross
Published on 2010-06-08T17:53:57Z
Indexed on
2010/06/08
18:02 UTC
Read the original article
Hit count: 230
I would like to create a folder with a couple versions of PHP that I can start in cgi mode as needed. I use different windows machines for development and I would like to be able to move around computers without needing to install PHP on each one. Something like below
F:/PHP
/5.3.2
/5.2.8
/5.1.0
Then I could just start each up as needed with something like
F:\php\5.3.2\php-cgi.exe -b 127.0.0.1:9000
Which would allow nginx or apache to use the PHP service. This would really help to make my development environment decoupled.
Does anyone know how to create a portable PHP install?
© Server Fault or respective owner