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 12-11-2004, 05:26 PM
amykhar's Avatar
amykhar amykhar is offline
 
Join Date: Oct 2001
Location: PA
Posts: 4,438
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default 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
Reply With Quote
  #2  
Old 12-11-2004, 05:33 PM
Boofo's Avatar
Boofo Boofo is offline
 
Join Date: Mar 2002
Location: Des Moines, IA (USA)
Posts: 15,776
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

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.
Reply With Quote
  #3  
Old 12-11-2004, 05:46 PM
amykhar's Avatar
amykhar amykhar is offline
 
Join Date: Oct 2001
Location: PA
Posts: 4,438
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

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?
Reply With Quote
  #4  
Old 12-11-2004, 05:48 PM
Boofo's Avatar
Boofo Boofo is offline
 
Join Date: Mar 2002
Location: Des Moines, IA (USA)
Posts: 15,776
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

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.
Reply With Quote
  #5  
Old 12-11-2004, 06:35 PM
amykhar's Avatar
amykhar amykhar is offline
 
Join Date: Oct 2001
Location: PA
Posts: 4,438
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

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
Reply With Quote
  #6  
Old 12-11-2004, 06:48 PM
amykhar's Avatar
amykhar amykhar is offline
 
Join Date: Oct 2001
Location: PA
Posts: 4,438
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

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
Reply With Quote
  #7  
Old 12-11-2004, 07:12 PM
Boofo's Avatar
Boofo Boofo is offline
 
Join Date: Mar 2002
Location: Des Moines, IA (USA)
Posts: 15,776
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

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?
Reply With Quote
  #8  
Old 12-11-2004, 07:14 PM
Brad Brad is offline
 
Join Date: Nov 2001
Posts: 4,765
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I think she used a query bob, just an existing database query instead of adding a new one .
Reply With Quote
  #9  
Old 12-11-2004, 07:34 PM
amykhar's Avatar
amykhar amykhar is offline
 
Join Date: Oct 2001
Location: PA
Posts: 4,438
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

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.
Reply With Quote
  #10  
Old 12-11-2004, 09:24 PM
amykhar's Avatar
amykhar amykhar is offline
 
Join Date: Oct 2001
Location: PA
Posts: 4,438
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Here you go, Bob.

https://vborg.vbsupport.ru/showthrea...233#post581233
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 01:34 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.04540 seconds
  • Memory Usage 2,250KB
  • 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
  • (5)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (10)postbit
  • (10)postbit_onlinestatus
  • (10)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