tags:

views:

18

answers:

3

How can I catch a background process error in PHP? I am running some commands to convert a PDF but sometimes the process gets killed. Is there anyway to monitor if the process has been completed successful ?

A: 
  1. Look into the server error logs.
  2. Look into the error_log file in the folder where script is residing.
  3. Try making small PDFs. Most of the time, these PDF makers crash on large files / data.
shamittomar
A: 

You can use system like flaging. on start up of each background process keep a separate flag_processId = 0 for those process and on successful completion of that process update that flag to 1. and if that process getting any error in between and if it is detactable then update it to not completed flag (e.g flag = 2).

By this you can keep track of that background process dynamically.

or for detecting killing reason you can also use logging to log file.

after each step in that process log completion of that step in log file, by this you can get where your process is getting killed.

Maulik Vora
+1  A: 

Wrap the background process in a script which monitors it.

  • The script starts the PDF creator.
  • When the PDF creator is done, the script checks the output or exit code.
  • If the PDF creator crashes or is killed, the script can still take some action.
Sjoerd