Home > Software engineering >  I am receiving a Brackets Error stating "PHP runtime not found"
I am receiving a Brackets Error stating "PHP runtime not found"

Time:08-31

PHP runtime not found. Install the PHP7 runtime and update “executablePath” in PHP Preferences appropriately. This enables PHP-related tooling such as Code Hints, Parameter Hints, Jump To Definition and more. I have tried to find a solution to this problem but could not find any that has answers for a Mac. I am using brackets and wanted to implement a PHP contact page in my HTML template website. I tried using the code listed for json but it does not work and is said to be the solution for only windows.

CodePudding user response:

It seems you have not installed PHP7 on your Mac, which is why Brackets cannot find it. PHP doesn't come with Brackets, and you will need to install it yourself separately.

You can follow the instructions here to install it.

  • Related