What’s the mistery here? Just download the source of new php, then compile it using the same config options as your current php build.
How did you get the current version of 5.2? Was it already installed?
Also keep in mind that some scripts may start throwing warnings and errors or stop working completely as some functions became deprecated in 5.3 and some error behavior has changed in 5.3, so what used to be just a warning in 5.2 sometimes becomes a full blown error in 5.3
I am newbie in PHP. current version 5.2 was already installed.
Also keep in mind that some scripts may start throwing warnings and errors or stop working completely as some functions became deprecated in 5.3 and some error behavior has changed in 5.3, so what used to be just a warning in 5.2 sometimes becomes a full blown error in 5.3
Basically I am worry about on these things like what kind of changes are required in newer version.
When scripts stop working after the upgrade you should just examining error log and fix all the scripts manually, replacing deprecated functions with equivalent non-deprecated ones.
Not really a big deal for experienced programmer, but if you total beginner then either don’t upgrade to 5.3 or hire someone who can fix your scripts after the upgrade.