Archive for » January, 2013 «

How to solve Util object does not match issue

Some of the person always encounter problem when they install an application or program that required perl and normally they will facing following error message:

“List :: Util object version 1.21 does not match bootstrap parameter 1.27″

How we can solve it and is it something wrong on perl version?

Well, the answer is nothing related to perl and you just need to do the following and it should be able to make your installation smooth enough.

1)  First, you need to go to the src path using command cd /usr/local/src

2) After that, you need to download the list utils (wget http://search.cpan.org/CPAN/authors/id/P/PE/PEVANS/Scalar-List-Utils-1.25.tar.gz)

3) Extract is using command tar -zxvf Scalar-List-Utils-1.25.tar.gz

4) Enter to the folder (cd Scalar-List-Utils-1.25)

5) Configure it using command perl Makefile.PL

6) Type gmake

7) Test on it by gmake test

8) Finally install it using command gmake install

Bravo! You should be able to see the error was gone. :)

 

How to downgrade php version in plesk

There are many people looking for a solution on how to downgrade their php version  from 5.3.x and greater back to php 5.2.x in linux server when plesk was installed. Actually the downgrade does not looks difficult but just need to follow the steps below:

1) First, you have to remove all your php and dependencies that have been installed in the server such as yum remove php php-cli php-common.

2) Once it’s done, your plesk will broken, but that’s fine and no worry. What you need to do is try to check out your yum list whether got any php 5.2.xx version by using command yum list | grep php.

3) If there has no php 5.2.xx version available in your yum list, then you will need to add it into your yum repo by using the following command: wget -q -O – http://www.atomicorp.com/installers/atomic | sh

4) Once it’s installed, you have to make sure php 5.3.xx version and mysql 5.5 version are excluded from the list by adding command below into /etc/yum.conf:

exclude=php*5.3* mysql*5.5*

5) Once done, you can try to check the yum list again and you should be able to see php 5.2.xx to be available in the list.

6) Once the preparation was done, it’s time for us to do the re-installation for plesk by download the autoinstaller from plesk official website. Do remember to put –all-version at the end of the line when you try to run the installer, this is to make sure you will be able to install back your existing plesk version.

7) You can just follow the step of plesk installation and complete it.

8) Once completed, you will be able to see you are running plesk in php version 5.2.xx now! Cheers!

PS: Please backup all your data before you downgrade your php version in plesk.