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
  #32  
Old 07-02-2004, 09:22 PM
gmarik's Avatar
gmarik gmarik is offline
 
Join Date: May 2002
Location: Mocsow
Posts: 1,288
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Great, really cool.
Is therea any stats for vistitors by
- hours
- days of week too?
Reply With Quote
  #33  
Old 07-02-2004, 11:30 PM
Sam FT's Avatar
Sam FT Sam FT is offline
 
Join Date: Apr 2003
Posts: 119
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ok I had the old Stats 1.0 hack. Removed it completly. Install the new Stats 2.0 hack as writing. So when I go to the statistik.php file, I get this database error

Code:
  
  Invalid SQL: 
      	SHOW TABLE STATUS
      	FROM full-throttle_us_-_vb
      	LIKE 'pm'
      	 
  mysql error: You have an error in your SQL syntax near '-throttle_us_-_vb
      	LIKE 'pm'
      	 ' at line 3
  
  mysql error number: 1064
Reply With Quote
  #34  
Old 07-03-2004, 04:01 AM
Battle_Ring Battle_Ring is offline
 
Join Date: Apr 2004
Posts: 584
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

i installed this and when i go to statistik.php i got this

Database error in vBulletin 3.0.2:

Invalid SQL: SELECT dateline, nuser FROM stats ORDER BY nuser DESC LIMIT 1
mysql error: Table 'chrisr_HipHopStreetz.stats' doesn't exist

mysql error number: 1146

Date: Saturday 03rd of July 2004 12:54:31 AM
Script: http://www.hip-hop-streetz.com/forums/statistik.php
Referer:
Username: Chris
IP Address: 12.27.184.129
Reply With Quote
  #35  
Old 07-03-2004, 06:13 AM
Maddrax Maddrax is offline
 
Join Date: Mar 2002
Location: Leipzig, Germany
Posts: 3
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Maddrax click install
Reply With Quote
  #36  
Old 07-03-2004, 06:17 AM
PcFreak's Avatar
PcFreak PcFreak is offline
 
Join Date: May 2003
Posts: 205
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

@Battle_Ring

Sorry, but I can?t give help for your problem.
Because the table "stats" is a orginal table.

I have check the querie in the statistik.php. Cant found an error there.
I think there is a Problem with the TABLE_PREFIX

Found in the statistik.php

PHP Code:
//Tag mit den meisten Neu Registrierungen
    
$getmostregister$DB_site->query_first("SELECT dateline, nuser FROM " TABLE_PREFIX "stats ORDER BY nuser DESC  LIMIT 1");
    
$getmostregister_tag vbdate($vboptions['dateformat'], $getmostregister['dateline']);
    
$getmostregister_user $getmostregister['nuser']; 
and replace tihs code with this
PHP Code:
//Tag mit den meisten Neu Registrierungen
     //$getmostregister= $DB_site->query_first("SELECT dateline, nuser FROM " . TABLE_PREFIX . "stats ORDER BY nuser DESC  LIMIT 1");
    //$getmostregister_tag = vbdate($vboptions['dateformat'], $getmostregister['dateline']);
    //$getmostregister_user = $getmostregister['nuser']; 
Open the statistic side from your forum.
Tell me what is happen.

@Sam FT
hmm.

This is a normal query.
At the moment, i dont know why do you get a mysql error.
This is the orginal query

PHP Code:
SHOW TABLE STATUS
        FROM $dbname
        LIKE 
'pm' 


PcFreak
Reply With Quote
  #37  
Old 07-03-2004, 07:10 AM
Scrub's Avatar
Scrub Scrub is offline
 
Join Date: Oct 2001
Posts: 188
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Nevermind. The table is a defualt. . Stupid me.

Guess I am off to get into his cpanel and figure out if it is missing or if it is the table prefix.

Edit: Weird. He does not have the table by defualt.
Reply With Quote
  #38  
Old 07-03-2004, 07:21 AM
PcFreak's Avatar
PcFreak PcFreak is offline
 
Join Date: May 2003
Posts: 205
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I need the drop tables, because i have relaese this hack in two different languages. Some of the tables have different inserts e.g the statistik_laender table.

There are two different installation routines (and i must check both)
Thats the reason for the "drops".

PcFreak
Reply With Quote
  #39  
Old 07-03-2004, 07:23 AM
Scrub's Avatar
Scrub Scrub is offline
 
Join Date: Oct 2001
Posts: 188
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Updated. . Well, it was because of that. He did not have the stats table. O_o. But anyway, this is pretty neat hack! Wish I had a public forum to add this to. . Keep up the good work!
Reply With Quote
  #40  
Old 07-03-2004, 10:10 AM
orca's Avatar
orca orca is offline
 
Join Date: Oct 2001
Location: Switzerland
Posts: 183
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Well, I don't know wether anyone of you uses table_prefixes. But on my board I use them and because of that, the installation script was giving errors. After fixing I had the problem ith all other scripts.
Reply With Quote
  #41  
Old 07-03-2004, 02:14 PM
Sam FT's Avatar
Sam FT Sam FT is offline
 
Join Date: Apr 2003
Posts: 119
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by PcFreak
@Sam FT
hmm.

This is a normal query.
At the moment, i dont know why do you get a mysql error.
This is the orginal query

PHP Code:
SHOW TABLE STATUS
         FROM $dbname
         LIKE 
'pm' 


PcFreak
Well I am and when I run that query in mysql I still get the same error. So it is something in the query because I check all the pm tables to make sure there wasn't any bad with them.
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 09:17 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.10435 seconds
  • Memory Usage 2,315KB
  • 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
  • (1)bbcode_code
  • (4)bbcode_php
  • (1)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
  • (1)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