Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 Programming Discussions
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 09-13-2008, 07:30 PM
AdTheRat AdTheRat is offline
 
Join Date: Sep 2008
Posts: 4
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default Display Post from vB to Homepage outside vB w/ bbCode formatting

Heya, new to vBulletin (gasp nooo, a newbie! =O)

Basically, I've been trying to simply pull first posts of each thread from say a News forum or announcement into the homepage. The forum is in a separate folder.

Now, I've have manage to pull the data I want and display it on the homepage, but when it come to formatting the post (bbCodes and all) it been proving to be a headache.

Was wondering if anyone have any suggestions as in how I could get the post formatted to how it would be displayed in forum outside? Maybe there is a method of using the vBulletin built-in bbCode parser?

I have searched the forum, but I even suck at googling so, sorry if this is a repeated question.

Thanks
- Addy
Reply With Quote
  #2  
Old 09-14-2008, 05:17 AM
Dismounted's Avatar
Dismounted Dismounted is offline
 
Join Date: Jun 2005
Location: Melbourne, Australia
Posts: 15,047
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

PHP Code:
// initialise bbcode class
$cwd getcwd();
chdir('./forum/');
require_once(
'./global.php');
require_once(
DIR '/includes/class_bbcode.php');
$parser =& new vB_BbCodeParser($vbulletinfetch_tag_list());

// parse message
$message $parser->parse($yourmessage$forumid);

// get back
chdir($cwd); 
Change directories and variables as appropriate.
Reply With Quote
  #3  
Old 09-14-2008, 01:05 PM
AdTheRat AdTheRat is offline
 
Join Date: Sep 2008
Posts: 4
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ok, that's a step in the right directation! Yay!..

Right, I get

Fatal error: Call to a member function query_first_slave() on a non-object in /home/cfpasta/domains/pasta.coldfront.net/public_html/forums/includes/functions.php on line 1310

The codes:
PHP Code:
    function getHTMLNews($trim=false)
    {

    
$parser =& new vB_BbCodeParser($vbulletinfetch_tag_list());
    
$bb2html $parser->parse($bb2htmlFORUM_ID_NEWS);
    
//$bb2html = $parser->do_parse($bb2html);
    
    
return $bb2html;
    
    } 
This is part of my news class. Called on when news is being displayed in template.

News object populated (plus the global.php include) by

PHP Code:
//Function to load up the news for homepage

function loadnews() {
    
    
$cwd getcwd();
    
chdir('./forums/');
    require_once(
'./global.php');
    require_once(
DIR '/includes/class_bbcode.php');
          
    global 
$perfomance;
    
    
$db = new mysql();
    
$query 'SELECT t.`threadid`, t.`title`, p.`username`, p.`pagetext`, p.`dateline`, d.`ccount` '
    
'FROM vb_thread t INNER JOIN vb_post p ON t.threadid = p.threadid INNER JOIN '
    
'(SELECT count(*) as ccount, threadid FROM vb_post GROUP BY threadid) d ON ' 
    
'd.threadid = t.threadid WHERE p.parentid = 0 and t.forumid = ' FORUM_ID_NEWS ' ' 
    
'ORDER BY t.dateline desc LIMIT 0,10';
    
    
//Grab news
    
$result $db->do_query($query'direct');
    
$perfomance->add_milestone('SQL Query done');
    
    
//If we have news, loop and create objects for each news
    
while ($row mysql_fetch_assoc($result)) {
        
$news = new news($row['threadid'], $row['title'], $row['pagetext'], 
                
$row['ccount'] - 1$row['username'], $row['dateline']); 
                
//ccount - 1 (remove a count, as query counts the article as well as other comments.
            
            
include('../template/default_news.php');
    }
    
$perfomance->add_milestone('News Object populated/displayed');

    
// get back
    
chdir($cwd);

FORUM_NEWS_ID is defined by a config.php included much earlier.

(To avoid any confusions, the templates are not part of the forums templates is in fact our own.)

~Added~
Just adding this while I'm thinking about, our host just compiled php with mysqli, is it just a simple edit of config from mysql to mysqli and vB will switch over or a bit more to it? Just thought to ask before doing. Kill two birds with one stone, so they say
Reply With Quote
  #4  
Old 09-18-2008, 05:11 PM
AdTheRat AdTheRat is offline
 
Join Date: Sep 2008
Posts: 4
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

*echo* Hello?

Does anyone have any ideas how to fix
Code:
Fatal error: Call to a member function query_first_slave() on a non-object in /home/cfpasta/domains/pasta.coldfront.net/public_html/forums/includes/functions.php on line 1310
My searches suggest something to do with DB connections, so I've tried changing $db to $db2, etc, etc.
Reply With Quote
  #5  
Old 09-19-2008, 05:08 AM
Dismounted's Avatar
Dismounted Dismounted is offline
 
Join Date: Jun 2005
Location: Melbourne, Australia
Posts: 15,047
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Since you are calling the parser inside the function - it does not have access to the required variables inside the local scope.
PHP Code:
// I think this is all - I may be wrong
global $vbulletin$vbphrase$db
Reply With Quote
  #6  
Old 09-19-2008, 07:01 AM
AdTheRat AdTheRat is offline
 
Join Date: Sep 2008
Posts: 4
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

*facepalms*

Of course! So obvious now! The news class has no access to the $vbulletin class. Bad me! *slap head*

Ok, Error gone, and lacking news now! Ha! *tries things*

Thanks you Dismounted! ^_^

- Sorted and working! Woooooo!!
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 07:01 AM.


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.06601 seconds
  • Memory Usage 2,228KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (1)bbcode_code
  • (4)bbcode_php
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (6)post_thanks_box
  • (6)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (6)post_thanks_postbit_info
  • (6)postbit
  • (6)postbit_onlinestatus
  • (6)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • 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
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete