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

Reply
 
Thread Tools
Details »»

Version: , by VirtueTech VirtueTech is offline
Developer Last Online: Nov 2023 Show Printable Version Email this Page

Version: 2.2.x Rating:
Released: 07-28-2001 Last Update: Never Installs: 43
 
No support by the author.

Credit goes to AA and Fryzid for their original hack found here: http://www.vbulletin.com/forum/showt...threadid=12282

HACK UPDATE:
I have updated this hack a bit with my fix above and some other additions as you'll see below.

Additions
  1. Adds new 'navbar' to header
  2. Adds Control Panel navbar to header
  3. Adds smilies window to signature editor
  4. Centralized Signature Limit Variable at top of script as an option.
  5. Ability to allow "Administrators" to have different siganture length.
  6. Fixes Bad_Madman's vbcode additon
  7. Cleans up HTML a bit
Screenshot


Directions
The attached file contains the following new items:
- '_editsignature' template
- sedit.php

Upgrading: Just replace the old template and php script with the new ones
First Time Install: Read the modified install.txt

07/29/01 6:19AM EST - First attachment had bad files. Please re-download.

Show Your Support

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

Comments
  #62  
Old 08-27-2001, 09:39 PM
webhost's Avatar
webhost webhost is offline
 
Join Date: Oct 2001
Location: St. Louis
Posts: 577
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

if you want I can email you an guest signon for you to see for yourself.

Joey
Reply With Quote
  #63  
Old 08-27-2001, 09:45 PM
tubedogg's Avatar
tubedogg tubedogg is offline
 
Join Date: Oct 2001
Location: Medina, OH
Posts: 785
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Please do - cause I just tried it again on my board and it all works, even with afterburner's sig.
Reply With Quote
  #64  
Old 08-27-2001, 09:58 PM
webhost's Avatar
webhost webhost is offline
 
Join Date: Oct 2001
Location: St. Louis
Posts: 577
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Kevin do you still need it?
Reply With Quote
  #65  
Old 08-27-2001, 09:59 PM
DarkReaper DarkReaper is offline
 
Join Date: Oct 2001
Posts: 429
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Works great for me, but in the Edit Profile screen it doesn't parse the vBCodes in the sig. Is this a problem or is it not supposed to?
Reply With Quote
  #66  
Old 08-28-2001, 12:55 AM
webhost's Avatar
webhost webhost is offline
 
Join Date: Oct 2001
Location: St. Louis
Posts: 577
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

not needed
Reply With Quote
  #67  
Old 08-28-2001, 01:39 AM
webhost's Avatar
webhost webhost is offline
 
Join Date: Oct 2001
Location: St. Louis
Posts: 577
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

AfterBurner

Check out your signature on the board, it works all locations.

I took out the hard coded color numbers you had and just used the names red,seagreen and it works fine. Check it out

Joey

Now to change my signature back here and get rid of those colors.
Reply With Quote
  #68  
Old 08-28-2001, 01:59 AM
tubedogg's Avatar
tubedogg tubedogg is offline
 
Join Date: Oct 2001
Location: Medina, OH
Posts: 785
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

webhost, make sure you have all of the following in member.php:

4. Open member.php and find

eval("\$customfields .= \"".gettemplate("register_customfields")."\";") ;
}

Right below that, add
$signature1=$bbuserinfo[signature];
$signature2=$bbuserinfo[signature];
$signature=bbcodeparse($signature1,0,$allowsmilies );
$sendsig=htmlspecialchars($signature2);

Then find

if ($email!=$emailconfirm) {

and right *ABOVE* it, add

$signature=ereg_replace('>', '>', $signature);
$signature=ereg_replace('&lt;', '<', $signature);
$signature=ereg_replace('&quot;', "\"", $signature);
$signature=ereg_replace('&amp;', '&', $signature);

That's the only reason I can see it would work for me and not for you.

DarkReaper: It parses fine for me on the profile screen. Have you made *all* of the changes noted in the install.txt file?
Reply With Quote
  #69  
Old 08-28-2001, 02:04 AM
DarkReaper DarkReaper is offline
 
Join Date: Oct 2001
Posts: 429
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Yea I did it all. Here's the section of code that seems would be the problem...looks fine to me.

PHP Code:
    eval("\$customfields .= \"".gettemplate("register_customfields")."\";");
  }

  
$signature=bbcodeparse($bbuserinfo[signature],0,$allowsmilies);
  
$sendsig=htmlspecialchars($bbuserinfo[signature]); 
Reply With Quote
  #70  
Old 08-28-2001, 02:16 AM
webhost's Avatar
webhost webhost is offline
 
Join Date: Oct 2001
Location: St. Louis
Posts: 577
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Tubedogg

That was it man

I didn't have eveything in there. I had the following like the DarkReaper

PHP Code:
 $signature=bbcodeparse($bbuserinfo[signature],0,$allowsmilies);
  
$sendsig=htmlspecialchars($bbuserinfo[signature]); 
I changed it to what you had; this and it worked. The hard coded numbers like Afterburner has also works,

$signature1=$bbuserinfo[signature];
$signature2=$bbuserinfo[signature];
$signature=bbcodeparse($signature1,0,$allowsmilies );
$sendsig=htmlspecialchars($signature2);

Thanks for your efforts today it is highly appreciated.

Joey
Reply With Quote
  #71  
Old 08-28-2001, 02:21 AM
tubedogg's Avatar
tubedogg tubedogg is offline
 
Join Date: Oct 2001
Location: Medina, OH
Posts: 785
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

For some reason I didn't have that in the install.txt file...OK here is an updated zip file with the correct instructions.
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 08:08 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.04800 seconds
  • Memory Usage 2,311KB
  • 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
  • (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
  • (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