I'm completely at loss here and am about to wipe my hard drive clean and start from a fresh OS install. I've been trying for two days to create a new yii app in the terminal and have finally figured out that the terminal or command line can not even execute PHP all of a sudden. I had no problem in past creating an executing php from the command line, But now it's not working. When I type which php i get nothing. When I type php -v I get:
-bash: php: command not found.
And when I try to create a new yii application I get:
env: php: No such file or directory
I am using mac osx-lion and my path looks like this at the moment:
/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/usr/local/git/bin
I've tried looking through the php manual and I'm getting nowhere. How can I reconfigure the command line to execute php? Any help is greatly appreciated.
(On macOS Mojave 10.14.6)
A shortcut for the mentioned 'source' command above is just the period. So you can do the following:
Add in the lines
Hit colon W
:w
to write and colon Q to:q
to quit VIM editor (bonus learning)And now you "apply" it by entering into the terminal:
. ~/.bash_profile
You can doublecheck the new PHP version now with
php -v
orwhich php
In response to @MikeTheCoder, the posted export path syntax didn't work for me, but the slightly modified one following did:
I'm using El Capitan 10.11.6 which defaults to an earlier PHP version.
Close your ssh tunnel and restart again for PHP is getting back and check
$ php --version
And type the command line sudo apt-get install php-fpm or search with newest version of php using " sudo apt-cache search php " then you find php-fpm or php-{version}-fpm and use the following command sudo service php-fpm restart
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:
You should see something like:
If PHP binary does exist, check your 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:Then save and reload the file to ensure your current session has access to new path changes:
With any luck you can now do a
php -v
and see the version response.-- Update --
Setting actual path:
Save and close, then source it:
And now you should be able to run PHP from cli:
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 inthe
/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:if you're seeing that then everything is working.