vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 2.x Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=4)
-   -   page - hit counter in mysql (https://vborg.vbsupport.ru/showthread.php?t=26527)

eva2000 08-26-2001 10:00 PM

Who would ever think me releasing something :D

Being a newbie at php/mysql programming i had help from tutorials all over the place and from freakysid from SPF forums :)

1. MySQL based counter

You need:
1. phpmyadmin - http://sourceforge.net/projects/phpmyadmin/ -phpmyadmin install and use guide to add a table named mycounter to your existing vB database.

you need to select you vb database name listed in the left of phpmyadmin and run the following queries once in phpmyadmin
Code:

CREATE TABLE mycounter (count INT(11) UNSIGNED NOT NULL);
INSERT INTO mycounter SET count = 0;

i.e. if my vb database is named usertest you should enter like this the screen cap below or here.

2. need to edit your phpinclude template and add the following in:
PHP Code:

$result mysql_query("SELECT count FROM mycounter");
$mycounter mysql_result($result0) + 1;
$result mysql_query("UPDATE mycounter SET count = count + 1"); 

save changes

3. then place $mycounter in your footer template

Ruth 08-28-2001 04:08 AM

looks nice,

is there a demo?

and how does it work? based on logins? or specified ip adress?

eva2000 08-28-2001 04:10 AM

based a raw pageview hits... you can see it working on my vB at the bottom of each page http://animeboards.com/

i'm still a newbie with php but working on it :D

merk 08-28-2001 04:24 AM

A sugestion eva2k...

Im after a counter script myself, which yours is great for, but i need one to also record the HTTP_REFFERER, and useragent, and i dont really want to us webtrends :/

I could try to add these features for you if you want me to? ;)

eva2000 08-28-2001 04:37 AM

Quote:

Originally posted by merk
A sugestion eva2k...

Im after a counter script myself, which yours is great for, but i need one to also record the HTTP_REFFERER, and useragent, and i dont really want to us webtrends :/

I could try to add these features for you if you want me to? ;)

sure why not.. i'm planning to do this too but i have to learn how to do it first (it's only been 48 hrs since i started learning php :o )

merk 08-28-2001 04:51 AM

Ive done php for some time, but never have gotten around do doing anything of any importance :/

FWC 08-28-2001 05:33 AM

Quote:

Who would ever think me releasing something
That's a nice hack. I installed it.

_ 08-28-2001 03:25 PM

lol eva

the counter on AB is just like a stopwatch almost, it goes up like 2 every second (3 if you include me =)

Bane 08-28-2001 03:34 PM

Quote:

Originally posted by merk
A sugestion eva2k...

Im after a counter script myself, which yours is great for, but i need one to also record the HTTP_REFFERER, and useragent, and i dont really want to us webtrends :/

I could try to add these features for you if you want me to? ;)

In case anyone is interested, I am putting together something like this. You can view an example of the output at:

http://www.talkloud.net/forums/vbstats.php

As far as the referrer check

http://www.talkloud.net/forums/vbsta...ction=incoming

dxb 08-28-2001 04:59 PM

hi there eva

you did it at last :)

thanks for the counter

and Bane the stats look really great ....yes I'm intersted in and I will be waiting for if

but could you make it so that you can add it to a VB page and a non VB page if it's possible :)

Dakota 08-28-2001 09:49 PM

Bane that looks really good. I hope you release it

merk 08-29-2001 01:32 AM

Geezes, you must have taken your time to make something like that!

I cant ever get the motivation to create something like it :/

MarkB 08-29-2001 06:54 AM

Nice stuff, Eva :) Now to get depressed about how low the page count is :p

merk 08-29-2001 07:06 AM

Lol, good point there :( :(

eva2000 08-29-2001 09:06 AM

really i only want a simple pageview counter to compare against my banner script impressions and my site log files since my figures seem to differ a bit in each

BluSmurf 09-09-2001 08:27 AM

So when is eva gonna come up with the stats same as Bane's? I'll be waiting :D ... I have faith in you! hehehehee

BluSmurf

Bane 09-09-2001 02:35 PM

Mine is coming out very soon :)

chrispadfield 09-12-2001 04:25 PM

eva, wondering if there is a problem here. Have installed this a few weeks ago but just added the line to the bottom. Anyway, every refresh i do the hit counter is going up at least 5 with only 20 odd on the forums. This does not seem very likely to me.

So i was wondering, does avatar.php activate the phpinclude every time it is run?

YourHostSucks 09-29-2001 12:55 AM

Fun little add-on, Thanks ;)

