52
48

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

macosxのphpにmcryptをインストール

Last updated at Posted at 2014-04-29

#MacOSXのphpにmcryptをインストール

##なぜ
laravelをインストールすると

Mcrypt PHP extension required.
Script php artisan clear-compiled handling the post-install-cmd event returned with an error

[RuntimeException]
Error Output:

mcrtptの所でエラーになる

$php -m | grep mcrypt

phpにmcryptがインストールされていない

###なので、MacOSXにphpのmcryptをインストール

OSXバージョン :10.9.2
phpバージョン :PHP 5.4.24 (cli) (built: Jan 19 2014 21:32:15)
Homebrewバージョン:Homebrew 0.9.5

$brew search mcrypt
libtomcrypt   mcrypt php53-mcrypt  php54-mcrypt	php55-mcrypt  php56Zmcrypt
$brew install php54-mcrypt
$php -m | grep mcrypt
mcrypt

インストールされた。

laravelも無事インストールされた。
OK

52
48
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
52
48

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?