View Single Post
  #3  
Old 05-08-2011, 01:03 AM
av8or1 av8or1 is offline
 
Join Date: Mar 2011
Posts: 58
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi kh99-

Thanks for replying. This is what I have for adding a post to an existing thread, but I get the same result regardless of whether or not I use the vB_DataManager_Post or the vB_DataManager_Thread_FirstPost object.

PHP Code:
function AddNewPostToExistingThread$postData )
{
   global 
$vbulletin;

   
/*
    * Create the DM object
    */
   
$newPost = new vB_DataManager_Post$vbulletinERRTYPE_ARRAY );

   
/*
    * Populate the DM object
    */
   
$foruminfo fetch_foruminfo(    $postData'forumid'   ] );
   
$threadinfo fetch_threadinfo(  $postData'threadid'  ] );
   
$newPost->set_info'forum',     $foruminfo               );
   
$newPost->set_info'thread',    $threadinfo              );
   
$newPost->set'threadid',       $postData'threadid'  ] );
   
$newPost->set'title',          $postData'subject'   ] );
   
$newPost->set'userid',         $postData'userid'    ] );
   
$newPost->set'pagetext',       $postData'body'      ] );
   
$newPost->set'dateline',       $postData'dateline'  ] );
   
$newPost->set'allowsmilie',    1                        );
   
$newPost->set'visible',        1                        );

   
/*
    * Pre-save the DM object
    */
   
$newPost->pre_save();

   
# Check for and process errors
   
if( count$newPost->errors ) )
      
// do something to report errors back to log
      
print "Could not add post {$postData'title' ]}. Error List:\n";
      foreach( 
$newPost->errors as $error )
      {
         print 
"   -> $error\n";
      }
      unset( 
$newPost );
      return 
false;

   }
   else
   {
      
// Do the full save
      
$newPostID $newPost->save();
      
// do something to report threadid back to log
      // if you want that level of reporting
      
print "Added post {$postData'title' ]}. Post ID = $newPostID\n";
      
build_thread_counters$newPostID             );
      
build_forum_counters(  $postData'forumid' ] );
      unset( 
$newPost );
      return 
true;

   } 
// if-else errors

// AddNewPostToExistingThread() 
As for your second question, the results between entering the identical text via the quick reply or advanced editor while logged into the forum versus from a script produce different results. Also, strangely enough I seem to recall creating a post via a script where this worked (HTML not displayed as HTML text but rather used to render the display), but that was late last night and so I don't recall now how that occurred. And unfortunately I cannot reproduce it. [grumble]

EDIT: I forgot to mention that I tried running the script both with the "Allow HTML" option set to "Yes" and with it set to "No". Either way produces the same result. The thought I originally had (which was a guess as I'm still new to vB) was that if the post was added when the "Allow HTML" option setting was "Yes" then the content would not be converted via htmlentities and stored in the DB just as you'd want it. And with that option set to "No", then you would have your HTML in your content converted and stored in the DB in that manner. To test that theory, I would set "Allow HTML" to "Yes" then run the script. Then change the setting to "No" and run the script again. As I mentioned, I got the same result. So much for that theory...

Thanks!

--------------- Added [DATE]1304821978[/DATE] at [TIME]1304821978[/TIME] ---------------

UPDATE: I found some reference to converting to BB code in newreply.php, so I am going to look into that. Could it be that I simply need to wrap BB tags around the HTML code and that would take care of it? Boy but that would be great if it turns out to be that simple...
Reply With Quote
 
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01259 seconds
  • Memory Usage 1,809KB
  • 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
  • (1)bbcode_php
  • (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