How to install older versions of PHP below php 5.5?

Asked

Viewed 2,049 times

2

I heard that in the Ubuntu contains packages already available for installation, well, I confirmed and really it’s true, I just installed that came with php5.5, I need the php5.2.17, for installation of my vBulletin, how can I install?

Apache 2.2.21 PHP 5.2.17 Mysql 5.5.21

1 answer

1


On the website of vBulletin says it’s PHP 5.3.7 up. That version of yours must be out of date.

I had this same problem, because the old versions of PHP use libraries that are no longer available in the new versions of Ubuntu.

You can use an older version of Ubuntu or Linux that supports PHP 5.3

Or lower the PHP website compile and install:

wget http://museum.php.net/php5/php-5.2.17.tar.bz2
tar -xvf php-5.2.17.tar.bz2
cd php-5.2.17
./configure
make
make install
  • But how do I install versions below php 5.5 ? I have formatted the computer twice trying to install... Remembering that I only have vBulletin 4.2.2 license :( it only takes version php 5.2

  • I updated my answer... Let’s vote guys!

  • I gave +1 for the edition. :-)

Browser other questions tagged

You are not signed in. Login or sign up in order to post.