vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Most active topics last 24 hours (https://vborg.vbsupport.ru/showthread.php?t=182082)

riverplate.com 06-10-2008 11:10 AM

Most active topics last 24 hours
 
Hi!

i'm coding a cron that every hour gets the last 5 topics of the forum.

this it's the part where i've get the data

PHP Code:

$threadlist $vbulletin->db->query_read("SELECT thread.threadid AS threadid, thread.title AS title 
                                          FROM " 
TABLE_PREFIX "thread AS thread
                                          WHERE thread.forumid = 9
                                          AND thread.open != 10
                                          AND thread.visible = 1
                                          ORDER BY thread.dateline DESC
                                          LIMIT 5"
); 

but i'd like to show the most active (where users posted) topics within 24 hours.

is it possible? any ideas

thanks in advance

riverplate.com 06-12-2008 01:43 PM

any ideas?

Opserty 06-12-2008 01:47 PM

I think its

[minicode]ORDER BY thread.lastpost DESC[/minicode]

Instead of [minicode]ORDER BY thread.dateline DESC[/minicode]

riverplate.com 06-12-2008 06:41 PM

but i'd like to show the the "most posted" topics in the last 24 hours.

my query show the last 5 topics only

Opserty 06-12-2008 10:19 PM

Hmm that is more complicated, I don't know if you can use a COUNT in the WHERE clause of MySQL?

You'd have fetch the threads active in the last 24 hours, count the number of posts since then and order it by that...

[sql]
SELECT thread . * , post . *
FROM thread
LEFT JOIN post ON (thread.threadid = post.threadid )
WHERE post.dateline > ( UNIX_TIMESTAMP( ) -86400 )
GROUP BY thread.threadid
ORDER BY COUNT(post.postid) DESC
LIMIT 5
[/sql]

Not really a MySQL expert but that should do the trick I think. You will probably need to optimise/tweak it a bit.


All times are GMT. The time now is 09:38 PM.

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.01079 seconds
  • Memory Usage 1,720KB
  • 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
  • (1)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (5)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