Quote:
Originally Posted by paul41598
Um I have the below code in a cron job, and when it runs Im getting this error:
PHP Code:
Fatal error: Unable to proceed with save while $errors array is not empty in class vb_datamanager_pm in /includes/class_dm.php on line 758
Code:
// Fetch the PM message
if ($vbulletin->options['ptp_pm_on_off'] == '1')
{
$ptp_pm =
construct_phrase(
$vbphrase['ptp_alertpm'],
$pquery['username'],
);
// Send a PM to user(s)
$pmdm =& datamanager_init('PM', $vbulletin, ERRTYPE_ARRAY);
$pmdm->set('fromuserid', 6);
$pmdm->set('fromusername', 'JonB');
$pmdm->set('title', 'Crap');
$pmdm->overridequota = true;
$pmdm->set('message', 'test');
$pmdm->set_recipients($pquery['username'], $botpermissions);
$pmdm->set('dateline', TIMENOW);
$pmdm->save();
}
Whats wrong here? I think it worked before now all of a sudden doesnt... (I think) :cross-eyed:
|
Wow, i'm having the identical error message which just started today as well, I wonder whats going on here... and I mean identical Is there a way to get the script to echo the error? return $pmdm->errors; ? I have that in my cron script, but when i run it in the task manager i get no text echoed, maybee another way so that we can diagnose this problem