Hi Guys
I am trying to trap errors in a remote process.
Run normally my script is ok but when run from the client it produces no output. I have this code at the top of my script,
which is ok when a script is run normally but as the process does not write to the browser I need to see what is going on.
Is there a way to write the errors generated by the code above, to a txt file.
I am on a shared server with no root access.
Thanks
Keith
I am trying to trap errors in a remote process.
Run normally my script is ok but when run from the client it produces no output. I have this code at the top of my script,
Code:
ini_set('display_errors',1);
error_reporting(E_ALL|E_STRICT);
which is ok when a script is run normally but as the process does not write to the browser I need to see what is going on.
Is there a way to write the errors generated by the code above, to a txt file.
I am on a shared server with no root access.
Thanks
Keith