Accueil > Système > Mcrypt : Installation

Mcrypt : Installation

29/02/2024 Categories: Système Tags: ,
Print Friendly, PDF & Email

Vous devez compiler PHP avec l’option –with-mcrypt=[DIR] pour activer cette extension. DIR est le dossier d’installation de mcrypt. Assurez-vous de compiler libmcrypt avec l’option –disable-posix-threads .

Note, for Ubuntu, simply installing php5-mcrypt did not get mcrypt to work. You need to execute the following commands as root to enable it:

apt-get install php5-mcrypt
 mv -i /etc/php5/conf.d/mcrypt.ini /etc/php5/mods-available/
 php5enmod mcrypt
 service apache2 restart

If you don’t have a /etc/php5/conf.d directory, you can simply only do: php5enmod mcrypt

Should be working fine.

Lire aussi:  Réplication MySQL Master-Slave et Master-Master
Categories: Système Tags: ,
Les commentaires sont fermés.