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

Reply
 
Thread Tools
VBHSignature Maker Details »»
VBHSignature Maker
Version: 1.0.1, by micheal332001 micheal332001 is offline
Developer Last Online: Oct 2015 Show Printable Version Email this Page

Category: Add-On Releases - Version: 4.0.x Rating:
Released: 08-15-2010 Last Update: 08-24-2010 Installs: 31
DB Changes Uses Plugins Auto-Templates
Re-useable Code Additional Files Translations  
No support by the author.

What is signature maker
************************************************** *****

VBHsignatrue make is what it is a signature make,
where you can choose a background, font color and
input some text.

There are 12 backgrounds to choose from and the text
input is limited to 30 letters including the space.

when your members have made the signature image they
then click on the Link Codes button to get the 3 ways
they can add the image to any site.

They are

1.
HTML Code:
[img]http://www.SITENAME.com/FORUM/vbhsignature_image.php?userid=1[/img]
2.
HTML Code:
<img src="http://www.SITENAME.com/FORUM/vbhsignature_image.php?userid=1 />
3.
HTML Code:
http://www.SITENAME.com/FORUM/vbhsignature_image.php?userid=1
Please remember to
CHMOD folders to 777
ROOT/vbhsignature
ROOT/vbhsignature/bg
ROOT/vbhsignature/font
ROOT/vbhsignature/sigimage


UPDATES
*******************************************
The zip file called signature maker new now has an admincp for adding new
buttons/signature images.

This will also put in the line breaks aytomaticly now for you,
no need to enter in [br] for line breaks.

These buttons will not show the image but will show text on the button,
have added a screen shot for you of this.

When adding your own signatures just use the photoshop template i have added
and remove the background image and place yours in place to make your own.
Please remember that you would have to leave the text area i have added to the template is in the right place for the image.

This is now limited to 20 signatures so adding more than that will not show.

UPGRADE
*******************************************

Just upload all files in the UPLOAD folder and upload them to your forums root.

Inport the product.xml file with overright set to yes.
This will add the menu table to your database.

Please remember to
CHMOD folders to 777
ROOT/vbhsignature
ROOT/vbhsignature/bg
ROOT/vbhsignature/font
ROOT/vbhsignature/sigimage


Fullscreen mode Flash player Problems
********************************************
Flash Player 9 does not allow keyboard input when displaying content in full-screen mode. Flash Player 10 changes this, allowing for a limited number of keys to be usable in full-screen mode. These include Tab, the Spacebar, and the (up, down, left, right) arrow keys.

CHANGE LOG
********************************************
Updated the signature maker new zip file as there was a problem with the way it was working on some sites.
Also the new files will show you the image as a button here is screen shot.

20th august 2010
******************
Fixed error with admincp file.
Added 3 new swf files to support Arabic, English and French
Also change size when viewing the signature made to 700 x 550

21th august 2010
******************
Added in the profile field for any content you would like to show on there.
Goto admincp signature settings and enter in the number of the field you want to show.

To change the text from Xbox Live Gamertag: just edit the vbhsignature_maker.php file at line
123 and change the text to your needs.

23rd august 2010
******************
Have reuploaded the files as the swf file was not working this has now been fixed and is working fine.
Please RE-DOWNLOAD THE FILES AND UPLOAD TO YOUR SITE
no upgrade is needed just upload and it will work.

25th august 2010
******************

Added some new options for you, the options are as follows.
Disable Username
Disable Member Group
Disable Member Since
Disable Total x Posts
Disable Users Message
Disable Users website
Disable Custom Field ID

These have been added to the signature settings.

Download Now

File Type: zip Signature Maker New All in Arabic.zip (1.36 MB, 51 views)
File Type: zip SWF Language Files.zip (867.1 KB, 105 views)
File Type: zip VBHSignature_MakerV101.zip (1.35 MB, 195 views)

Screenshots

File Type: jpg mainpage.jpg (180.8 KB, 0 views)
File Type: jpg mainpage_new.jpg (188.7 KB, 0 views)

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.
Благодарность от:
RichieBoy67

Comments
  #62  
Old 08-21-2010, 08:20 AM
micheal332001 micheal332001 is offline
 
Join Date: Apr 2004
Posts: 1,112
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by DAMINK View Post
Why is this mod not taken to the next level?
Like Mybb did i hate to say it. I did make a thread about it but no takers as per normal.
Bug a sig that could pull specs from the forum would be gold mate.

