Mcrypt
在线手册:中文 英文
PHP手册

安装/配置

Table of Contents


Mcrypt
在线手册:中文 英文
PHP手册
PHP手册 - N: 安装/配置

用户评论:

opensuse10 dot 3 at gmail dot com (10-Feb-2011 11:36)

On opensuse 11.3 64 bits
/usr/lib64/php5/extensions

dork (11-May-2010 06:54)

On ubuntu 8 (hardy), the mcrypt library seems to be here.

/usr/lib/php5/20060613/mcrypt.so

So I just created mcrypt.ini in /etc/php5/conf.d and added this one liner.

extension=mcrypt.so

biapar at redconsulting dot it (03-May-2010 10:10)

Under IIS 7.5 - Win2k8r2 you must copy libmcrypt.dll under C:\Program Files (x86)\PHP

erik at 321x dot com (29-Apr-2010 10:22)

With Windows 7 (64 bits) I needed to uncomment the mcrypt line as well, so:
extension=php_mcrypt.dll

And after that I've copied the libmcrypt.dll to c:\Windows.

Apache restart (with administrator rights of course) and there you go.

bobeck at lycos dot com (06-Jan-2010 02:32)

To make sure that mcrypt doesn't fail to load when
using Windows XP , Apache 2 and php 5, even if all the required procedure to install it has been accomplished already, copy libmcrypt.dll, which is normally in the php main directory, into the php\ext directory.

kmasaryk (15-Jul-2009 01:30)

Also on Ubuntu, make sure you actually have php5-mcrypt installed. You can install it with:

sudo apt-get install php5-mcrypt

If you get any errors, you may need to enable the 'universe' repository, explained here:
https://help.ubuntu.com/community/Repositories/Ubuntu

Ilia (03-Jun-2009 03:00)

For Ubuntu Linux add a line:
extension=php_mcrypt.so
to the file /etc/php5/apache2/php.ini
and restart network:
sudo /etc/init.d/networking restart

AJP (04-May-2009 04:09)

(Relating to XAMPP Lite and MySQL)

PROBLEM (seen on MySQL admin page): cannot load mcrypt extension. please check your php configuration

SOLUTION:  With XAMPP Lite 1.7.1 all I had to do was stop the server, edit D:\xampplite\php\php.ini and uncomment (remove the semicolon) the following line:

extension=php_mcrypt.dll

Elsewhere in the file is a line setting the path to the extension directory (i.e. where php_mycrypt.dll is located) -- search for extension_dir.  It should look something like:

extension_dir = "\xampplite\php\ext\"

Obviously, adjust accordingly for your own drive and directory structure.

miroox-moo at yahoo dot co dot id (18-Mar-2009 09:42)

thanks to :
 rskret at gmail dot com
01-Mar-2009 12:04
PROBLEM: cannot load mcrypt extension. please check your php configuration

this setting my experience for xampp :D
I do the same step but with a little modified

for the first, stop all xampp services, and then do this step :

copy file libmcrypt.dll from D:\xampplite\php\
to : C:\WINDOWS\system32

open these 2files below :
D:\xampplite\apache\bin\php.ini
D:\xampplite\php\php.ini

change this text :
;extension=php_mcrypt.dll
to
extension=php_mcrypt.dll
(ie. remove ; )

Note :
Please adjust the directory location per your own installation.

rskret at gmail dot com (01-Mar-2009 12:04)

PROBLEM: cannot load mcrypt extension. please check your php configuration

I have done as suggested by the contributor before me and copied libmcrypt.dll from F:\wamp\bin\php\PHP52~1.8
to C:\WINDOWS\system32 . This did not work on it's own. I found other advice as follows and now mcrypt is working.

OTHER ADVICE:

Go to F:\wamp\bin\php\PHP52~1.8\php.ini
change ;extension=php_mcrypt.dll
to      extension=php_mcrypt.dll
(ie. remove ; )

now go to the following 2 files and do the same:
F:\wamp\bin\php\PHP52~1.8\phpForApache.ini
F:\wamp\bin\apache\APACHE~1.11\bin\php.ini

Please adjust the directory location per your own installation.

ch0wnag3 AT gmail DOT com (21-Jul-2008 10:16)

On Windows installations, for the dynamic extension (extension=php_mcrypt.dll) to load properly, you must copy libmcrypt.dll from your PHP root folder (e.g. C:\PHP) to the following location:

C:\WINDOWS\system32

With this done, the dynamic extension will load up just fine.