Reputation: 1129
I have problem with opening brackets and do live preview recently. While launching brackets, it is showing the following info too. Does anyone has any idea?
Upvotes: 2
Views: 150
Reputation: 960
This is because of Brackets unable to find PHP 7 runtime in the system path or 'brackets.json'
to fix this:
go to Debug > Open Preferences File and add
"php": {
"enablePhpTooling": true,
"executablePath": "your path to php.exe",
"memoryLimit": "4095M",
"validateOnType": "false"
}
Upvotes: 2