Like this!!



Simple yet very damn effective. Comeon VB community. Why dont we have one?
Were not all about spamming the net. Some like to use old school methods damn it.

This could be made without any problems and would not need any flash code.
All you would need to do is use a simple php code that can make the image with the GD function.

Within the files for this script you would be able to make suce a system very easy.

PHP Code:
<?php
// Created by Adam Khoury @ www.developphp.com
// Connect to the database first thing
define('THIS_SCRIPT''signature');
define('signature_SCRIPT'true);

$phrasegroups = array();

$specialtemplates = array();

$globaltemplates = array();

$actiontemplates = array();

require_once(
'./global.php'); 
require_once(
DIR '/includes/functions.php');

$hexcolor str_split("FFFFFF"2);

// Convert HEX values to DECIMAL
$bincolor[0] = hexdec("0x{$hexcolor[0]}");
$bincolor[1] = hexdec("0x{$hexcolor[1]}");
$bincolor[2] = hexdec("0x{$hexcolor[2]}");

//Get your database info you want to use here
$postinfo$vbulletin->db->query_first("SELECT * FROM " TABLE_PREFIX "DATABASE TABLE HERE");

$threadinfo$vbulletin->db->query_first("SELECT * FROM " .  TABLE_PREFIX "DATABASE TABLE HERE");

// create the image using your own background
$image imagecreatefromjpeg("backgroundimage.jpg");

// dimensions of the image used
$img_width 240;
$img_height 25;

$font "verdana.ttf";

// set the colours
$color[1]  = imagecolorallocate($image$bincolor[0], $bincolor[1], $bincolor[2]);

// now i will create a line with font size 8, with no angle, 10 pixels to the right, and 17 pixels down
ImageTTFText ($image801017$color[1], $font'Total Posts: '.$postinfo[postcount]);
ImageTTFText ($image8010025$color[1], $font'Total Threads:  '.$threadinfo[threadcount]);

// output and destroy
header'Content-type: image/jpeg' );
imagepng($image);
imagedestroy($image);
?>
Hope this gives you a good start on what you want.
Reply With Quote
  #63  
Old 08-21-2010, 04:40 PM
Dr.osamA's Avatar
Dr.osamA Dr.osamA is offline
 
Join Date: Aug 2004
Location: Syrie
Posts: 979
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

thank you very very much bro

here is all MOD in Arabic

Signature Maker New All in Arabic :

vbhsignature_maker.swf
vbhsignature_maker.php
vbhsignature_maker_admin.php

plzz be nice and add it to 1st post
Attached Images
File Type: jpg 1.jpg (71.8 KB, 0 views)
File Type: jpg 2.jpg (50.2 KB, 0 views)
Attached Files
File Type: zip Signature Maker New All in Arabic.zip (1.36 MB, 7 views)
Reply With Quote
  #64  
Old 08-21-2010, 06:26 PM
betts02's Avatar
betts02 betts02 is offline
 
Join Date: Jun 2009
Posts: 910
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

When i try to extract the file, I get "Some data in the zip file is damaged" any ideas ?

It seems to be the sigimage file that will not work ?
Reply With Quote
  #65  
Old 08-21-2010, 08:03 PM
micheal332001 micheal332001 is offline
 
Join Date: Apr 2004
Posts: 1,112
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by betts02 View Post
When i try to extract the file, I get "Some data in the zip file is damaged" any ideas ?

It seems to be the sigimage file that will not work ?

I have just tryed the files and they un-zip fine
Reply With Quote
  #66  
Old 08-21-2010, 08:09 PM
andyv72 andyv72 is offline
 
Join Date: Jan 2008
Posts: 131
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

! C:\Users\Administrator\Desktop\Signature Makerrrrr.zip: CRC-Fehler in UPLOAD\vbhsignature\bg\apocalypse.jpg. Die Datei ist fehlerhaft.

Not Work... (4.0.6)

Attachment 121148
Attachment 121149
Reply With Quote
  #67  
Old 08-21-2010, 09:17 PM
betts02's Avatar
betts02 betts02 is offline
 
