View Single Post
  #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
 
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01038 seconds
  • Memory Usage 1,795KB
  • 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
  • (2)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