Hello everyone, I have been trying to get my code to work but every time I run this file all I get is internal server errors everytime. What am I doing wrong?? Here is my php file:
PHP Code:
<?php
global $vbulletin;
require_once(DIR . "/includes/class_dm.php");
require_once(DIR . "/includes/class_dm_pm.php");
//pm system
$pmSystem = new vB_DataManager_PM( $vbulletin );
//pm Titel / Text
$pnTitel = "Your Title for the PM";
$pnText = "This is pm which was created automatically. Please do not reply to this pm.";
$pmSystem->verify_message( $pnText );
$pmSystem->verify_title( $pnTitel );
//Set the fields
$pmSystem->set('fromuserid', 1);
$pmSystem->set('fromusername', 'AWDevelopment');
$pmSystem->set('title', $pnTitel);
$pmSystem->set('message', $pnText);
$pmSystem->set('dateline', TIMENOW);
$pmSystem->set('iconid', 4);
$pmSystem->set_recipients("AWDevelopment");
//"send" pn
if ( $pmSystem->pre_save() === false )
{
if ($pmSystem->errors) {
return $pmSystem->errors;
}
}
else
{
$pmSystem->save();
}
?>
Please Help...?
--------------- Added [DATE]1311483447[/DATE] at [TIME]1311483447[/TIME] ---------------
GOT IT! Just needed to add this file to a new scheduled task and done! WORKS!