Re: CF and PHP same server

2008-09-17 Thread Shannon Peevey
Prefork is essentially the same model as Apache 1.3, so should be able to handle most volumes that you throw at it. Unless, of course, you get enough to need to load-balance :) On Tue, Sep 16, 2008 at 6:56 PM, James Holmes [EMAIL PROTECTED]wrote: PHP requires a single threaded webserver (as

Re: CF and PHP same server

2008-09-17 Thread Bryan Stevenson
Thanks for all the replies folkswe're up and running and it's smooth as silk ;-) Cheers - Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell: 250.920.8830 e-mail: [EMAIL PROTECTED] web:

CF and PHP same server

2008-09-16 Thread Bryan Stevenson
Hey All, Just checking for any major gotchas with running CF and PHP on the same server (a VPS BTW)?? Would be CF 8 and whatever the latest PHP is. TIA Cheers - Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax:

Re: CF and PHP same server

2008-09-16 Thread Barney Boisvert
I do it without issue on several boxes. Web server just delegates to the right engine based on extension: works like a charm. cheers, barneyb On Tue, Sep 16, 2008 at 9:40 AM, Bryan Stevenson [EMAIL PROTECTED] wrote: Hey All, Just checking for any major gotchas with running CF and PHP on the

Re: CF and PHP same server

2008-09-16 Thread Bryan Stevenson
On Tue, 2008-09-16 at 09:42 -0700, Barney Boisvert wrote: I do it without issue on several boxes. Web server just delegates to the right engine based on extension: works like a charm. cheers, barneyb Thanks Barneyfigured it would be fairly safe/straightforward. BTW...what OS and web

Re: CF and PHP same server

2008-09-16 Thread Barney Boisvert
I use Apache on Linux everywhere I've done both, using both JRun and Tomcat as the JEE server for CF to live in. cheers, barneyb On Tue, Sep 16, 2008 at 10:11 AM, Bryan Stevenson [EMAIL PROTECTED] wrote: BTW...what OS and web server are you doing this with? Windows/IIS? Windows/Apache?

Re: CF and PHP same server

2008-09-16 Thread Kay Smoljak
On Wed, Sep 17, 2008 at 2:11 AM, Bryan Stevenson [EMAIL PROTECTED] wrote: BTW...what OS and web server are you doing this with? We'd be Windows 2003 with IIS 6 for this one. I've been running this config on shared hosting for 3+ years - so I can run WordPress for my blog and CF for demos. Have

Re: CF and PHP same server

2008-09-16 Thread James Holmes
PHP requires a single threaded webserver (as some of the libraries it runs aren't thread safe: http://neosmart.net/blog/2008/dont-believe-the-lies-php-isnt-thread-safe-yet/), so you need to run the Apache Prefork MPM. This is less than optimal for high volume sites, but it will work. On Wed, Sep