views:

30

answers:

1

Hi, i want to upgrade my php version on debian from the command line. Anyone knows how to do it?

+1  A: 

As root type the following command:

apt-get update && apt-get upgrade

This will update your repositories and then update every piece of software on your system. As long as PHP 5.2.3 is in your configured repositories it should upgrade.

If you dont have a repository that has PHP 5.3.2, you may be able to add one that includes this at: http://www.dotdeb.org/instructions/

Josh Pennington