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
If we want to do bin/otra.php to launch OTRA, it does not work as the shebang header has a wrong path.
A slash is missing at the very beginning of the path.
We have #!usr/bin/php -ddisplay_errors=E_ALL.
We should have #!/usr/bin/php -ddisplay_errors=E_ALL.
The text was updated successfully, but these errors were encountered:
If we want to do
bin/otra.php
to launch OTRA, it does not work as the shebang header has a wrong path.A slash is missing at the very beginning of the path.
We have
#!usr/bin/php -ddisplay_errors=E_ALL
.We should have
#!/usr/bin/php -ddisplay_errors=E_ALL
.The text was updated successfully, but these errors were encountered: