vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=111)
-   -   Incrementing a counter for every page viewed (https://vborg.vbsupport.ru/showthread.php?t=72772)

amykhar 12-11-2004 05:26 PM

Incrementing a counter for every page viewed
 
If I wanted to increment a counter every time a user (registered or not) viewed a page, what would be the best way to go about it?

Example, person hits the forumhome page. counter= 1. Person clicks a forum link and goes to the forum display page - counter = 2. Person clicks the link to go to the last post in a thread - counter = 3. Person goes back to forumhome page - counter = 4. And so on.

I'm just not sure the best way to carry the counter around without making it visible on the url, which I definitely don't want.

Thanks,
Amy

Boofo 12-11-2004 05:33 PM

Do a table in the db and just run a query to add to the count on each page you want counted. I have a counter like that but only for my forumhome.

amykhar 12-11-2004 05:46 PM

Quote:

Originally Posted by Boofo
Do a table in the db and just run a query to add to the count on each page you want counted. I have a counter like that but only for my forumhome.

I'm wondering if there is any way to hook it into the session table, since that gets hit every time users do something anyway, right?

Boofo 12-11-2004 05:48 PM

Quote:

Originally Posted by amykhar
I'm wondering if there is any way to hook it into the session table, since that gets hit every time users do something anyway, right?

Should work. Let me know. I can save 2 queries on my forumhome if we can get it working that way. One to add and one to pull it. ;)

amykhar 12-11-2004 06:35 PM

Well, this is weird. I added the column, and put in the counter. It works fine in Internet Explorer and in Firefox if I am logged out. But for some reason, if I browse while logged in with firefox, it's creating a new entry in the session table for every thing I do.

Amy

amykhar 12-11-2004 06:48 PM

Quote:

Originally Posted by amykhar
Well, this is weird. I added the column, and put in the counter. It works fine in Internet Explorer and in Firefox if I am logged out. But for some reason, if I browse while logged in with firefox, it's creating a new entry in the session table for every thing I do.

Amy

Well, nevermind on that one. It seems to only happen if the cookie path is set to a subdirectory, Which it won't be on the real live site.

So, it can be done from the session table.

1. add the pagecounter column

2. after the query in this section // check for session sent through URL/cookie
increment the pagecounter.

3. Make sure to change the modify and insert queries to include the pagecounter.

Saved two queries for ya, Bob. (But, you'll have to check the location if you only want it done on forumhome)

Amy

Boofo 12-11-2004 07:12 PM

Quote:

Originally Posted by amykhar
Well, nevermind on that one. It seems to only happen if the cookie path is set to a subdirectory, Which it won't be on the real live site.

So, it can be done from the session table.

1. add the pagecounter column

2. after the query in this section // check for session sent through URL/cookie
increment the pagecounter.

3. Make sure to change the modify and insert queries to include the pagecounter.

Saved two queries for ya, Bob. (But, you'll have to check the location if you only want it done on forumhome)

Amy

Can you send me the code you are using for all of this? I' did mine too long ago I guess. ;)

How did you pull it from the db without a query?

Brad 12-11-2004 07:14 PM

I think she used a query bob, just an existing database query instead of adding a new one :).

amykhar 12-11-2004 07:34 PM

Quote:

Originally Posted by Boofo
Can you send me the code you are using for all of this? I' did mine too long ago I guess. ;)

How did you pull it from the db without a query?

When I get the whole thing done, I'll release it. I'm not too far off now.

amykhar 12-11-2004 09:24 PM

Here you go, Bob.

https://vborg.vbsupport.ru/showthrea...233#post581233


All times are GMT. The time now is 12:59 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.01006 seconds
  • Memory Usage 1,731KB
  • 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
  • (5)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