Anu
Anu

Reputation: 1129

Unable to do live preview for brackets

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? 1

Upvotes: 2

Views: 150

Answers (1)

Pradeepal Sudeshana
Pradeepal Sudeshana

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" 
}

PHP Support in Brackets

Upvotes: 2

Related Questions