downgrade to php version 5.2.x

Status
Not open for further replies.

arj.chak18

New Member
Messages
2
Reaction score
0
Points
0
My website (www.friernbadminton.x10.mx) is made with a content management system 'CMS Made Simple'.

The site has been working fine but now I find it full of "Deprecated: Function..." error messages. Turns out that CMS Made Simple does not support PHP 5.3, it requires 5.2 or lower.

I assume that x10 have upgraded to PHP 5.3 not too long ago. Is it possible for me to go back to version 5.2, or is this just a general version on the server that everyone must use, in which case I have no choice but to either wait for CMS Made Simple to upgrade their code, or move my site to a different server which uses an older version of PHP.
 

descalzo

Grim Squeaker
Community Support
Messages
9,373
Reaction score
326
Points
83
error_reporting(E_ALL & ~E_DEPRECATED);

Add the above line to the top of the PHP section in index.php (or whatever page the script uses as an entry point).
 

arj.chak18

New Member
Messages
2
Reaction score
0
Points
0
Thanks descalzo. After much more research and messing around I discovered that there already is a newer version of CMS Made Simple which more or less works with PHP 5.3. I've installed the new version now and all seems to be working again.
 
Status
Not open for further replies.
Top