Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.0 > vBulletin 3.0 Full Releases

Reply
 
Thread Tools
vB3 Boardstatistic Version 2 Details »»
vB3 Boardstatistic Version 2
Version: 1.00, by PcFreak PcFreak is offline
Developer Last Online: Mar 2015 Show Printable Version Email this Page

Version: 3.0.3 Rating:
Released: 07-01-2004 Last Update: 08-28-2004 Installs: 184
DB Changes
 
No support by the author.

no more support for statistic version 2



In the next days we will release a new statistic Version (vB Statistic 3).
For this reason I give from today on, no more support for the Statistic Version 2

This version is bigger, faster and we want to publish the statistic in two languages. (german and english).


In order to use the new Statistic Version, the old version must be unfortunately removed.

A deinstallation script you found here >> https://vborg.vbsupport.ru/showpost....47&postcount=2

For a first impression

You find a English demonstration of the Statistic here >> http://at-lantis.de/statistic.php

You find a German demonstration of the Statistic here >> http://boardszene.de/statistic.php

May someone will translate our Phrases from the new version 3.0 into other languages. If you are interested please send me or Onkel_Tom a PM with your eMail Address and we will sent you the phrases file in english to be translated into other languages.

The vB Statistic is free. However, if you would like to donate a small amount, feel free.

  • Statistic Version 3 have more as 7000 Lines of code and possibly, one of the largest Hacks that was ever written for vBulletin.
  • More as 450 different images
  • 46 new Templates are provided
  • More than 350 phrases are needed.
  • Everything is completely adjustable over the AdminCp
  • More than 350 phrases are needed.
  • No much server load. Maximally 5 querys for logging. (normal 3 querys.)
  • The start side of the statistics needs approx. 15 querys (only if this is indicated)
  • More than 350 phrases are needed.
  • Possibility for later updates (e.g. new Spider and Crawler implements)
  • The installation is very, very simply, been made by an installscript and does not need more than 30 seconds. All attitudes and changes take maximally 5 minutes.
  • no changes of the existing vBulletin data base tables
  • 15 new data base tables with more than 1100 inserts are provided
  • Support for international time formats implements.
  • Detect now browser plugins, resolutions and more with javascript.
  • vB Statistic Version 3 show Information about your System on a special side.
  • Detect now browser plugins, resolutions and more with javascript

More Infos soon
PcFreak

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #282  
Old 08-30-2004, 10:42 PM
Symbian.info Symbian.info is offline
 
Join Date: Nov 2001
Location: Netherlands
Posts: 82
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Onkel_Tom
Wow, 101 installations right now and also 71 clicks for the Hack of the Month August !
Thanks to all Users
Install it! Love it! Wait now for version 3!! Thanks neighbour!

But I have one problem! Templates are only installed in style 1 !! :ermm:
How can I have it also in the other templates??? (noway I do it by hand !!)
Reply With Quote
  #283  
Old 08-31-2004, 12:44 PM
Host Directory Host Directory is offline
 
Join Date: Feb 2003
Posts: 82
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Which bit of code do i need to change to add new search engine spiders graphics to the stats? I found a web stats program on google that has 111 search engine spider icons that i would like to use.
Reply With Quote
  #284  
Old 08-31-2004, 01:52 PM
PcFreak's Avatar
PcFreak PcFreak is offline
 
Join Date: May 2003
Posts: 205
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Host Directory
Which bit of code do i need to change to add new search engine spiders graphics to the stats? I found a web stats program on google that has 111 search engine spider icons that i would like to use.
You can add new spiders in the functions_statistik.php.

Found this part:
Code:
//################################################################################################
//### Spider Bots und Crawler Erkennung START im Moment 92 verschiedene
//################################################################################################
To add a new Spider use this code:
PHP Code:
elseif(ereg("newspider"$agent)) $c_bot "NewSpider"
Now you must create a new field in the statistik_spider table for the new spider.

PcFreak

PS:
Can you post a link to the web stats program, please
Reply With Quote
  #285  
Old 08-31-2004, 02:32 PM
Onkel_Tom's Avatar
Onkel_Tom Onkel_Tom is offline
 
