View Single Post
  #1  
Old 04-18-2008, 07:32 PM
TrevsRevenge TrevsRevenge is offline
 
Join Date: Mar 2007
Posts: 8
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

First off Lynne thank you for helping out in this matter here is the code I have would this be correct.

PHP Code:
<?php

// ######################## SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);

if (!
is_object($vbulletin->db))
{
    exit;
}

// ########################################################################
// ######################### START MAIN SCRIPT ############################
// ########################################################################

// ###################### Start build search index #######################
if ($_REQUEST['do'] == 'buildpostindex')
{
    
$vbulletin->input->clean_array_gpc('r', array(
        
'doprocess'    => TYPE_UINT,
        
'autoredirect' => TYPE_BOOL,
        
'totalposts'   => TYPE_UINT,
    ));

    
$starttime microtime();

    if (empty(
$vbulletin->GPC['perpage']))
    {
        
$vbulletin->GPC['perpage'] = 250;
    }

    echo 
'<p>' $vbphrase['building_search_index'] . ' ';
    
vbflush();

    
$foruminfo = array('indexposts' => 1);
    
$firstpost = array();

    
$posts $db->query_read("
        SELECT postid, post.title, post.pagetext, post.threadid, thread.title AS threadtitle
        FROM " 
TABLE_PREFIX "post AS post
        INNER JOIN " 
TABLE_PREFIX "thread AS thread ON(thread.threadid = post.threadid)
        INNER JOIN " 
TABLE_PREFIX "forum AS forum ON(forum.forumid = thread.forumid)
        WHERE (forum.options & " 
$vbulletin->bf_misc_forumoptions['indexposts'] . ")
            AND post.postid >= " 
$vbulletin->GPC['startat'] . "
        ORDER BY post.postid
        LIMIT " 
$vbulletin->GPC['perpage']
    );

    echo 
$vbphrase['posts_queried'] . '</p><p>';
    
vbflush();

    
$finishat $vbulletin->GPC['startat'];

    while (
$post $db->fetch_array($posts) AND (!$vbulletin->GPC['doprocess'] OR $vbulletin->GPC['totalposts'] < $vbulletin->GPC['doprocess']))
    {
        
$vbulletin->GPC['totalposts']++;

        echo 
construct_phrase($vbphrase['processing_x'], $post['postid']) . ' ... ';
        
vbflush();

        if (empty(
$firstpost["$post[threadid]"]))
        {
            echo 
'<i>' $vbphrase['querying_first_post_of_thread'] . '</i> ';
            
vbflush();
            
$getfirstpost $db->query_first("
                SELECT MIN(postid) AS postid
                FROM " 
TABLE_PREFIX "post
                WHERE threadid = 
$post[threadid]
            "
);
            
$firstpost["$post[threadid]"] = $getfirstpost['postid'];
        }

        
build_post_index($post['postid'], $foruminfoiif($post['postid'] == $firstpost["$post[threadid]"], 10), $post);

        echo 
$vbphrase['done'] . "<br />\n";
        
vbflush();

        
$finishat = ($post['postid'] > $finishat $post['postid'] : $finishat);
    }

    
$finishat++;

    require_once(
DIR '/includes/functions_misc.php');
    
$pagetime vb_number_format(fetch_microtime_difference($starttime), 2);
    echo 
'</p><p><b>' construct_phrase($vbphrase['processing_time_x'], $pagetime) . '<br />' construct_phrase($vbphrase['total_posts_processed_x'], $vbulletin->GPC['totalposts']) . '</b></p>';
    
vbflush();

    if ((
$vbulletin->GPC['totalposts'] < $vbulletin->GPC['doprocess'] OR !$vbulletin->GPC['doprocess']) AND $checkmore $db->query_first("SELECT postid FROM " TABLE_PREFIX "post WHERE postid >= $finishat LIMIT 1"))
    {
        if (
$vbulletin->GPC['autoredirect'] == 1)
        {
            
print_cp_redirect("misc.php?" $vbulletin->session->vars['sessionurl'] . "do=buildpostindex&startat=$finishat&pp=" $vbulletin->GPC['perpage'] . "&autoredirect=" $vbulletin->GPC['autoredirect'] . "&doprocess=" $vbulletin->GPC['doprocess'] . "&totalposts=" $vbulletin->GPC['totalposts']);
        }
        echo 
"<p><a href=\"misc.php?" $vbulletin->session->vars['sessionurl'] . "do=buildpostindex&amp;startat=$finishat&amp;pp=" $vbulletin->GPC['perpage'] . "&amp;autoredirect=" $vbulletin->GPC['autoredirect'] . "&amp;doprocess=" $vbulletin->GPC['doprocess'] . "&amp;totalposts=" $vbulletin->GPC['totalposts'] . "\">" $vbphrase['click_here_to_continue_processing'] . "</a></p>";
    }
    else
    {
        
define('CP_REDIRECT''misc.php');
        
print_stop_message('rebuilt_search_index_successfully');
    }
}

?>
Reply With Quote
 
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01337 seconds
  • Memory Usage 1,851KB
  • 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