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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Application server used for PHP development

Status
Not open for further replies.

Hawki

Programmer
Oct 16, 1999
63
0
0
US
I would like to find out what Application Servers that could be used to develop PHP commercial grade software. I will be using Linux or Solaris as a development platforms.
 
i wonder what you mean by Application Server ...

php will run on most environments. the best environment to choose is a function of what you need your application to do. In the majority of cases a simple linux box will suffice with httpd and mysql installed. you can add further duplicate boxes with a squid server for some type of scalability (with db replication). equally you can also hive off the mysql install to a separate dedicated database server and then also multiply that into load balanced environments. all with open-source software.

some php sites require native microsoft bits to work (for example printing solutions). for this you would need an MS box in your architecture.

some of my apps make very heavy use of external system calls for optimisation. If this is applicable to you, make sure that those command line programmes are available to the platforms you select, preferrably in some nice apt or other package installer.

sometimes your app may be entirely command line, in which case httpd is unlikely to be necessary.

basically your question is similar to 'I need to tie something up, how long should my string be?' We don't know what it is you are trying to tie. If we did we could tell you how long and also whether string is the best medium.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top