Syed Naeem
Syed Naeem

Reputation: 693

Unable to install php mcrypt and intl Extension

my fellow developers, i have just barely started to install magento for me to use it and see how it behaves, i downloaded the zip file from here extracted it, and tried to run it in localhost of my MAC OS X, but it is showing me 2 missing extensions extension check

  1. PHP Extension mcrypt
  2. PHP Extension intl.

now i have tried to install mcrypt with

brew install mcrypt

it shows me the path where it is installed which is /usr/local/Cellar/mcrypt/2.6.8and that is fine, i cannot find mcrypt.so file init which lots of online totorials have stated that should be there and to put that file reference in php.ini file, but i cannot find the file in there,

and brew install intl or brew install php70-intl

is not even working to begin with, it shows me these 4 errors when i run this.

Error: No available formula with the name "intl" 
Error: No previously deleted formula found.
Error: No similarly named formulae found.
Error: No formulae found in taps.


Error: No available formula with the name "php70-intl" 
Error: No previously deleted formula found.
Error: No similarly named formulae found.
Error: No formulae found in taps.

Any ideas what i might me doing wrong, or am i missing something, any help is appritiated, thankyou BTW my php version is 7.1.16

Upvotes: 0

Views: 1142

Answers (1)

Kervin Ramen
Kervin Ramen

Reputation: 2583

They moved the repo.

You need to do the following. "[email protected]" already contains mcrypt/intl.

"brew install [email protected]"

Upvotes: 2

Related Questions