I can't seem to get this to work..
its Forums > Sports > NBA
NBA is 8 ie; /forums/forumdisplay.php?f=8
I just saved it has test.php and uploaded it to forums/ to run it. but it just says done and nothing. any ideas?
Thanks.
Code:
<?
$threaddm =& datamanager_init('Thread_FirstPost', $vbulletin, ERRTYPE_ARRAY, 'threadpost');
$forumdid= 8;
$foruminfo = fetch_foruminfo($forumid);
$threaddm->set_info('forum', $foruminfo);
$threaddm->set('forumid', $foruminfo['forumid']);
$threaddm->set('userid', Admin);
$threaddm->set('title', 'Test of Script');
$threaddm->set('pagetext', 'This was run from backend');
$threaddm->set('allowsmilie', 1);
$threaddm->set('visible', 1);
$threaddm->set('dateline', TIMENOW);
$threaddm->save();
?>