Go Back   vb.org Archive > vBulletin Modifications > Archive > Modification Graveyard
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
vBSigHosting v1.0.1 Details »»
vBSigHosting v1.0.1
Version: 1.00, by Logikos Logikos is offline
Developer Last Online: Sep 2023 Show Printable Version Email this Page

Category: Miscellaneous Hacks - Version: 3.0.3 Rating:
Released: 04-13-2004 Last Update: Never Installs: 124
 
No support by the author.

vBSigHosting v1.0.0



====================
Author: Ken 'LiveWire' Iovino
Site: www.vbhacks.us
Version: 1.0.1
====================

Updates
  • Fixed bug with profile pic showing avatar.
    If your using 1.0.0 please read upgrad_from_1.0.0.txt for the bug fixes


What this does
vBSigHosting is a free image hosting hack for remote hosting of signatures for your forums. This will allow members to upload there signature to your site and use it on your site. Each user gets one upload, with a file width, height, and size limit that you specified in the admin cp.

Features:
  • Completely Admin CP controlled.
  • Turn on/off for diffrent usergroups.
  • File sizes, width, and height restrictions (pixels) via ACP.
  • One user equals one signature image at a time.
  • When user uploads new signature, old signature will erase.
  • All images are stored in database.
  • And more...
To do list...
  • Time to install: 15-20 minutes
  • Queries to run: 2
  • File Mods: 5
    • /admincp/usergroup.php
    • /includes/init.php
    • /includes/functions_upload.php
    • /forum/profile.php
    • /forum/image.php
  • Templates to edit: 1
  • Templates to add: 1
  • New Phrases: 14

Click It


Please read carefully and make all the necessary changes at stated. This is will work if installed properly. I've tested this hack on 3 diffrent vBulletin boards running version 3.0.0. PLEASE REMEMBER TO BACKUP BEFORE YOU BEGIN! If you like this hack, please be kind and click on the "Install" button, i will have some updated versions soon.

Help & Support
Before asking for support Please make sure you have done all necessary changes! If you still need support please post a reply.


Please post bugs and errors here. Hope you like, feedback welcomed.

Show Your Support

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

Comments
  #122  
Old 08-15-2004, 09:05 PM
xug xug is offline
 
Join Date: Oct 2001
Location: The Grand Strand, SC
Posts: 339
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by ChuanSE
Your signature script sucks? it displays info we know ^^
kiddo
You're One Smart Kid

But your right, it sucks, time to place a new one since this one is more than a year old.
Reply With Quote
  #123  
Old 08-15-2004, 09:10 PM
xug xug is offline
 
Join Date: Oct 2001
Location: The Grand Strand, SC
Posts: 339
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Live Wire
No, if members want my free hack and my support for a feature that i spent my time on. they can go to my site there selfs. They know where it is and they know how to get it. Clicking on the uninstall button won't hurt my feelings as this thread is pending to me moved to the can.
Live Wire.

My statement was nothing personal (in fact I think your hacks are great), I'm just tired of all these sites that have hacks that let us sign up and a month later they are gone, we have seen enough of that already in the past.
Reply With Quote
  #124  
Old 10-03-2004, 07:38 PM
Logikos Logikos is offline
 
Join Date: Jan 2003
Posts: 2,924
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

vBSigHosting is back and has been updated with a small bug fix. New .Zip added and .txt file for upgrade instructions from 1.0.0 to 1.0.1

Next update will be to view the users sigs. The ammount of space it's using in the database, save files a .gif image, and watermark images for images outside of your site.
Reply With Quote
  #125  
Old 10-04-2004, 08:25 PM
InsaneContender InsaneContender is offline
 
Join Date: May 2003
Location: Sacramento, CA
Posts: 152
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I get this error message:

Code:
Database error in vBulletin 3.0.3:

Invalid SQL: UPDATE usergroup SET