Join Date: Mar 2002
Location: Stuttgart- Germany
Posts: 208
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Host Directory
Which bit of code do i need to change to add new search engine spiders graphics to the stats? I found a web stats program on google that has 111 search engine spider icons that i would like to use.
You have to add your search engines to the database table statistic_spider in the same way as the existing entries.
you can use this code in phpmyadmin to add a search engine to the table:
Code:
INSERT INTO `statistik_spider` ( `ID` , `spidername` , `spider_link` , `balken_link` , `Zaehler` ) VALUES
('', 'Spidername1', 'images/statistik/spider/spidernamerflagname1.gif', 'images/statistik/bar1.gif'),
('', 'Spidername2', 'images/statistik/spider/spidernamerflagname2.gif', 'images/statistik/bar2.gif'),
('', 'Spidername3', 'images/statistik/spider/spidernamerflagname3.gif', 'images/statistik/bar3.gif');
just replace SpidernameX with your Spidername, spidernamerflagname3.gif with your filename of the flag image. look also at the end of the code and change barx.gif for each line starting at bar1.gif up to bar11.gif and then again from bar1.gif.

Pay attention on the last line is a ";" at the end not a comma !

after adding the entries into the table you should also edit your file functions_statistik in /includes directory:
find
Code:
elseif(ereg("zyborg", $agent)) $c_bot ="WiseNu";													//WiseNu
and add after:
Code:
elseif(ereg("spider agent identification string", $agent)) $c_bot ="Spidername as written in database";													//your new Spidername
find out the spider agent identification strinf while searching on google for this spider and wrote in this string, Spidername as written in database should have the identical syntax as your entrie in db table for spidername.

that's all

I'm working on a spider indentification at the moment which is identifiying more spiders and gives also more information about the spiders. So if you can wait you get a better version in few days or weeks
It's a very hard work to write all the information from several websites in the net in one database table, collect all information and change the code that it works.
I also optimized the identification routine from functions_statistik that the serverload is not to high while identify the spiders, also a lot of double entries and wrong spider agents will be fixed in this release.

It would be great if you can share the spider flags with us and I can implement these grafics in the new release
Reply With Quote
  #286  
Old 09-03-2004, 09:31 AM
venomx's Avatar
venomx venomx is offline
 
Join Date: Apr 2002
Location: Pennsylvania USA
Posts: 441
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I just installed this on 9/2 yet its showing I had one signup on 9/1???

http://www.discussionjunction.com/fo...do=last_x_days
Reply With Quote
  #287  
Old 09-03-2004, 05:31 PM
DWard's Avatar
DWard DWard is offline
 
Join Date: Mar 2004
Location: Peterborough, UK
Posts: 320
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

There is an error in the code... Where you show the latest sticky threads on the bottom left of 'Polls / Stickys / Searchwords' the userid in the username link does not correspond to the username itself.

Can you do something about this?
Reply With Quote
  #288  
Old 09-03-2004, 06:05 PM
Onkel_Tom's Avatar
Onkel_Tom Onkel_Tom is offline
 
Join Date: Mar 2002
Location: Stuttgart- Germany
Posts: 208
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by DWard
There is an error in the code... Where you show the latest sticky threads on the bottom left of 'Polls / Stickys / Searchwords' the userid in the username link does not correspond to the username itself.

Can you do something about this?
You are right my friend !
Search in Template statistic_sticky_bit for:
Code:
href="member.php?u=$autorid">$sticky_autor
and replace it with:
Code:
href="member.php?u=$sticky_autorid">$sticky_autor
and it works
Reply With Quote
  #289  
Old 09-03-2004, 07:42 PM
DWard's Avatar
DWard DWard is offline
 
Join Date: Mar 2004
Location: Peterborough, UK
Posts: 320
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

No worries, if theres any problems ill find em out and report bk
Reply With Quote
  #290  
Old 09-03-2004, 07:43 PM
MissKalunji's Avatar
MissKalunji MissKalunji is offline
 
Join Date: Aug 2003
Location: Canada
Posts: 2,845
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by DWard
No worries, if theres any problems ill find em out and report bk

Hey dward i ws wondering how do you make that pic signature?? is it a php code and image??? dat shows up how many users and things??

Mind telling me how u did it??

** Off topic but im just curious *** :nervous:
Reply With Quote
  #291  
Old 09-03-2004, 08:01 PM
Onkel_Tom's Avatar
Onkel_Tom Onkel_Tom is offline
 
Join Date: Mar 2002
Location: Stuttgart- Germany
Posts: 208
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by MissKalunji
Hey dward i ws wondering how do you make that pic signature?? is it a php code and image??? dat shows up how many users and things??

Mind telling me how u did it??

** Off topic but im just curious *** :nervous:
This picture is the output of another Hack called Signature Hack.
Pls. use the search function on this board to find the Hack in the database
Reply With Quote
Reply

Thread Tools

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 02:46 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.09758 seconds
  • Memory Usage 2,321KB
  • Queries Executed 25 (?)
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
  • (6)bbcode_code
  • (1)bbcode_php
  • (6)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)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_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
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete