hello guys, good morning
one of our servers recently upgraded to Ubuntu 14.04 so for this PHP upgraded to 5.5.9
all scripts on this server stopped working because they use a functions not supported by newer version of PHP,
I need to downgrade PHP to 5.3 so I can make all scripts work again.
I dont care for security resons for updating PHP, so its ok to back to older version of PHP.
I used this tutorial but still my php 5.5
sudo apt-get purge php5
wget -O php5_3.tar.gz http://us1.php.net/get/php-5.3.28.tar.gz/from/this/mirror
tar -xzcf php5_3.tar.gz
cd php5_3
./configure
sudo make
sudo make install
But in ssh when using php -v
its shows like this