vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=111)
-   -   using dm to create thread reply and can't figure out how to get forumdisplay updated. (https://vborg.vbsupport.ru/showthread.php?t=99428)

fly 10-27-2005 12:54 PM

using dm to create thread reply and can't figure out how to get forumdisplay updated.
 
This is the code I'm using to create a thread reply, but how do I get the forumdisplay updated?

PHP Code:

require_once('./global.php');
require_once(
'./includes/class_dm.php');
require_once(
'./includes/class_dm_threadpost.php');

$postdm = new vB_DataManager_Post($vbulletinERRTYPE_STANDARD);

$bythreadid '4375';
//$byparentid = '4375'; //not sure what this is for
$byusername 'testing';
$byuserid '0';
//$bytitle = 'testing'; //dont want a post title
$bypagetext 'This is a test';
$byallowsmilie '1';
$byshowsignature '1';
$byvisible '1';

$postdm->do_set('threadid'$bythreadid);
$postdm->do_set('username'$byusername);
$postdm->do_set('userid'$byuserid);
$postdm->do_set('title'$bytitle);
$postdm->do_set('pagetext'$bypagetext);
$postdm->do_set('allowsmilie'$byallowsmilie);
$postdm->do_set('showsignature'$byshowsignature);
$postdm->do_set('visible'$byvisible);
$postdm->save();
unset(
$postdm); 


fly 10-28-2005 02:40 PM

anyone?

Andreas 10-28-2005 02:49 PM

Hmm, it should do that automatically.
Are you sure it doesn't?
Is the forum moderated?

fly 10-28-2005 02:59 PM

Quote:

Originally Posted by Andreas
Hmm, it should do that automatically.
Are you sure it doesn't?
Is the forum moderated?

Nope, it doesn't. And nope, it isn't moderated. The post is there, but the thread doesn't even get bumped.

(The DM to create threads was the same way. It required calling build_forum_counters($forumid) after creating the thread to update everything)

Andreas 10-28-2005 03:05 PM

Try

PHP Code:

$threadinfo fetch_threadinfo($bythreadid);
$foruminfo fetch_foruminfo($thread['forumid');
$postdm->set_info('forum'$foruminfo);
$postdm->set_info('thread'$threadinfo); 

Before setting anything to the DM.

fly 10-28-2005 03:09 PM

Quote:

Originally Posted by Andreas
Try

PHP Code:

$threadinfo fetch_threadinfo($bythreadid);
$foruminfo fetch_foruminfo($thread['forumid');
$postdm->set_info('forum'$foruminfo);
$postdm->set_info('thread'$threadinfo); 

Before setting anything to the DM.

Same result.

edit: Fixed it by adding
PHP Code:

require_once('./includes/functions_databuild.php'); 
    
build_thread_counters($bythreadid); 

imho, it should do all that automatically tho...

Andreas 10-28-2005 03:33 PM

PHP Code:

<?php
require_once('./global.php');
require_once(
'./includes/class_dm.php');
require_once(
'./includes/class_dm_threadpost.php');

$postdm = new vB_DataManager_Post($vbulletinERRTYPE_STANDARD);

$bythreadid '4375';

$threadinfo fetch_threadinfo($bythreadid);
$foruminfo fetch_foruminfo($threadinfo['forumid']);
$postdm->set_info('forum'$foruminfo);
$postdm->set_info('thread'$threadinfo);  

$postdm->set('threadid'$bythreadid);
$postdm->set('username''testing');
$postdm->set('pagetext''This is a test');
$postdm->set('allowsmilie'1);
$postdm->set('visible'1);
$postdm->set('dateline'TIMENOW);
$postdm->save();
unset(
$postdm);
?>

You should never call do_set() directly, also if you are making a post for a guest don't set the userid.

fly 10-28-2005 05:11 PM

Quote:

Originally Posted by Andreas
PHP Code:

<?php
require_once('./global.php');
require_once(
'./includes/class_dm.php');
require_once(
'./includes/class_dm_threadpost.php');

$postdm = new vB_DataManager_Post($vbulletinERRTYPE_STANDARD);

$bythreadid '4375';

$threadinfo fetch_threadinfo($bythreadid);
$foruminfo fetch_foruminfo($threadinfo['forumid']);
$postdm->set_info('forum'$foruminfo);
$postdm->set_info('thread'$threadinfo);  

$postdm->set('threadid'$bythreadid);
$postdm->set('username''testing');
$postdm->set('pagetext''This is a test');
$postdm->set('allowsmilie'1);
$postdm->set('visible'1);
$postdm->set('dateline'TIMENOW);
$postdm->save();
unset(
$postdm);
?>

You should never call do_set() directly, also if you are making a post for a guest don't set the userid.


Neat! As usual, thanks for the help! <3


All times are GMT. The time now is 12:57 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01112 seconds
  • Memory Usage 1,772KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (6)bbcode_php_printable
  • (3)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (8)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete