-
Any ideas on that? I cannot really find anything useful. Tried pipes/tcp/socket - happens everywhere. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 11 replies
-
Hey @Warxcell 👋🏻 |
Beta Was this translation helpful? Give feedback.
-
In the code on particular controller there was I removed the ini_set and set display_errors = stderr so eventual error would go to STDERR, rather than hidden. |
Beta Was this translation helpful? Give feedback.
In the code on particular controller there was
ini_set('max_execution_time', 60)
anddisplay_errors = Off
.I guess max_execution_time is the reason why worker exits, and
display_errors = Off
is the cause for no logs or whatsoever.I removed the ini_set and set display_errors = stderr so eventual error would go to STDERR, rather than hidden.