Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.0 > vBulletin 3.0 Full Releases
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Signature Stats v3.04 Details »»
Signature Stats v3.04
Version: 3.04, by DWard DWard is offline
Developer Last Online: Mar 2018 Show Printable Version Email this Page

Version: 3.0.3 Rating:
Released: 05-20-2004 Last Update: 01-27-2005 Installs: 113
 
No support by the author.

VERSION 3.04
[05/09/2004]

-----------------------------------------------

This Hack is released under an EverythingvB.com FullAttribution-LimitedDerivs-LimitedTranslation License
-----------------------------------------------

This hack allows you to display your forum statistics in an image,whichyou can use as your signature in most forums (like mine).

If you have any trouble, please post here or in my forum for a good response. Please Click INSTALL, otherwise if an important fix becomes available, you will not be notified.

Now with truetype font support and line breaks. Fixed online userscode(was resetting 'most users online'). New easy support for GD2 andbelow.

Attached pixel font for use in your signatures, must be in all capitals, at size 6 to work appropriately.

New! Attached signature colourgenerator application. Useful to work out the colour scheme of yoursignature. Displays the RGB code for picked colour, and also allows forHEX to RGB conversion.

Popular modifications:


If you are upgrading please carry out steps two to four of the instructions.

Show Your Support

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

Comments
  #352  
Old 10-25-2004, 07:52 PM
DWard's Avatar
DWard DWard is offline
 
Join Date: Mar 2004
Location: Peterborough, UK
Posts: 320
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

hehe... If I get a bit of time I will do that mod to it. Jus tryin 2 get some kind of application that shows the latest posts etc to show.
Reply With Quote
  #353  
Old 11-07-2004, 09:27 PM
ice chrono ice chrono is offline
 
Join Date: Jul 2004
Posts: 27
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I cant seem to get this to work.
here my settings.
Quote:
// #################### ENTER DATABASE INFORMATION #######################
//DB-Servername
$host = "localhost";

//DB-Username
$user= "x";

//DB-Password
$password= "x";

//vbulletin database name
$database="x";

//E-Mail Address where MySQL Error Messages are sent to
$adminemail = "icechrono@gmail.com";

// ###################### ENTER IMAGE INFORMATION #########################

//Width of banner image
$width = 468;

//Height of banner image
$height = 60;

//Left text-margin
$left = 13;

//text-margin from top
$top = 70;

//Font Size
$fontsize = 7;

//If you have GD2 or higher set $sgdver to 1, for any older GD version set $sgdver to 0
$sgdver = 0;

//If you wish to use a TrueType font set $ttfe to 1, for default php font set $ttfe to 0
$ttfe = 1;

//If you wish to use a TrueType font, please enter the location to the .ttf file below
$ttff = "verdana.ttf";

//Line-spacing of text
$zeilenabstand = 15;

//full path to empty signature image (input image)
$vorlagedatei = "home/pjrpg/vb/sig.jpg";

//full path to signare image with forum data (output image)
$ausgabedatei = "home/pjrpg/vb/signature.jpg";

//Compression of output image
$komprimierung = 95;

//debug mode
$debug = 0;
any help?
Reply With Quote
  #354  
Old 11-08-2004, 10:21 AM
DWard's Avatar
DWard DWard is offline
 
Join Date: Mar 2004
Location: Peterborough, UK
Posts: 320
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

why won't it work? what happens?
Reply With Quote
  #355  
Old 11-08-2004, 04:05 PM
Ifrani's Avatar
Ifrani Ifrani is offline
 
Join Date: Oct 2001
Location: Berlin
Posts: 17
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

To get this hack working with the vBCrown change the following:

Search for:

PHP Code:
// GETTING TOTAL POSTS AND THREADS
include_once('./includes/functions_forumlist.php');
cache_ordered_forums(100);
if (
is_array($forumcache))
{
    foreach (
$forumcache AS $forum)
    {
        
$nthreads += $forum['threadcount'];
        
$nposts += $forum['replycount'];
        
$totalthreads number_format($nthreads);
        
$totalposts number_format($nposts);
    }

Replace it with:

PHP Code:
// GETTING TOTAL POSTS AND THREADS

    
$holedinge $DB_site->query("SELECT forum.forumid, threadcount, replycount FROM " TABLE_PREFIX "forum AS forum");
        if (
$DB_site->num_rows($holedinge))
        {
            while (
$holeding $DB_site->fetch_array($holedinge))
            {
                if (empty(
$focache["$holeding[forumid]"]))
                {
                    
$focache["$holeding[forumid]"] = array();
                }
                
$focache["$holeding[forumid]"] = array_merge($focache["$holeding[forumid]"], $holeding);
            }
        }

    
$DB_site->free_result($holedinge);

    if (
is_array($focache))
         {
            foreach (
$focache AS $forum)
            {
                
$nthreads += $forum['threadcount'];
                
$nposts += $forum['replycount'];
                
$totalthreads number_format($nthreads);
                
$totalposts number_format($nposts);
            }
         } 
Now you can use the sceduled tasks in your admincp. :nervous:
Reply With Quote
  #356  
Old 11-15-2004, 07:47 AM
DWard's Avatar
DWard DWard is offline
 
Join Date: Mar 2004
Location: Peterborough, UK
Posts: 320
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Cheers, I might put that in the next version so that people can chose what to do
Reply With Quote
  #357  
Old 11-19-2004, 01:07 AM
Jedric Jedric is offline
 
Join Date: Jan 2003
Location: Austin, TX
Posts: 39
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Could someone help me install mine? For some reason it won't let me do the true type font. The error I get is at: http://www.blizzardaddict.com/signature.php
Anyone know how to fix this? I also need to get it on multiple lines, but first I just need it to recognize the truetype font.
Reply With Quote
  #358  
Old 11-21-2004, 06:59 PM
Jedric Jedric is offline
 
Join Date: Jan 2003
Location: Austin, TX
Posts: 39
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Nevermind guys. I got it working. Thanks DWard for helping me.
Reply With Quote
  #359  
Old 11-22-2004, 07:00 AM
Stangsta's Avatar
Stangsta Stangsta is offline
 
Join Date: Aug 2004
Location: Virginia
Posts: 440
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Heh, I need help too!

Files and directory are chmod 777
Running GD2
I get a "red X" when trying to view signature.php

Heres the path to the pics.
//full path to empty signature image (input image)
$vorlagedatei = "/home/sevencityracing/html/hosting/sig.jpg";

//full path to signare image with forum data (output image)
$ausgabedatei = "/home/sevencityracing/html/hosting/signature.jpg";

Im lost here, any help is appreciated.
Reply With Quote
  #360  
Old 11-28-2004, 09:10 PM
Stangsta's Avatar
Stangsta Stangsta is offline
 
Join Date: Aug 2004
Location: Virginia
Posts: 440
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Anyone?????
Reply With Quote
  #361  
Old 11-29-2004, 03:43 AM
traderx's Avatar
traderx traderx is offline
 
Join Date: Jul 2003
Posts: 95
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Stangsta
Heh, I need help too!

Files and directory are chmod 777
Running GD2
I get a "red X" when trying to view signature.php

Heres the path to the pics.
//full path to empty signature image (input image)
$vorlagedatei = "/home/sevencityracing/html/hosting/sig.jpg";

//full path to signare image with forum data (output image)
$ausgabedatei = "/home/sevencityracing/html/hosting/signature.jpg";

Im lost here, any help is appreciated.
did you install vb in your root dir? or /forum?
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 02:24 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.05174 seconds
  • Memory Usage 2,335KB
  • 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
  • (2)bbcode_php
  • (2)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