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
[DBTech] Username Change v1 (vB4) Details »»
[DBTech] Username Change v1 (vB4)
Version: 1.3.1, by DragonByte Tech DragonByte Tech is offline
Developer Last Online: Mar 2023 Show Printable Version Email this Page

Category: Miscellaneous Hacks - Version: 4.x.x Rating:
Released: 02-25-2010 Last Update: 08-16-2017 Installs: 549
Uses Plugins
Additional Files Translations  
No support by the author.

What is Username Change?
Username Change is Brought to you by the Designer of products such as RPG Inferno and Inferno vBShout and the programmer of RPG Integration v3.

Username Change from DragonByte Tech is a modification designed to allow users to change their usernames at will (within your configured limits, of course).

About Username Change
Your members will no longer bug you for username changes, you can let them change it whenever they want!

It also has a history feature in the member profile, showing a list of previous usernames. This history feature uses vBulletin's own Profile Change history - no additional tables needed!

-------------------------------------------------------------------------------------------

If you like this mod please hit the button to the right ---->

Please remember to click the, button to the right if you installed the mod ---->

What does 'Marking As Installed' do ?

* It helps you to stay on top of updates - members who have installed modifications will be notified by us whenever new updates are available.

* For security issues - vbulletin.org will contact all members who have installed a modification whenever a security issue is brought to their attention.

* Marking a modification as installed also helps us know how many people are using our work, giving us extra incentive to provide more features and new modifications.

We appreciate the support!

-------------------------------------------------------------------------------------------

Priority support is handled at the Developers Website.

-------------------------------------------------------------------------------------------

Feature List
  • Uses vBulletin's "Profile Change History" feature for maximum compatibility with other mods
  • Change username via UserCP -> Edit Profile
  • One-click revert username via UserCP -> Edit Profile
  • Username change history in a member's profile
  • Moderators can change usernames at any time easily
  • "Can Change Own Username" permission for users
  • "Can Change Others Usernames" permission for mods
  • "Can View Own History" permission for profile block
  • "Can View Others History" permission for profile block
  • Per-usergroup username change delay (in days)
  • Per-usergroup profile history limit
  • Per-usergroup maximum total username changes

ModCP Change Log
  • Paginated results of all username changes
  • Displays date of change, old value and new value
  • Displays who changed the username
  • Choose date range to display, or view all changes

-------------------------------------------------------------------------------------------

This mod displays a copyright notification in the footer of all pages which includes:
  • 1 Link to DragonByte Technologies homepage
  • 1 Link to Product Description page of this modification

Download Now

File Type: zip [DBTech] Username Change v1.3.1.zip (20.7 KB, 109 views)

Screenshots

File Type: png history.png (7.2 KB, 0 views)
File Type: png username_change_always.png (4.2 KB, 0 views)
File Type: png username_change_limit.png (4.1 KB, 0 views)

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.
11 благодарности(ей) от:
Adem GEN?, Anbieter, Baja, Bounce, Code Geass, eTiKeT?, Gorgasm, johnarce, mokujin, Snowhog, teknisi

Comments
  #312  
Old 11-17-2012, 04:42 PM
Amaury Amaury is offline
 
Join Date: Nov 2011
Location: Ellensburg, WA
Posts: 1,075
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

An admin just checked. They're showing up there.

EDIT: Here's a screenshot he provided.

Reply With Quote
  #313  
Old 11-17-2012, 05:39 PM
DragonByte Tech's Avatar
DragonByte Tech DragonByte Tech is offline
 
Join Date: Feb 2010
Location: Scotland
Posts: 8,814
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hmm... Can you check the userchangelog database table and see if the fieldname column is anything other than "username" (all lowercase) for the entries that are missing?

Fillip
Reply With Quote
  #314  
Old 11-17-2012, 05:42 PM
Amaury Amaury is offline
 
Join Date: Nov 2011
Location: Ellensburg, WA
Posts: 1,075
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by DragonByte Tech View Post
Hmm... Can you check the userchangelog database table and see if the fieldname column is anything other than "username" (all lowercase) for the entries that are missing?


Fillip
Is that also done via the Admin CP?
Reply With Quote
  #315  
Old 11-17-2012, 05:52 PM
DragonByte Tech's Avatar
DragonByte Tech DragonByte Tech is offline
 
Join Date: Feb 2010
Location: Scotland
Posts: 8,814
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Via phpMyAdmin is the best bet, though it can be done via the AdminCP if the user has Execute SQL permissions from config.php


Fillip
Reply With Quote
  #316  
Old 11-17-2012, 05:56 PM
Amaury Amaury is offline
 
Join Date: Nov 2011
Location: Ellensburg, WA
Posts: 1,075
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by DragonByte Tech View Post
Via phpMyAdmin is the best bet, though it can be done via the AdminCP if the user has Execute SQL permissions from config.php


Fillip
SQL executions are possible.

What would the execution be?
Reply With Quote
  #317  
Old 11-17-2012, 06:01 PM
DragonByte Tech's Avatar
DragonByte Tech DragonByte Tech is offline
 
Join Date: Feb 2010
Location: Scotland
Posts: 8,814
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

If you're using a table prefix, you need to add it in front of the table name:

Code:
select fieldname from userchangelog where userid = x
Replacing X with the userid of a user that's got missing entries.


Fillip
Reply With Quote
  #318  
Old 11-17-2012, 06:08 PM
Amaury Amaury is offline
 
Join Date: Nov 2011
Location: Ellensburg, WA
Posts: 1,075
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by DragonByte Tech View Post
If you're using a table prefix, you need to add it in front of the table name:

Code:
select fieldname from userchangelog where userid = x
Replacing X with the userid of a user that's got missing entries.


Fillip
Just so I pass along the correct information, am I understanding this right?

Admin CP -> Maintenance -> Execute SQL Query

In the Manual Query box, enter that code and replace the X with the user's ID -- for example, mine is 18.
Reply With Quote
  #319  
Old 11-17-2012, 06:18 PM
DragonByte Tech's Avatar
DragonByte Tech DragonByte Tech is offline
 
Join Date: Feb 2010
Location: Scotland
Posts: 8,814
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

That's correct

Ideally it should return "username" in all lowercase over and over again for all the entries.


Fillip
Reply With Quote
  #320  
Old 11-17-2012, 06:23 PM
Amaury Amaury is offline
 
Join Date: Nov 2011
Location: Ellensburg, WA
Posts: 1,075
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by DragonByte Tech View Post
That's correct

Ideally it should return "username" in all lowercase over and over again for all the entries.


Fillip
In that case, just exit the Admin CP, go back to the forum index, and carry on with your day, right? =P

If not, though, what should be done?
Reply With Quote
  #321  
Old 11-17-2012, 06:33 PM
DragonByte Tech's Avatar
DragonByte Tech DragonByte Tech is offline
 
Join Date: Feb 2010
Location: Scotland
Posts: 8,814
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

If not then
Code:
update userchangelog set fieldname = 'username' where fieldname = 'x'
replacing X with whatever the result of the previous query was that is not "username" in all lowercase


Fillip
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:09 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.07720 seconds
  • Memory Usage 2,357KB
  • 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
  • (4)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
  • (2)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (11)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
  • (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
  • 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