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

Reply
 
Thread Tools
User name images Details »»
User name images
Version: 3.00, by WorldDomination WorldDomination is offline
Developer Last Online: Jan 2010 Show Printable Version Email this Page

Category: Profile Enhancements - Version: 3.8.x Rating:
Released: 07-09-2009 Last Update: 12-20-2009 Installs: 64
Template Edits
Re-useable Code Translations  
No support by the author.

IMPORTANT UPDATE
I forgot to mention a vital part of the installation in the previous versions. When setting up the Custom Profile Field you must not make the location of the field in 'Edit Your Details', otherwise people that do not have the proper permissions to edit this field can do so VIA viewing their profile. I have updated the .zip with the updated instructions. Sorry for any inconvenience.

I've seen quite a few people asking about a mod to display an image in their user name spot, and haven't been able to find a working one.

What does this mod do?

This mod uses a Custom Profile Field to display an image for a persons user name rather than their default, boring text user name. It will display in all the users posts and in the users profile.

About this Mod:
  • Which user groups can view the Profile Field used for this mod
  • The size of the Image that can be used
  • Any user that doesn't have access to this field, or chooses not to use it, will have their normal text user name displayed.
  • It works with both Postbit and Postbit Legacy styles.
Please Mark Installed if you use!

This is my first released MOD, so some feedback would be very helpful, plus maybe some ideas on what else to add etc. to this MOD would be helpful.

INSTRUCTIONS ARE IN THE .ZIP FILE!

Download Now

File Type: zip UserNameImagesv4.zip (2.2 KB, 758 views)

Screenshots

File Type: png postbitdark.png (17.5 KB, 0 views)
File Type: png profiledark.png (19.6 KB, 0 views)
File Type: png postbitlegacydark.png (19.5 KB, 0 views)

Show Your Support

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

Comments
  #42  
Old 02-06-2010, 09:31 PM
dtv100 dtv100 is offline
 
Join Date: Apr 2007
Location: in the south of the north
Posts: 307
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

bumb
Reply With Quote
  #43  
Old 02-10-2010, 12:40 PM
Huy Ho?ng Huy Ho?ng is offline
 
Join Date: Dec 2008
Posts: 99
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Uninstall because used for 4.0
Reply With Quote
  #44  
Old 05-08-2010, 05:47 PM
3beidat's Avatar
3beidat 3beidat is offline
 
Join Date: Feb 2010
Location: Jordan
Posts: 30
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Possible someone can share the code for whosonlinebit
so I can see the images within Currently Active Users? That would be great!
Reply With Quote
  #45  
Old 05-26-2010, 01:01 PM
Skyrider Skyrider is offline
 
Join Date: Feb 2006
Location: Netherlands
Posts: 1,392
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Would be great if someone converts it (or the original author) to vB4! ^_^
Reply With Quote
  #46  
Old 06-10-2010, 12:53 AM
Lilmikeishere Lilmikeishere is offline
 
Join Date: Dec 2008
Posts: 48
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

We need something like this for vB4.
Reply With Quote
  #47  
Old 06-13-2010, 02:23 PM
Sajeth Sajeth is offline
 
Join Date: Feb 2008
Posts: 13
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

This opens the floodgates to XSS attacks, dont know what the authors intention was when posting this exploitable modification. Horrible.
Possible fix would be to set the regexp for the URL field to
Code:
^(https?://)?(([0-9a-z_!~*'().&=+$%-]+: )?[0-9a-z_!~*'().&=+$%-]+@)?(([0-9]{1,3}\.){3}[0-9]{1,3}|([0-9a-z_!~*'()-]+\.)*([0-9a-z][0-9a-z-]{0,61})?[0-9a-z]\.[a-z]{2,6})(:[0-9]{1,4})?((/?)|(/[0-9a-z_!~*'().;?:@&=+$,%#-]+)+/?)$|^$
which is too long for the standard vB database and requires the previous SQL query
Code:
ALTER TABLE `profilefield` CHANGE `regex` `regex` VARCHAR( 511 )
OR
Code:
ALTER TABLE `YOURTABLEPREFIX_profilefield` CHANGE `regex` `regex` VARCHAR( 511 )
if you use table prefixes. Elsewise this could be EASILY exploited for XSS attacks.
Reply With Quote
  #48  
Old 10-06-2010, 11:12 PM
Tactiii Tactiii is offline
 
Join Date: Sep 2010
Posts: 10
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

What do I do if the code specified was not in the postbit? :/
Reply With Quote
  #49  
Old 11-21-2010, 08:58 PM
DiLaRa's Avatar
DiLaRa DiLaRa is offline
 
Join Date: Jul 2009
Posts: 28
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

marked as installed,Thanks for this mod
Reply With Quote
  #50  
Old 11-21-2011, 12:08 AM
Emeralda's Avatar
Emeralda Emeralda is offline
 
Join Date: Oct 2011
Posts: 202
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Sajeth View Post
This opens the floodgates to XSS attacks, dont know what the authors intention was when posting this exploitable modification. Horrible.
if you use table prefixes. Elsewise this could be EASILY exploited for XSS attacks.
Than just limit it to your staff. I did it just for admins, and it works quite nicely.
Reply With Quote
  #51  
Old 05-05-2012, 07:26 AM
Xp.Warrior Xp.Warrior is offline
 
Join Date: Mar 2012
Posts: 142
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default


Brother Look This I Want To Show Username Image Every Where But Not Show In This How To Set ?
Thanks In Advanced
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:50 PM.


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.16913 seconds
  • Memory Usage 2,334KB
  • 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_code
  • (1)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
  • (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
  • (4)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
  • 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_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