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
I'm starting a new process with the listening mode of netcat here, which runs indefinitely. The running status property returns false, although the netcat process is still running. It seems like PHP can't see it running.
After searching for a while, I found the solution in #198. There is a usePcntl option, I set it to false and now everything works fine, the running status property now returns true.
It would be worth talking about this kind of issue in the documentation. 🙂
The text was updated successfully, but these errors were encountered:
I've just noticed Psy Shell was acting strange when running processes. See this example:
I'm starting a new process with the listening mode of
netcat
here, which runs indefinitely. Therunning
status property returnsfalse
, although thenetcat
process is still running. It seems like PHP can't see it running.After searching for a while, I found the solution in #198. There is a
usePcntl
option, I set it tofalse
and now everything works fine, therunning
status property now returnstrue
.It would be worth talking about this kind of issue in the documentation. 🙂
The text was updated successfully, but these errors were encountered: