I am facing 2 errors after Reinstalling WAMP 3.2.3 and PHP 7.3, the Errors are:
Cannot validate since C:\wamp64\bin\php\php7.3.21\php.exe is not a valid php executable. Use the setting 'php.validate.executablePath' to configure the PHP executable.
and
PHP executable not found. Install PHP 7 and add it to your PATH or set the php.executablePath setting.
I also Set the Environmental Variables in system, and in VS Code I tried these:
{
"php.validate.executablePath": "C:\\wamp64\\bin\\php\\php7.3.21\\php.exe",
"php.executablePath": "C:\\wamp64\\bin\\php\\php7.3.21\\php.exe"
}
{
"php.validate.executablePath": "C:\wamp64\bin\php\php7.3.21\php.exe",
"php.executablePath": "C:\wamp64\bin\php\php7.3.21\php.exe"
}
also, I Tried,
{
"php.validate.executablePath": "C:/wamp64/bin/php/php7.3.21/php.exe",
"php.executablePath": "C:/wamp64/bin/php/php7.3.21/php.exe"
}
{
"php.validate.executablePath": "C://wamp64//bin//php//php7.3.21//php.exe",
"php.executablePath": "C://wamp64//bin//php//php7.3.21//php.exe"
}
Please tell me the Solution. Thank you