DarkReaper 09-29-2001 02:59 AM

Me wants to see bane's! :)

Its not loading for me....

ezop 09-29-2001 12:10 PM

nice work, works a treat..:)

eva2000 10-31-2001 01:16 PM

nearly forgot about this :o

For the record it's still working on my forums :)

Quote:

Pageviews since Aug 27, 2001 - 10:00 am (AEST): 2668665

MrLister 10-31-2001 01:34 PM

hehe that's quite a few... i guess it works great.

maverick1236 11-03-2001 11:58 PM

NICELY DONE!!!

Works Perfect!!

Thank You!!

eva2000 11-04-2001 12:00 AM

thanks.. i had help from freakysid too so not all my work :)

SWFans.net 11-21-2001 02:30 PM

I was curious if there was any way to use the figures generated by this hack to come up with page views for the last 24 hours?

Chrysalis 12-30-2001 11:30 PM

the hack worked but it wouldnt accept the following command

CREATE TABLE mycounter (count INT(11) UNSIGNED NOT NULL);

so i used CREATE TABLE mycounter (count INT(11)); instead and the hack works a treat.

Bedhead 12-31-2001 12:00 AM

Great job!

PhotoGenie 02-02-2002 04:56 PM

Great hack.. Only thing I see that should be changed is the placement of it in your page. Someone posted above that they thought avatars might be registering as visits and that his visits were going up 5 times more than they should be. What happens is you put the counter in your footer and then your really just registering clicks and not how many visits to the home page. Your footer shows everywhere so every time a page is loading it is counted as a visit. If you put it in your forumhome template It will only register your main page.

Example:

Welcome to our newest member, <a href="member.php?s=$session[sessionhash]&action=getinfo&userid=$newuserid"><b>$newusername </b></a><br>
There has been <b>$mycounter</b> visits to this page since July 16th, 2001
</smallfont></td>
<td align="right"><smallfont>
The time now is $timenow.<br>


Thanks for the hack I'm using it now. :)

PhotoGenie 02-03-2002 04:40 PM

Still counting clicks after making changes above. I went back and tried a few other things and got it fixed where it is only counting visits to the main page. Here's the changes below.

I removed :

$result = mysql_query("SELECT count FROM mycounter");
$mycounter = mysql_result($result, 0) + 1;
$result = mysql_query("UPDATE mycounter SET count = count + 1");

from my phpinclude template.

Open index.php:

find around line 69

$birthdaybits="";

just above it insert

$result = mysql_query("SELECT count FROM mycounter");
$mycounter = mysql_result($result, 0) + 1;
$result = mysql_query("UPDATE mycounter SET count = count + 1");

and that will fix it to where it only counts the index page.

You can now insert:

$mycounter

Wherever you want your count to appear.

PhotoGenie 02-03-2002 10:17 PM

Here is my installation of eva2000's hit counter hack.. I created a text file in order to save the install for myself.

Lucky 02-24-2002 04:02 PM

Working on 2.2.2, but for some reason it is counting 2 at a time.

Any ideas?

Thank you.

PhotoGenie 02-24-2002 11:34 PM

Quote:

Originally posted by Lucky
Working on 2.2.2, but for some reason it is counting 2 at a time.

Any ideas?

Thank you.

Read a couple of post above yours:)

Lucky 02-25-2002 04:58 AM

I realize this, but I want to show total page views not just on the forum home page but all.

PhotoGenie 02-25-2002 11:30 AM

Good luck :)

wolfe 03-02-2002 02:01 AM

how do i make it have a , like this

67,482

Jakeman 03-07-2002 08:43 AM

installed, works :)

nuno 03-11-2002 02:56 PM

nice hack george :)
how can we make it to show daily views also?

eva2000 03-12-2002 12:56 AM

Quote:

Originally posted by wolfe
how do i make it have a , like this


67,482

change what you have in phpincludes to
PHP Code:

$result mysql_query("SELECT count FROM mycounter");
$mycounter mysql_result($result0) + 1;
$mycounter number_format($mycounter);
$result mysql_query("UPDATE mycounter SET count = count + 1"); 


eva2000 03-12-2002 12:58 AM

Quote:

Originally posted by nuno
nice hack george :)
how can we make it to show daily views also?

use bane's vBstats hack or install www.phpee.com ;)


All times are GMT. The time now is 01:22 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.01359 seconds
  • Memory Usage 1,817KB
  • 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_code_printable
  • (2)bbcode_php_printable
  • (7)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)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
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete