Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.6 > vBulletin 3.6 Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
ForumSig 1.0 Details »»
ForumSig 1.0
Version: 1.00, by kg4mxz kg4mxz is offline
Developer Last Online: Jun 2013 Show Printable Version Email this Page

Category: Mini Mods - Version: 3.6.1 Rating:
Released: 09-19-2006 Last Update: Never Installs: 52
Additional Files Is in Beta Stage  
No support by the author.

Outputs a PNG image you can use as a forum signature with live forum statistics.

This was only tested with vB 3.6.1 There might be something similar to this already but I could not get a version that I could get to work so I made my own.

Install Time: <30 seconds

Installation:
  1. Change $forumname to the name of your forum as you want it displayed in the image.
  2. Upload sig.php and base.png to your forum root
  3. Do any modifications to base.png you want (Optional)
  4. Your signature is ready to use!
A sample implementation in HTML:
HTML Code:
<IMG SRC="http://yourdomain.com/path/to/forum/sig.php">

Show Your Support

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

Comments
  #52  
Old 11-19-2006, 11:51 AM
sduckie2k5 sduckie2k5 is offline
 
Join Date: Oct 2005
Location: Colorado
Posts: 62
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Works great, thanks!
Reply With Quote
  #53  
Old 12-01-2006, 10:53 AM
TRR TRR is offline
 
Join Date: Jan 2005
Location: San Antonio, TX
Posts: 79
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by optrex View Post
can you tell me how I would set this cron job up - to update every 15 mins and output a jpg?
Same here
Reply With Quote
  #54  
Old 12-08-2006, 12:09 PM
MaestroX MaestroX is offline
 
Join Date: Aug 2006
Location: UK
Posts: 249
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I've installed this fine hack but my only concern is that when I view "who's online" there seems to be an awfull lot of people (and spiders) on the actual php page of the image. Its strange cause my .htaccess rewrites them to a .png file. Should I be worried?
Reply With Quote
  #55  
Old 12-08-2006, 01:16 PM
organik81's Avatar
organik81 organik81 is offline
 
Join Date: Jan 2005
Location: istanbul / Turkey
Posts: 42
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

THNX

Reply With Quote
  #56  
Old 12-08-2006, 02:28 PM
Tbadl Tbadl is offline
 
Join Date: Dec 2006
Posts: 1
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

nice work

I will try to add to it ArabicGD
Reply With Quote
  #57  
Old 12-19-2006, 12:27 AM
Xoxideforums Xoxideforums is offline
 
Join Date: Jul 2004
Location: West Chester PA
Posts: 72
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I understand how to change the font size. But how the heck do you change font style like this person did?

And I'm also interested in setting up a cron so I can use an image that gets updated.

Quote:
Originally Posted by Riku Yuizaki View Post
Nice mod, I made one like this as well, its awesome, you can display pretty much anything you want on it, you can do stuff like this even:


not one query used anywhere in it!
Reply With Quote
  #58  
Old 01-22-2007, 09:42 PM
zompus zompus is offline
 
Join Date: Aug 2006
Location: Essex
Posts: 55
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

This don't work with VBSeo!

Check: http://doubleyellowcard.com/sig.php - blank.
Reply With Quote
  #59  
Old 03-19-2007, 12:38 AM
Riku Yuizaki's Avatar
Riku Yuizaki Riku Yuizaki is offline
 
Join Date: Aug 2005
Posts: 8
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Woah, completely forgot about this...

To use different style fonts, refer to http://us3.php.net/manual/en/function.imagettftext.php
Reply With Quote
  #60  
Old 10-06-2007, 10:38 AM
SLY LS1's Avatar
SLY LS1 SLY LS1 is offline
 
Join Date: May 2007
Location: Melbourne Australia
Posts: 123
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Riku Yuizaki View Post
Nice mod, I made one like this as well, its awesome, you can display pretty much anything you want on it, you can do stuff like this even:


not one query used anywhere in it!
Can you share some of the code, I like the members online bit

Cheers
Reply With Quote
  #61  
Old 10-06-2007, 11:50 AM
SLY LS1's Avatar
SLY LS1 SLY LS1 is offline
 
Join Date: May 2007
Location: Melbourne Australia
Posts: 123
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ok heres how to add some others for those who dont know how

Members Online:

PHP Code:
//Members Online//
$datecut TIMENOW $vbulletin->options['cookietimeout'];
$guestsarry $vbulletin->db->query_first("SELECT COUNT(host) AS sessions FROM " TABLE_PREFIX "session WHERE userid = 0 AND lastactivity > $datecut");
$membersarry $vbulletin->db->query_read("SELECT DISTINCT userid FROM " TABLE_PREFIX "session WHERE userid <> 0 AND lastactivity > $datecut");
$guests intval($guestsarry['sessions']);
$members intval($vbulletin->db->num_rows($membersarry));
$online $guests $members
And add this to get it to show:

PHP Code:
imagestring($im210030"Members Online: " $online$text_color); 
and another

Newest User:

PHP Code:
//newest User//
$newuser $vbulletin->db->query_first("SELECT username AS newuser FROM " TABLE_PREFIX "user ORDER BY userid DESC LIMIT 1");
$newuser $newuser['newuser']; 
And add this to get it to show:

PHP Code:
imagestring($im223030"Newest Members: " $newuser$text_color); 
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: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.05501 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
  • (1)bbcode_html
  • (4)bbcode_php
  • (3)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
  • (3)pagenav_pagelink
  • (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