Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Easy Server Setup

Status
Not open for further replies.

JurkMonkey

Programmer
Nov 23, 2004
1,731
CA
Hi Guys,

I'm looking for a server that is easy to setup that supports PHP.

The Apache tutorial I found didn't make any sense....

Any suggestions?
 
There are lots of (freeware;) PHP+Apache+etc bundles (ready to install) for (almost;) all platforms. Search INET with PHP Apache bundle...
 
I use Xampp from Apachefriends. It has been a great timesaver. It has all the main items I need (Apache, PHP 4 and 5, FTP, etc). It runs on windows or *nix. You can have a server setup and running in under 30 min. Not counting the OS.
One note, I use this for devel and testing. They recommend not using this for a production server for security reasons. I have not found any big security issues with it (under Debian) but I will build my final production server from the groud up with security in mind.

Dave
 
those are very good resources, but why didn't you try to install it manually? you will get more knowledgement that unpacking some "bundled package".

Install apache and php is quite easy:

1. Download Apache and php (sources)
2. compile and install Apache:
./configure --prefix=/usr/local/apache
make && make install
3. compile and install php:
./configure --prefix=/usr/local/php --with-apx2=/usr/local/apache/bin --enable-feature
4. start apache:
/usr/local/apache/bin/apachectl start

done!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top