I have a system with Windows XP Professional and I do not have access to Administrator login. I wish to test some PHP sites however, do not have access to install web servers like IIS, XAMP or WAMP. Is there an alternate to run any such web server from a Pen Drive / Flash Drive.
Asked
Active
Viewed 1,664 times
0
-
When you Google `How can we run Web Server from a Pen Drive without Installation` there is a number of good options. Always remember to do that first. Thanks! – Pekka Dec 18 '13 at 19:46
2 Answers
1
You could use ubuntu or another linux distro on a bootable USB drive (you have to boot to the USB stick on start-up). You could then install a LAMP stack on the linux OS on pen drive and an IDE. Check it out here: http://www.ubuntu.com/download/desktop/create-a-usb-stick-on-windows

Arbiter
- 486
- 1
- 8
- 21
0
If you have php 5.4.0 or above available on your computer, you can run a simple webserver like this from command line
php -S localhost:8000

Kalyan02
- 1,416
- 11
- 16
-
Thanks for your response, as I said I just have windows with no admin priviledge. Nothing related to web is installed, No PHP, no MySql – Hybrid Solutions Dec 18 '13 at 19:53
-
@HybridSolutions You can download PHP in a .zip, with no installation required. Get it here: http://windows.php.net/download/ Click the "zip" download link - it should be the top one. – starbeamrainbowlabs Nov 02 '14 at 10:20