After trying all for stopping builtin Apache on my computer (actually OS X 10.11.6 El Capitan) It was still keep saying "port 80 was using by another application" when I start the MAMP (MAMP Pro 3.5)
Even after stopping apache with;
1 2 3 |
$ sudo apachectl stop httpd (no pid file) not running |
And moreover killing the process;
1 2 3 |
$ sudo killall -9 httpd No matching processes were found |
At the same time by checking the actual working PHP engine with;
1 2 3 |
$ which php /Applications/MAMP/bin/php/php5.6.10/bin/php |
The only solution that I could find was;
1 2 3 |
$ sudo apachectl stop $ sudo launchctl unload -w /System/Library/LaunchDaemons/org.apache.httpd.plist |
Restart your Mac if needed.
Then MAMP fortunately turned to normal.