That didn't seem to do the trick, JumpD.
Here is my current script. Applying the change as I think it should be applied does not produce any errors, however at also does not create the thread/post.
PHP Code:
$threaddm =& datamanager_init('Thread_FirstPost', $vbulletin, ERRTYPE_ARRAY, 'threadpost');
// $threaddm = new vB_DataManager_Thread_FirstPost($vbulletin, ERRTYPE_STANDARD); replaced with the above line.
$foruminfo['forumid'] = '2';
$forumid = $foruminfo['forumid'];
$postuserid = $userid;
$userid = $userid;
$pagetext = $article;
$allowsmilie = '1';
$visible = '1';
$threaddm->do_set('forumid', $forumid);
$threaddm->do_set('postuserid', $postuserid);
$threaddm->do_set('userid', $userid);
$threaddm->do_set('username', $username);
$threaddm->do_set('pagetext', $pagetext);
$threaddm->do_set('title', $title);
$threaddm->do_set('allowsmilie', $allowsmilie);
$threaddm->do_set('visible', $visible);
$done = $threaddm->save();
build_forum_counters($foruminfo['forumid']);
build_user_statistics();
Any suggestions? Thanks a lot, I really appreciate your continued assistance.
:EDIT:
Im looking at your suggestions now, I will post an update in a few minutes.
Thank you!
Im definately going to have to play with this for a bit.
You've been a big help - I'll post if I get closer.