Hot Summer Deals are Here!
Celebrate with up to 99% off on 17,900 resources
00
Days
06
Hours
18
Mins
41
Secs

Attempting to install ptero dependencies

Status
This thread has been locked.

El_Tristanio

Supreme
Feedback score
10
Posts
643
Reactions
183
Resources
0
Hello, i am installing some extensions on php, i have centos7 installed, any help?

php72w-common conflicts with php-common-5.4.16-43.el7_4.x86_64 You could try using --skip-broken to work around the problem

When i do this,

First search which old php packages are still installed on your machine :

yum list installed | grep php | grep 5.4

Then remove the old packages (for instance php-commom-5.4 .)

yum remove php-common-5.4

Then install the extensions again

I get this,

Loaded plugins: fastestmirror No Match for argument: php-common-5.4 No Packages marked for removal [Gamepanel@ip164 ~]$
 
Type
Offering
PebbleHost
High performance, consistent uptime and fast support. Minecraft hosting that just works.

TheAwsomeMiner2

Feedback score
-1
Posts
14
Reactions
18
Resources
0
Hi Neutrideo, you need to remove Php5 which is currently installed and replace it with php7, you can do this with the following commands but make sure to also update the other php extensions. You haven't really given us much information on what Operating system you are using so I am going to assume you are using Centos 7.
To first double check your php version do the following `php –v`

sudo yum remove php*
sudo yum purge php*

After you have done this you can go ahead and install php7 by doing the following.


sudo yum install python-software-properties software-properties-common
sudo LC_ALL=C.UTF-8 add-apt-repository ppa:eek:ndrej/php
sudo yum update
sudo apt-get install php7.0 php7.0-fpm php7.0-mysql -y


Best regards, Jayden
 
Status
This thread has been locked.
Top