How can I get PHP working again in the command line?
Hopefully this will save someone a lot of headache. If, for whatever reason, you are unable to locate php in your command line, and unable to execute php from the command line, below is a list of steps to get PHP up and running again.
double check to make sure PHP is no where to be found by opening your terminal, and typing
find /usr -name php
and hit enter. The main thing you want to look for here is a path with/bin/php
at the end. In my case it's, now that I've installed it, it's/usr/local/php5-20120508-102213/bin/php
. If you don't see anything like that then go to the next step. If you see something like that then make note of that path with the/bin/php
at the end, and go to step 4.Go to the terminal and type in
curl -s http://php-osx.liip.ch/install.sh | bash -s 5.4
, hit enter. It will ask for your password. Your installing a php package. After you enter your password just follow the steps like any other download. For more information on that download you can visit the binary package website.After you've installed php, open the terminal and type in
find /usr -name php
and hit enter. You should see a few lines of paths. Make note of the one that has/bin/php
at the end of the path. You will be needing that path for the next step.Next, open a text editor, I used TextWrangler for this purpose, go to file up in on the menu bar, and select Open file by name.Then type in
~/.bash_profile
. Select Open and at the end of the .bash_profile file type inPATH=$PATH:/usr/local/php5-20120508-102213/bin/ export PATH
the
/usr/local/php5-20120508-102213/bin/
part of that is the path that I mentioned to make note of, minus the php at the end. If your path was different, substitute it. Just remember to leave off the php at the end. save and exit.Last step, open the terminal and type in
php -v
. Hit enter. You should see something like:PHP 5.4.2 (cli) (built: May 8 2012 09:48:57) Copyright (c) 1997-2012 The PHP Group Zend Engine v2.4.0, Copyright (c) 1998-2012 Zend Technologies with Xdebug v2.2.0rc2, Copyright (c) 2002-2012, by Derick Rethans
if you're seeing that then everything is working.
NOTE: Here is a good resource for working with Command line PHP - located about 1/3 of the way down the page.
In response to @MikeTheCoder, the posted export path syntax didn't work for me, but the slightly modified one following did:
export PATH=/usr/local/php5-5.6.27-20161101-100213/bin/:$PATH
I'm using El Capitan 10.11.6 which defaults to an earlier PHP version.
There is one of two things going on here, either you didn't install PHP, or PHP is installed and not currently in any of system aware paths. First I would try to find PHP and make sure it exists:
$ find / -name php -type f
You should see something like:
/path/to/your/php/bin/php
If PHP binary does exist, check your path:
$ echo $PATH
If it does not exist, recompile php.
If PHP exists on your system, make sure the path to the /bin/php file is included. You can edit your ~/.bash_profile
and add the custom path like this:
PATH=$PATH:/path/to/your/php/bin/
....
export PATH
Then save and reload the file to ensure your current session has access to new path changes:
$ source ~/.bash_profile
With any luck you can now do a php -v
and see the version response.
-- Update --
Setting actual path:
$ vi ~/.bash_profile
...
# Add your custom php path
PATH=$PATH:/bitnami/mampstack-osx-x86/output/php/bin/
....
export PATH
Save and close, then source it:
$ source ~/.bash_profile
And now you should be able to run PHP from cli:
$ php -v