Steps to install PHP 5.4.3 from rpm and yum

PHPrpmyum

I got a link saying following steps of installation of PHP 5.4.3.

rpm -Uvh http://repo.webtatic.com/yum/el6/latest.rpm

yum install php54w

Can i use above method safely?

Or any other rpm that i can use?

Best Answer

You can use that method if you trust their site.

That rpm command sets up a yum repository pointing to their site and the yum command installs it.

You may need to run yum clean all and yum update after adding the repository.

You could also install from source code from http://php.net.

Related Question