I’ve been trying to install the latest PHP version on my CentOS 7 droplet but every install keeps missing some key extensions.
If I try to add them afterwards, there are some dependency failures which really bugs me. I’ve removed and installed PHP from 5.4 to 7.3 about a dozen times already. Can someone provide me with some proper stepts to do so.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hi @Remdore,
So I ran into the same problem a day ago. Even if you install PHP 7.2 with yum something without any preparation always doesn’t work right away.
So, to install ANY PHP version you wish, you can follow these steps bellow just change the php version to your needs
Install EPEL yum repository on your system
Install Remi repository
Now onto the proper installation
Your system is prepared for the PHP installation from yum repositories. Use one of the following commands to install PHP 7.3 or PHP 7.2 or PHP 7.1 on your system based on your requirements
Now running the following command to check current active PHP version on my system.
Install PHP Modules
You may also need to install additional PHP modules based on your application requirements. Below command will install some more useful PHP modules.
Any other extension you would like to install, you can do it like
Kind regards, KDSys