I\'m starting my php script in the following way:
bash
cd \'path\'
php -f \'scriptname\'.php
There is no output while the php script i
Your process is killed. There could be a multitude of reasons, but it's easy to discard some of the more obvious.
&
stuffIf your server is starved for resources (no memory, no swap), the kernel might kill your process. This is probably what's happening.
In anycase: your process is getting send a signal that it should stop. Normally only a couple of 'things' can do this
references: Who "Killed" my process and why?