skip to Main Content

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!

2

Answers


  1. Chosen as BEST ANSWER

    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
    

  2. 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
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search