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
VSa - Login To User Account Details »»
VSa - Login To User Account
Version: 3.0.6, by Valter Valter is offline
Developer Last Online: Nov 2023 Show Printable Version Email this Page

Category: Administrative and Maintenance Tools - Version: 4.x.x Rating:
Released: 01-16-2010 Last Update: 05-14-2011 Installs: 1406
DB Changes Uses Plugins Auto-Templates
 
No support by the author.

Info:
This will allow forum administrators to simply login to user accounts (to test forum functions, permissions etc...). View screenshots.

Installation:
-Import XML file (as product): AdminCP > Plugin System > Manage Products > [Add/Import Product]

To set options:
Go to: AdminCP > vBulletin Options > VSa - Login To User Account

Versions:
v1.0 - May 20. 2006.
-Initial Release
v2.3 - Apr 11. 2009.
-Latest 3.x version
v3.0 - Jan 17. 2010.
-Updated for vBulletin 4.x
-Mod prefix (Cyb) changed to 'VSa'
v3.0.1 - Jan 17. 2010.
-Fixed bug with "fatal error" in ACP
-'Login As User' in memberinfo moved above [join date]
v3.0.2 - Jan 19. 2010.
-Fixed bug (permissions)
-Minor bugs fixed
v3.0.3 - Jan 27. 2010.
-Fixed bug: Users not able to view other's profile pics in memberinfo
-Fixed bug: Guests able to view 'Login As' link in some cases
v3.0.4 - Feb 26. 2010.
-Fixed: Error on import
-Fixed: Admin must click twice to Log-in to user account
-Fixed: Admin must log-out to go back if target user is banned
-Fixed: 'Set Admins' page style
-Fixed: Some minor bugs
-New: Set Admins able to read PMs
v3.0.5 - Feb 26. 2010.
-Fixed: Bug where user profiles are not accessible on some configs
v3.0.6 - May 16. 2011.
-Improved admin detection
-Minor bugs fixed

Download Now

File Type: zip VSa - Login To User Account v3.0.6.zip (5.4 KB, 5144 views)

Screenshots

File Type: jpg login_mi.jpg (48.5 KB, 0 views)
File Type: jpg login_acp.jpg (165.9 KB, 0 views)
File Type: jpg alert.jpg (69.5 KB, 0 views)
File Type: jpg nopms.jpg (31.8 KB, 0 views)
File Type: jpg setadmins.jpg (89.4 KB, 0 views)
File Type: jpg acp.jpg (128.0 KB, 0 views)

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.
10 благодарности(ей) от:
BANDiT600, CELIX, Gamlet_, iiioroh, josner, LOGECT, pvelkov, RichieBoy67, spillage, Toorak Times

Comments
  #152  
Old 05-08-2010, 03:44 PM
djbaxter djbaxter is offline
 
Join Date: Aug 2006
Location: Ottawa, Canada
Posts: 2,601
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Valter View Post
Editing the vBulletin Configuration File:

http://www.vbulletin.com/docs/html/editconfig
Could have saved myself a lot of typing.
Reply With Quote
  #153  
Old 05-08-2010, 04:31 PM
steven s's Avatar
steven s steven s is offline
 
Join Date: Aug 2004
Location: Greenville, SC
Posts: 572
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Neptun View Post
what is the different to this hack ?!

<snip>

https://vborg.vbsupport.ru/showthread.php?t=228077
I read through the entire thread looking for a reply.
What is the difference?
Reply With Quote
  #154  
Old 05-08-2010, 04:38 PM
legacy123 legacy123 is offline
 
Join Date: Feb 2010
Posts: 72
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

wow... that one was made earlier too
Reply With Quote
  #155  
Old 05-08-2010, 10:32 PM
Bansheebob Bansheebob is offline
 
Join Date: Apr 2009
Posts: 93
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by djbaxter View Post
Ok. Sorry - your questions confused me.

1. Go into your Admin CP and search for your user name.

2. Once you're on your user page, you should see at the very top:

Code:
User: {your username} (id: X)
where X = your user number. (For many people, this will be 1 but if you added yourself as another admin it will be different.)

Now you need to edit /includes/config.php for permissions of user number.

FTP method (recommended):

1. download /includes/config.php from your forum to your hard drive using Filezilla or some other FTP program, to make sure you are using the working version. Save a second copy of this as a backup.

