How to get my php to the latest 5.3.0?
How can I update it to the latest version? Thanks!
7 Replies
Just edit your sources.list and replace the word "stable" with "testing", which is the development stage right before "stable".
They're testing 5.3. While it may have no problems or bugs, it isn't certified stable yet.
That's one reason to pick Debian. They're very slow to introduce new versions of software. Everything gets tested and is ensured to be stable.
If there's no need to use a new feature from php 5.3, I'd just stick with the version Debian provides.
@NeonNero:
Just edit your sources.list and replace the word "stable" with "testing", which is the development stage right before "stable".
You don't want to just jump your whole server to testing or unstable. Use apt-pinning and /etc/apt/preferences to handle testing and unstable packages without upgrading every package on the server; then just apt-get -t testing install php5.3
I'll keep your wise words in mind!
~JW