Page 1 of 1
best php5.2 version
Posted: Tue Jan 15, 2008 7:36 pm
by giggler
So since the next version of cmsms is going to be for php 5.2+ (right?), just wanted to know which of the 5.2 versions the best to use right now. Since I've heard using the newest can have problems...
Re: best php5.2 version
Posted: Fri Feb 01, 2008 4:44 pm
by drew
Curious question. Are you saying that the current version of cmsms is not supported under php 5.2 ?
I have been running a demo site under php 5.2.1 server-side without problems. I am however seeing problems with php 5.2.5 cgi mode. Am I risking stability by running under 5.2 ?
Thank you.
Re: best php5.2 version
Posted: Wed Feb 06, 2008 7:44 pm
by giggler
No, I think the current one is fine... It's just that I don't have php 5.2 on my server and I know the next version of cmsm 2 will need at least php5.2. So I also wanted to know which of the 5.2 series in general is more stable...not just for cmsms
Re: best php5.2 version
Posted: Wed Feb 06, 2008 10:13 pm
by drew
btw,
It seems that when using PHP5.x you may need to enable fastCGI mode to insure that PHP session services work properly. I originally had problems installing CMSMS 1.2.3 and found the problem to be PHP5.2.5 running in normal CGI mode.
-Drew
Re: best php5.2 version
Posted: Thu Feb 07, 2008 2:00 am
by giggler
Thanks for the tip. Isn't the other way to run php as module or something?
Re: best php5.2 version
Posted: Thu Feb 07, 2008 6:10 pm
by drew
The way I understand it is that Apache web server uses many modules to render and serve up web pages. When it encounters a PHP script, it runs the 'mod_suphp' module to 'load' and pass processing to the PHP interpreter. This is sometimes called normal CGI mode.
'mod_fastcgi' is another Apache module that allows execution of PHP scripts except that the PHP interpreter is not unloaded when it is done. PHP stays in memory somehow and is ready to process subsequent PHP scripts. Hence the 'fast' aspect.
Hope this helps - it's all new to me. Good luck with you setup and development.