radscheit
radscheit

Reputation: 352

Mcrypt install failed on ubuntu 14 and php55, plesk

Hej guys, when I try to install mcrypt as suggested I get a weird failure message, please have a look on the Image below.

image.

Translation of the last line: Package cannot be found.

Has anyone an Idea? Thanks in advance!

Upvotes: 0

Views: 625

Answers (2)

radscheit
radscheit

Reputation: 352

I got it working by using. The hint using the universe repository failed.

sudo apt-get update && sudo apt-get install python-software-properties
sudo apt-get update
sudo apt-get install php5-mcrypt

Upvotes: 0

24x7servermanagement
24x7servermanagement

Reputation: 2540

You will have to enable universe repository on your server to install this package.

sudo add-apt-repository universe

sudo apt-get update
sudo apt-get install php5-mcrypt

Upvotes: 1

Related Questions