2. using a text editor (e.g., notepad or better Crimson Editor, open config.php for editing

3. find around line 106:

PHP Code:
    //    ****** USERS WITH ADMIN LOG VIEWING PERMISSIONS ******
    //    The users specified here will be allowed to view the admin log in the control panel.
    //    Users must be specified by *ID number* here. To obtain a user's ID number,
    //    view their profile via the control panel. If this is a new installation, leave
    //    the first user created will have a user ID of 1. Seperate each userid with a comma.
$config['SpecialUsers']['canviewadminlog'] = '1';

    
//    ****** USERS WITH ADMIN LOG PRUNING PERMISSIONS ******
    //    The users specified here will be allowed to remove ("prune") entries from the admin
    //    log. See the above entry for more information on the format.
$config['SpecialUsers']['canpruneadminlog'] = '1';

    
//    ****** USERS WITH QUERY RUNNING PERMISSIONS ******
    //    The users specified here will be allowed to run queries from the control panel.
    //    See the above entries for more information on the format.
    //    Please note that the ability to run queries is quite powerful. You may wish
    //    to remove all user IDs from this list for security reasons.
$config['SpecialUsers']['canrunqueries'] = '1';

    
//    ****** UNDELETABLE / UNALTERABLE USERS ******
    //    The users specified here will not be deletable or alterable from the control panel by any users.
    //    To specify more than one user, separate userids with commas.
$config['SpecialUsers']['undeletableusers'] = '1';

    
//    ****** SUPER ADMINISTRATORS ******
    //    The users specified below will have permission to access the administrator permissions
    //    page, which controls the permissions of other administrators
$config['SpecialUsers']['superadministrators'] = '1'
Now, for each instance of "$config['SpecialUsers']" above, make sure that your user ID # is listed. If it is something other than 1, then add it - e.g., change 1 to 1,X where X is your user number.

Next, make sure that those $config['SpecialUsers'] lines are not commented out. If any of them have two slashes in front of them, remove the two slashes.

If you have made any changes to config.php, save as PLAIN TEXT (e.g., if you arer using notepad as the editor, save as ANSI or ASCII, not unicode). Then upload the edited version to inlcude/config.php on your server.

cPanel method:

Use the file manager on your server to navigate to and edit /includes/config.php as above. Remember to save when finished.

I appreciate that info, but that is certainly way beyond my expertise.
Reply With Quote
  #156  
Old 05-08-2010, 10:45 PM
djbaxter djbaxter is offline
 
Join Date: Aug 2006
Location: Ottawa, Canada
Posts: 2,601
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Can you at least check your member number in the Admin CP?
Reply With Quote
  #157  
Old 05-09-2010, 10:16 PM
Bansheebob Bansheebob is offline
 
Join Date: Apr 2009
Posts: 93
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

id # 3
Reply With Quote
  #158  
Old 05-13-2010, 10:10 PM
steeler7 steeler7 is offline
 
Join Date: Oct 2009
Posts: 141
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

This might seem minor but the "Link" text when you are in another members profile (left hand side bar) is the same color as my background there. I just need to be able to change that to something that shows up. any idea where I can do that? I used Firebug to try and find it but no luck.

Thanks
Reply With Quote
  #159  
Old 05-14-2010, 08:14 AM
teenage.vn teenage.vn is offline
 
Join Date: Mar 2010
Posts: 14
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I have found something which is strange, dun know if it happens to all, but at least im facing with this problem:

When I choose to active this product, the Current Activity information in the profile of a member will vanish .... Can you check it out please?

Thanks for this great mod
Reply With Quote
  #160  
Old 05-14-2010, 10:03 PM
steeler7 steeler7 is offline
 
Join Date: Oct 2009
Posts: 141
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by teenage.vn View Post
I have found something which is strange, dun know if it happens to all, but at least im facing with this problem:

When I choose to active this product, the Current Activity information in the profile of a member will vanish .... Can you check it out please?

Thanks for this great mod
Just came on to mention this. Same problem for me. I had to install for the time being (but I did manage to fix my issue to posts up).

Looking forward to the fix for this
Reply With Quote
  #161  
Old 05-20-2010, 04:28 PM
karlm's Avatar
karlm karlm is offline
 
Join Date: Jul 2006
Location: England
Posts: 447
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Working well with 4.0.3pl1 and vbseo nice job!
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 01:56 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.06381 seconds
  • Memory Usage 2,371KB
  • Queries Executed 28 (?)
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
  • (1)bbcode_php
  • (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
  • (10)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
  • (7)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_postinfo_query
  • fetch_postinfo
  • 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