vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Reverse similar threads creation order (https://vborg.vbsupport.ru/showthread.php?t=222647)

squishi 09-07-2009 10:01 AM

Reverse similar threads creation order
 
If you build the similar threads manually from the maintenance page, it always starts with ID number 1.
I would like to reverse the order. It should start with the latest thread and count down.

Should not be impossible. It would require an edit of the vb files, I suppose.
Any ideas?

Lynne 09-07-2009 04:06 PM

The query you are looking for, I think, is in includes/functions_search.php around line 352. You can actually use the hook search_similarthreads_fulltext to add to the query - probably an ORDER BY thread.threadid DESC (I'm not sure, so try it on a test site.)

squishi 09-07-2009 04:54 PM

That sounded good, but the process still started with the first threads.

Lynne 09-07-2009 05:49 PM

Ah.... I thought you meant the query when it is looking for similar threads to put in the table. But, you are looking to do it when you are rebuilding them? Did you know you can start the rebuild in the middle? misc.php?do=updatethread&startat=xxxxx . xxxxx being the threadid to start at. Then it only builds those and the ones greater than that.

If you want to change that query to go backwards, it is in admincp/misc.php, look under do=updatethread and the query that select the threads is right there and it's ordered by threadid and the where statement is threadid >=startat .

squishi 09-07-2009 06:12 PM

I have added a DESC to the sort order of the query you mentioned, but it still started at the first thread. :(

PHP Code:

    $threads $db->query_read("
        SELECT threadid
        FROM " 
TABLE_PREFIX "thread
        WHERE threadid >= " 
$vbulletin->GPC['startat'] . "
        ORDER BY threadid DESC
        LIMIT " 
$vbulletin->GPC['perpage']
    ); 


Lynne 09-07-2009 06:38 PM

If it is that query (you didn't verify that what you are doing rebuilding the similar threads), then I think you need to get rid of the line about where threadid >= startup. You may have to redo the lines about $finishat since it assumes you are counting up.

Exactly what are you trying to accomplish here? Perhaps there is an easier way to do this.

squishi 09-07-2009 08:02 PM

I think we understand each other correctly now.
I am building the similar threads manually from the maintenance page in the admin backend.
The process starts at thread 3 (which is the first thread on my board).
I'd like it to start at the latest thread and then count down to the first one.
This will allow me to use the similar threads without having the automatic similar thread check enabled (which costs server resources).

Lynne 09-07-2009 08:20 PM

Did you see my suggestion about just adding startat=xxxx to the url to not do the similar threads from the beginning? When you do the rebuild, it automatically does xxxx threads at a time (default is 100). So, if you know that you just want to rebuild the last 10 threads, why not just do startat=(your lastest thread number - 10) ? Your alternative is to rewrite the code to go backwards (redo how $finishat is handled and redo the query), as I said.

squishi 09-08-2009 02:49 PM

For some reason, I cannot run the script in the browser.
I get a 404 error.

Lynne 09-08-2009 02:52 PM

Are you using the correct url? It's a file in the admin cp, so you need to use the correct path to that folder.

squishi 09-08-2009 02:55 PM

I have reversed the order, and told the query to only query thread smaller than startat.
PHP Code:

    $threads $db->query_read("
        SELECT title, threadid
        FROM " 
TABLE_PREFIX "thread
        WHERE threadid >= " 
$vbulletin->GPC['startat'] . "
        ORDER BY threadid
        LIMIT " 
$vbulletin->GPC['perpage']
    ); 

The process still starts with the first thread.

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

Hmm, that's weird.
I can load misc.php, but as soon as I add the variables "&do=updatethread&startat=12345", I get a 404 error.

http://mydomain.com/forum/admincp/mi...&startat=40000 gives me a 404.
http://mydomain.com/forum/admincp/misc.php loads just fine.

Must be something in the htaccess file, I guess.

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

There should be a form field added to the maintenance page that lets you define the startat value.

Lynne 09-08-2009 03:21 PM

Your url should be misc.php?do=updatethread&startat=40000

The query you posted is the original query, so I'm not sure what changes you made to it.

squishi 09-08-2009 06:27 PM

Okay. The last link worked. I guess I will do it this way.
Thank you for your support.

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

Wow, the process is much faster than usual when I start it at 40,000.
It will only consider the posts that are older than id 40,000?
So it will not build the similar threads for older threads?
That's not good.

Lynne 09-08-2009 09:01 PM

Quote:

Originally Posted by squishi (Post 1881719)
Wow, the process is much faster than usual when I start it at 40,000.
It will only consider the posts that are older than id 40,000?
So it will not build the similar threads for older threads?
That's not good.

It only rebuilds the threads that have an id greater than 40000 if you start at 40000.

I seriously don't get what you are trying to do. You either want to rebuild ALL the threads, or do don't. If you are going to rebuild them all, then it doesn't matter if you start at id 1 or you start with the last id - you still have to go through and rebuild them all.

squishi 09-09-2009 06:02 AM

Quote:

Originally Posted by Lynne (Post 1881774)
I seriously don't get what you are trying to do. You either want to rebuild ALL the threads, or do don't. If you are going to rebuild them all, then it doesn't matter if you start at id 1 or you start with the last id - you still have to go through and rebuild them all.

I want to rebuild all of the threads.

And it does matter.
On my forum, rebuilding the similar threads takes over 24 hours.
And the process often just dies somewhere at 25,000 threads.
If I start at the end, I can rebuild the similar threads for those latest threads and do not have to worry about the process reaching the oldest threads.

Lynne 09-09-2009 03:08 PM

Well, if you want to start at the end, then like I said, I think you will have to completely recode that section of the page.

Why don't you want to just turn on the option to create the list of similar threads when the thread is created? Do you really get so many threads created a day where that is going to cause problems? It sounds like what you are trying to do (rebuilding the similar threads all the time) is much more server intensive than just having the option on.


All times are GMT. The time now is 07:35 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.01188 seconds
  • Memory Usage 1,758KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_php_printable
  • (2)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (16)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete