$uid = 1
$uname = 'admintw42'
Both of these values are correct for my user account.
If I set this to another user id & name it still fails with the same error.
If I set this to a username and id that does not exist I get a different error (no users match query) which is just what I would expect.
Quote:
Originally Posted by Delphiprogrammi
hi,
You must create a datamanager instance set the things you want to set check for errors and finally when things are ok save them
PHP Code:
$threaddm =& datamanager_init('Thread_FirstPost',$vbulletin,ERRTYPE_ARRAY,'threadpost');
$threaddm->setr('forumid',$destforum);
$threaddm->setr('title','');
$threaddm->setr('pagetext','');
$threaddm->set('userid','');
$threaddm->set('open',1);
$threaddm->set('visible',1);
$threaddm->set('allowsmilie',1);
$threaddm->set_info('forum',$newforuminfo);
$threaddm->set_info('thread',array());
$threaddm->pre_save();
if(!empty($threaddm->errors))
{
print_r($threaddm->errors);
exit;
}
else
{
$newthreadid = $threaddm->save();
}
now you have at least an idea howto do it $newforuminfo is coming from a fetch_foruminfo(); call
|
Is that call being handled directly within the line:
PHP Code:
$threaddm->set_info('forum',$newforuminfo);
or is this something that needs to be done beforehand and if so is the call simply:
PHP Code:
$newforuminfo = fetchforuminfo();
Is there a parameter to pass into fetchforuminfo ?
Sorry for all the questions - vBulletin is complex!