vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Member Archives (https://vborg.vbsupport.ru/forumdisplay.php?f=202)
-   -   Summarized Counter? (https://vborg.vbsupport.ru/showthread.php?t=623)

05-23-2000 04:32 AM

How is it possible to display a total counter (added counters from the single threads) in the start-page of vb?

Thanks for your hints!

05-23-2000 04:51 AM

it already shows total posts in the forum. What else are you wanting?

05-23-2000 05:06 AM

Martin,

i want to show the summarized views of all threads in the forum page - near by posts/threads/new member ...

05-23-2000 05:19 AM

Like "This forum has been viewed this # of times"?

So just a total of all views?

05-23-2000 05:23 AM

Yep - simply this!

;)

05-23-2000 05:28 AM

now I understand what you're wanting :)

I think it's doable, though I have spent any time thinking about it.

05-23-2000 07:52 AM

Try adding some code like this to the index.php file at about line 80:

Code:

  $countviews=$DB_site->query_first("SELECT SUM(views) AS views FROM thread");
  $totalviews=$countviews[views];
  if ($totalviews=="") {
    $totalviews=0;
  }

This is not included as standard, since the SQL call is potentially quite server intensive.

John

05-23-2000 09:30 AM

Quote:

Originally posted by John
Try adding some code like this to the index.php file at about line 80:

Code:

  $countviews=$DB_site->query_first("SELECT SUM(views) AS views FROM thread");
  $totalviews=$countviews[views];
  if ($totalviews=="") {
    $totalviews=0;
  }

This is not included as standard, since the SQL call is potentially quite server intensive.
John

John - why not adding a total counter into the database as standard?

05-23-2000 09:45 AM

I believe he answered that in your quote above?

Quote:

This is not included as standard, since the SQL call is potentially quite server intensive.
John
Did I miss something?:)

05-28-2000 05:52 AM

Quote:

Originally posted by werehere
I believe he answered that in your quote above?

Nope - i don't believe this ;)

In the table thread is a field called views used, why not adding something like a "global views" in the database, and everytime the field views of any thread is incremented - the "global views" would be incremented too!

If we use "global views" instead of a manual counting in index.php it would'nt be quite server intensive.


All times are GMT. The time now is 02:44 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.01131 seconds
  • Memory Usage 1,724KB
  • 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_code_printable
  • (3)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)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