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

Reply
 
Thread Tools Display Modes
  #1  
Old 04-12-2008, 12:36 PM
dancue dancue is offline
 
Join Date: Feb 2008
Posts: 569
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default Updating Counters Automatically

Is there any way to set up a cron job to automatically update a certain counter?

The one I'm interested in is the "Delete Duplicate Threads". I'd like to also only do this for a certain forum. Is it possible?
Reply With Quote
  #2  
Old 04-12-2008, 03:10 PM
Lynne's Avatar
Lynne Lynne is offline
 
Join Date: Sep 2004
Location: California/Idaho
Posts: 41,180
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Sure, you can write a cron job to run any query.

Here's a basic template for your cron job:

PHP Code:
 <?php

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

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

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


Your query would go here.

?>
Reply With Quote
  #3  
Old 04-12-2008, 09:01 PM
dancue dancue is offline
 
Join Date: Feb 2008
Posts: 569
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

So all I would do is enter a query where it says "your query would go here."?

Excuse me if I still sound like a noob, but what do I put there?
Reply With Quote
  #4  
Old 04-12-2008, 09:52 PM
Lynne's Avatar
Lynne Lynne is offline
 
Join Date: Sep 2004
Location: California/Idaho
Posts: 41,180
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Basically, yeah, and then upload the page to your cron folder and make a new cron job to run that page at a set time. However, I would run it on a test site before putting it on a real site.
Reply With Quote
  #5  
Old 04-13-2008, 12:21 PM
sdsvtdriver sdsvtdriver is offline
 
Join Date: Mar 2005
Posts: 77
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I'm interested in this too. How does one find what query is used when this is invoked manually in the maintenance area?
Reply With Quote
  #6  
Old 04-13-2008, 01:58 PM
Lynne's Avatar
Lynne Lynne is offline
 
Join Date: Sep 2004
Location: California/Idaho
Posts: 41,180
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

You look at the source code in the page and see what form action is being taken when you click on the Submit button. Then, open that page in an editor and see what query they are calling.
Reply With Quote
  #7  
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
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 05:08 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.06027 seconds
  • Memory Usage 2,280KB
  • Queries Executed 13 (?)
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
  • (2)bbcode_php
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (7)post_thanks_box
  • (7)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (7)post_thanks_postbit_info
  • (7)postbit
  • (7)postbit_onlinestatus
  • (7)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_postinfo_query
  • fetch_postinfo
  • 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