View Single Post
  #1  
Old 03-24-2009, 04:32 PM
koon85 koon85 is offline
 
Join Date: Sep 2008
Posts: 6
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default How to get $threadid after posting a new thread?

I create a new thread using vB_DataManager_Thread_FirstPost, after that, I want to use vB_DataManager_Post to create a new post immediately in that thread. But I failed. Because I can't get the ID of the new thread created by vB_DataManager_Thread_FirstPost.

Here is the code to create a new thread:
PHP Code:
<?php
// Create a new thread
require_once('./global.php');
require_once(
'./includes/class_dm.php');
require_once(
'./includes/class_dm_threadpost.php');
require_once(
'./includes/functions_databuild.php'); // required for "build_forum_counters"

$threadsdm = new vB_DataManager_Thread_FirstPost($vbulletinERRTYPE_STANDARD);
$forumid '4';
$userid '202';
$title 'Test New Thread';
$pagetext 'This works... Whoodavdvdavadvdaavavddavvad Hoo!!';
$allow_smilie '1';
$visible '1';

$foruminfo fetch_foruminfo($forumid); 
$threadsdm->set_info('forum'$foruminfo);  
$threadsdm->set('forumid'$foruminfo['forumid']); 
$threadsdm->set('forumid'$forumid);
$threadsdm->set('userid'$userid);
$threadsdm->set('title'$title);
$threadsdm->set('pagetext'$pagetext); 
$threadsdm->set('allowsmilie'$allow_smilie);
$threadsdm->set('visible'$visible);
$threadsdm->save();
unset(
$threadsdm);  
build_forum_counters($forumid);
?>
Here is the code to create a new post:

PHP Code:
<?php
// Create a new thread
require_once('./global.php');
require_once(
'./includes/class_dm.php');
require_once(
'./includes/class_dm_threadpost.php');
require_once(
'./includes/functions_databuild.php'); // required for "build_forum_counters"

$postdm = new vB_DataManager_Post($vbulletinERRTYPE_STANDARD); 
$timenow TIMENOW ;
$threadinfo fetch_threadinfo($threadid);
$foruminfo fetch_foruminfo($forumid);
[
B][COLOR="Red"]$threadid '2421';[/COLOR][/B]
$userid '202';
$wiadomosc 'dbbvgdbxb dga shsf dzbfbd';

$postdm->set_info('forum'$foruminfo);
$postdm->set_info('thread'$threadinfo);  
$postdm->set('threadid'$threadid);
$postdm->set('title'$symid);
$postdm->set('userid'$userid);
$postdm->set('pagetext'$wiadomosc);
$postdm->set('allowsmilie'1);
$postdm->set('visible'1);
$postdm->set('dateline'$timenow);
$postdm->save();

unset(
$postdm); 
build_forum_counters($forumid);
?>
How to combine the two to the only one script? The problem is that, I can't get the $threadid from the new thread after it was posted and pass it to the second, I have try using
PHP Code:
$threadid $threaddm->save(); 
But it still not work! I have error:
Quote:
Fatal error: Call to a member function save() on a non-object in C:\wamp\www\forum3\test1.php on line 27
Here is the code:
PHP Code:
<?php
// Create a new thread
require_once('./global.php');
require_once(
'./includes/class_dm.php');
require_once(
'./includes/class_dm_threadpost.php');
require_once(
'./includes/functions_databuild.php'); // required for "build_forum_counters"

$threadsdm = new vB_DataManager_Thread_FirstPost($vbulletinERRTYPE_STANDARD);
$forumid '4';
$userid '202';
$title 'Test New Thread';
$pagetext 'This works... Whoodavdvdavadvdaavavddavvad Hoo!!';
$allow_smilie '1';
$visible '1';

$foruminfo fetch_foruminfo($forumid); 
$threadsdm->set_info('forum'$foruminfo);  
$threadsdm->set('forumid'$foruminfo['forumid']); 
$threadsdm->set('forumid'$forumid);
$threadsdm->set('userid'$userid);
$threadsdm->set('title'$title);
$threadsdm->set('pagetext'$pagetext); 
$threadsdm->set('allowsmilie'$allow_smilie);
$threadsdm->set('visible'$visible);
$threadsdm->save();

[
B][COLOR="Red"]$threadid $threaddm->save(); [/COLOR][/B][COLOR="Blue"][B//line 27[/B][/COLOR]
$postdm = new vB_DataManager_Post($vbulletinERRTYPE_STANDARD); 
$timenow TIMENOW ;
$threadinfo fetch_threadinfo($threadid);
$foruminfo fetch_foruminfo($forumid);
[
B][COLOR="Red"]//$threadid = '693';[/COLOR][/B]
$userid '202';
$wiadomosc 'dbbvgdbxb dga shsf dzbfbd';

$postdm->set_info('forum'$foruminfo);
$postdm->set_info('thread'$threadinfo);  
$postdm->set('threadid'$threadid);
$postdm->set('title'$symid);
$postdm->set('userid'$userid);
$postdm->set('pagetext'$wiadomosc);
$postdm->set('allowsmilie'1);
$postdm->set('visible'1);
$postdm->set('dateline'$timenow);
$postdm->save();

unset(
$threadsdm);  
unset(
$postdm); 
build_forum_counters($forumid);
?>
Any ideas will be appreciate very much, thanks!
Reply With Quote
 
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.03546 seconds
  • Memory Usage 1,854KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD_SHOWPOST
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (4)bbcode_php
  • (1)bbcode_quote
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_box
  • (1)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit_info
  • (1)postbit
  • (1)postbit_onlinestatus
  • (1)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • reputationlevel
  • showthread
Included Files:
  • ./showpost.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showpost_start
  • bbcode_fetch_tags
  • bbcode_create
  • postbit_factory
  • showpost_post
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • showpost_complete