|
Hi there Necaxa,
If your server is running PHP5 then switching to phpmail for php4 rather than 5 will cause you some issues.. the OO system in PHP was totally rewritten at version 5, switch back to phpmailer for php5 if your running php5 and give us the errors you are getting and hopefully we can help you out further.
CakePHP is a php framework. It is written in strict MVC OO technique.. and it is well worth using for medium to large projects, I personally use it for most projects I undertake both commercially and personally. It speeds development time up as many of the core functions you will use often such as mysql calls are already coded, you just call them up and send them parameters. The downside of cake and all frameworks is an they are all so packed with features you probably wont use most of them and then you will have an overhead that slows down your site, possibly.
PHP5 and 4 are similar but there are important differences. You dont have to write PHP5 code OO, this is just your own choice based on preference. Migration of your PHP4 scripts to php5 is easy enough and not terribly time consuming. If your php4 app is not OO and you wish to write it in OO as when you migrate to php5 you are looking are a longer migration time and a learning a potential learning curved (depending on your experience in OO languages).
No, not an emergency to migrate old apps to php5 from 4, though dont write any more in php4... php6 is knocking around and support for 4 wont be around for ever.
all the best,
Last edited by Sir P; 02-27-2009 at 11:25 AM..
|