You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the Dig handler in version 2.6.0 the code is if (! $digPath = (new ExecutableFinder())->find('dig', null, ['/usr/bin'])) {
But this is not working. I have a debian server and the dig executable is available in the dir /usr/bin.
When I replace the code with $digPath = "dig”; I do get the dig results.
But this is not the correct solution. Any Idea what goes wrong since the new symfony executablefinder?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
In the Dig handler in version 2.6.0 the code is
if (! $digPath = (new ExecutableFinder())->find('dig', null, ['/usr/bin'])) {
But this is not working. I have a debian server and the dig executable is available in the dir /usr/bin.
When I replace the code with
$digPath = "dig”;
I do get the dig results.But this is not the correct solution. Any Idea what goes wrong since the new symfony executablefinder?
My OS
Debian 12 (Bookworm)
Laravel 11
PHP 8.3
Beta Was this translation helpful? Give feedback.
All reactions