Join Date: Jun 2009
Posts: 910
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by andyv72 View Post
! C:\Users\Administrator\Desktop\Signature Makerrrrr.zip: CRC-Fehler in UPLOAD\vbhsignature\bg\apocalypse.jpg. Die Datei ist fehlerhaft.

Not Work... (4.0.6)

Attachment 121148
Attachment 121149
Exact same
Reply With Quote
  #68  
Old 08-22-2010, 02:08 AM
micheal332001 micheal332001 is offline
 
Join Date: Apr 2004
Posts: 1,112
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by andyv72 View Post
! C:\Users\Administrator\Desktop\Signature Makerrrrr.zip: CRC-Fehler in UPLOAD\vbhsignature\bg\apocalypse.jpg. Die Datei ist fehlerhaft.

Not Work... (4.0.6)

Attachment 121148
Attachment 121149
Quote:
Originally Posted by betts02 View Post
Exact same
I will re-ipload the files now and let me know if they are fine this time thanks.
Reply With Quote
  #69  
Old 08-22-2010, 06:04 AM
betts02's Avatar
betts02 betts02 is offline
 
Join Date: Jun 2009
Posts: 910
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

It seems to be the BG file now doing the exact same

Dont know what you have done but it just keeps saying ""Some data in the zip file is damaged"
Reply With Quote
  #70  
Old 08-22-2010, 06:09 AM
betts02's Avatar
betts02 betts02 is offline
 
Join Date: Jun 2009
Posts: 910
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Extracting to "C:\Users\Shane\Documents\"
Use Path: yes Overlay Files: no
Extracting vbhsignature_maker_admin.php
Extracting bitfield_vbhsignature_maker.xml
Extracting cpnav_vbhsignature_maker.xml
Extracting textLayout_1.0.0.595.swz
Extracting apbghost.jpg
Extracting apocalypse.jpg
CRC check failed
Error: Unable to extract "C:\Users\Shane\Documents\UPLOAD\vbhsignature\bg\a pocalypse.jpg".

The size of the extracted file (33528) does not match the uncompressed size (33527) recorded in the Zip file
Extracting asassenscreed.jpg
Extracting assassinscreed2.jpg
Extracting background.jpg
Extracting background1.jpg
Extracting background2.jpg
Extracting beast.jpg
Extracting catchme.jpg
Extracting chaoslegion.jpg
Extracting ciel.jpg
Extracting gambit.jpg
Extracting gearsofwar2.jpg
Extracting hellboy.jpg
Extracting house.jpg
creating: C:\Users\Shane\Documents\UPLOAD\vbhsignature\font\
Extracting verdana.ttf
creating: C:\Users\Shane\Documents\UPLOAD\vbhsignature\sigim age\
Extracting InsomniacP_2697630.jpg
Extracting micheal332001_.jpg
Extracting micheal332001_1415177.jpg
Extracting micheal332001_2059856.jpg
Extracting micheal332001_2256973.jpg.jpg
Extracting micheal332001_3566269.jpg
Extracting micheal332001_4955371.jpg
Extracting micheal332001_8270767.jpg.jpg
Extracting micheal332001_8276089.jpg
Extracting test.jpg
Extracting Unregistered_1731393.jpg
Extracting _.jpg
creating: C:\Users\Shane\Documents\UPLOAD\vbhsignature\water mark\
Extracting watermark.jpg
Extracting watermark.png
Extracting vbhsignature_image.php
Extracting vbhsignature_maker.php
Extracting vbhsignature_maker.swf
This is what i get from it when i try to see whats wrong
Reply With Quote
  #71  
Old 08-22-2010, 07:25 AM
micheal332001 micheal332001 is offline
 
Join Date: Apr 2004
Posts: 1,112
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by betts02 View Post
It seems to be the BG file now doing the exact same

Dont know what you have done but it just keeps saying ""Some data in the zip file is damaged"

I have just remade the zip file and then tryed to un-zip it with winace and winzip and it un-zips the file with no problems now.

Please let me know if this is still happening to you and i will send you the files another way.
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 07:18 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.04938 seconds
  • Memory Usage 2,390KB
  • Queries Executed 26 (?)
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
  • (3)bbcode_html
  • (1)bbcode_php
  • (7)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (11)post_thanks_box
  • (1)post_thanks_box_bit
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (8)postbit_attachment
  • (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
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_show_thanks_date_start
  • post_thanks_function_show_thanks_date_end
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete