How to install / setup PHP 5.5.x on Ubuntu
How to install / setup PHP 5.5.x on Ubuntu How to install There’s an excellent and (usually) hassle-free method to install the latest version of PHP5 (which is 5.5.3 when i’m writing this) with 3 simple bash commands: 1. Add this package-repository to your system. If Ubuntu says that you need to download a key first, then follow the instructions given in the notice. sudo add-apt-repository ppa:ondrej/php5 If you get an error message now , then please do an update first and install the python-software-properties, that need to be necessary to add a package repository: sudo apt-get update sudo apt-get install python-software-properties 2. Update sudo apt-get update 3. Install PHP sudo apt-get install php5 Check the installed version of PHP via php5 -v Please note: The ondrej/php5 repository (which is used here) provides the very latest version of PHP. Usually the new version of PHP is available a few days after it was been officially released. This is really ...