example.php not working #95
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
gives:
example.php is configured as follows:
Output:
And then, example.php hangs forever. What is going wrong here? How to debug?
My OS is Alpine (Docker). PHP Version 7.2.12
I have the same problem. When executing
the last lines are:
This seems to be a wrong command submitted to smbclient so that smbclient goes into interactive mode.
What next?
Working with Alpine Linux and
Found it,
I had just installed smbclient in the Alpine image:
So, the smbclient was used by this repo and not libsmbclient-php.
Then I added
phpsmbclientto the image in the Dockerfile:Now the libsmbclient-php is selected and everything works like charm.
Issue can be closed. I'm happy.
So it seems like this problem only happens when this lib is using the
smbclientexecutable instead of the extension?Yes. This is what happened here.
Using the
smbclientleads to thesmbclientcommand line mode and then waits for input- forever :-(