### UPDATE QUERY GENERATED BY fetch_query_sql() ###
	title = 'Administrators',
	description = '',
	usertitle = 'Administrator',
	opentag = '<i><b>',
	closetag = '</b></i>',
	passwordexpires = '0',
	passwordhistory = '0',
	siguploader = '1',
	siguploadermaxwidth = '500',
	siguploadermaxheight = '150',
	siguploadermaxsize = '524288000',
	arcademinposts = '0',
	arcademintime = '0',
	attachlimit = '0',
	avatarmaxwidth = '100',
	avatarmaxheight = '100',
	avatarmaxsize = '50000',
	profilepicmaxwidth = '100',
	profilepicmaxheight = '100',
	profilepicmaxsize = '65535',
	pmquota = '100',
	pmsendmax = '5',
	forumpermissions = '393215',
	pmpermissions = '3',
	calendarpermissions = '31',
	wolpermissions = '31',
	adminpermissions = '3',
	genericpermissions = '3145663',
	genericoptions = '23',
	arcadepermissions = '31',
	articlepermissions = '4095'
WHERE usergroupid=6
mysql error: Unknown column 'siguploader' in 'field list'

mysql error number: 1054

Date: Monday 04th of October 2004 02:16:55 PM
Script: http://www.communityforums.net/forum.../usergroup.php
Referer:
I followed directions perfectly as well...
Reply With Quote
  #126  
Old 10-04-2004, 08:28 PM
Logikos Logikos is offline
 
Join Date: Jan 2003
Posts: 2,924
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

You forgot to run the SQL queries as instructed.

These are the ones you need to run:

[sql]
create table customsiguploader
( userid int unsigned not null default 0
, siguploaderdata mediumtext not null
, dateline int unsigned not null default 0
, filename varchar(100) not null default ''
, visible smallint not null default 1
, filesize int unsigned not null default 0
, primary key (userid)
)
[/sql]

And

[sql]
ALTER TABLE usergroup ADD (
siguploadermaxwidth SMALLINT UNSIGNED NOT NULL DEFAULT '0',
siguploadermaxheight SMALLINT UNSIGNED NOT NULL DEFAULT '0',
siguploadermaxsize INT UNSIGNED NOT NULL DEFAULT '0',
siguploaderpermissions INT(10) UNSIGNED NOT NULL DEFAULT '0'
)
[/sql]
Reply With Quote
  #127  
Old 10-04-2004, 08:45 PM
Blam Forumz Blam Forumz is offline
 
Join Date: Jun 2004
Posts: 554
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Installed
Reply With Quote
  #128  
Old 10-05-2004, 01:15 AM
Erwin's Avatar
Erwin Erwin is offline
 
Join Date: Jan 2002
Posts: 7,604
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Are you able to make it so that the files are not in the database but in the filesystem?
Reply With Quote
  #129  
Old 10-05-2004, 02:13 AM
Logikos Logikos is offline
 
Join Date: Jan 2003
Posts: 2,924
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Erwin
Are you able to make it so that the files are not in the database but in the filesystem?
I'm trying to figure out an easy way to do that, but the way i was trying still kept the image in the database. I was just going to use $_SERVER['REQUEST_URI'] to get the full request URI including the userid Then in .htaccess you make the no-extention file sigs be a php file:

<Files sigs>
ForceType application/x-httpd-php
</Files>

And everyone sigs will point to, www.yoursite.com/forums/sigs/1

1 being the userid.

I you can figure out how we can do it to upload to a specific directory that would be great, cause i know you have a huge site, and you need to access the database as less as possilbly.
Reply With Quote
  #130  
Old 10-05-2004, 08:25 AM
Deimos Deimos is offline
 
Join Date: Oct 2002
Posts: 529
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I think it's a great hack, keep up the good work Livewire.
Reply With Quote
  #131  
Old 10-26-2004, 09:49 PM
Gemma's Avatar
Gemma Gemma is offline
 
Join Date: Apr 2004
Location: Scotland
Posts: 1,229
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Great Hack *clicks install*
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 05:24 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.04756 seconds
  • Memory Usage 2,313KB
  • 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
  • (3)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
  • (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