Quote:
Originally Posted by kh99
You could look at private.php, the section that starts with if ($_POST['do'] == 'insertpm'). In your case you probably just need to set up the pm array and make the datamanager calls, so you can ignore the buddy list and flood check code, and you probably would want to ignore errors as well.
|
Perfect. Now at least I know where to look, just what I needed.

Thanks for the fast reply khn.....after taking a better look at it now, it looks easier than I thought it was going to be. Thanks again.
--------------- Added [DATE]1311474514[/DATE] at [TIME]1311474514[/TIME] ---------------
OK After an entire day of meddelling with the code I have gotten it down to this..:
PHP Code:
<?php
require_once('./global.php');
error_reporting(E_ALL & ~E_NOTICE);
if (!is_object($vbulletin->db))
{
echo "exit";
exit;
}
require_once('./includes/class_dm.php');
$result1 = $vbulletin->db->query_read("SELECT (username) FROM oftw_nominations ORDER BY (votes) DESC LIMIT 1");
$username = $result1;
$result2 = $vbulletin->db->query_read("SELECT (userid) FROM user WHERE userid = 1");
$postuserid = $result2;
$result3 = $vbulletin->db->query_read("SELECT (username) FROM user WHERE userid = 1");
$postusername = $result3;
// Init the PM datamanager
$oftwpm =& datamanager_init('PM', $vbulletin, ERRTYPE_ARRAY);
$oftwpmperms['adminpermissions'] = 2; // force PM
// Fill in the blanks
$oftwpm->overridequota = true;
$oftwpm->set_info('is_automated', true);
$oftwpm->set_info('receipt', false);
$oftwpm->set_info('savecopy', false);
$oftwpm->set('fromuserid', $postuserid);
$oftwpm->set('fromusername', $postusername);
$oftwpm->set('title', $apposthead);
$oftwpm->set('message', $aptextpost);
$oftwpm->set_recipients($username, $oftwpmperms);
$oftwpm->set('dateline', TIMENOW);
$oftwpm->set('showsignature', 0);
$oftwpm->set('allowsmilie', 1);
// Send the PM
$oftwpm->save();
?>
Although when I try to run it I get a 500 internal server error

.... When I take off the:
PHP Code:
require_once('./global.php');
I get a blank page and the echo "exit"...It's not even letting me get to the SQL queries for some reason...Any ideas why anyone?? I feel I am very close to cracking this one

.. Please help!