Try already to log the connection made to your script.
Maybe the mailing redirection don't work, and as you work totally blind here, you will need it.
The error_log() function is what you can use, but set the destination log file first, with an ini_set();
Try to set an error_reporting to E_ALL, to see every warning, notices or else in your log.
PHP Code:
ini_set('log_file','php.log'); ini_set('display_errors',false); ini_set('log_errors',true); ini_set('display_errors',false); error_reporting(E_ALL);
__________________
Listen to the ducky: "This is awesome!!!"
|