MacOS – Linking homebrew, php, mcrypt, and localhost:8000

homebrewmacosPHP

I currently using

php -S localhost:8000

for my php testing server on OS X.

I am trying to use OpenCart which requires mcrypt and OS X does not come with that.

I installed Homebrew, php 5.6.5, and mcrypt.

It still says that mcrypt is not on when I try to install Open Cart which requires that.

How can I be sure that the correct php version from Homebrew as well as mcrypt are linked properly?

In the past I manually installed MySQL and also tried to manually install php 5.6.5 to replace the version that came with OS X. The phpinfo(); page I made and the command line both state that I have version 5.6.5 so I am unsure if that is linked to Homebrew or to when I manually tried to install php 5.6.5.

Thank you

Best Answer

I'm not familiar with OpenCart but you should check you path and make sure the homebrew php is the default.

In the terminal:

$ which php
/usr/bin/php
$ php -v
PHP 5.5.14 (cli) (built: Sep  9 2014 19:09:25) 
Copyright (c) 1997-2014 The PHP Group
Zend Engine v2.5.0, Copyright (c) 1998-2014 Zend Technologies

$ which mongod 
/usr/local/bin/mongod
$ ls -al /usr/local/bin/mongod
lrwxr-xr-x  1  ----  admin  34 Dec  8 17:25 /usr/local/bin/mongod -> ../Cellar/mongodb/2.6.5/bin/mongod

In this example I've installed mongod from homebrew. I've never installed php but it looks like it exists on my system by default. I'm guessing your system is using the standard php and not the brew one.

Try running your server like this:

/usr/local/bin/php -S localhost:8000