The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
Comments |
#47
|
||||
|
||||
Two things I'm really wondering hard about, and that nobody else in this thread seems to care about at all:
-If I log in to a users account, and that user is currently logged on.. what happens? -If I post on behalft of another user, can other admins see that I was the "real" poster or not? If not, implement it! (it's necessary that noone ever can be totally anonymous, in situations where someone might get a split nerv and post stuff on behalft of someone else, as a result of a grudge against a sertain user or whatever) Fix this, and I'll install it in a jiffy! |
#48
|
|||
|
|||
1) nothing really happens you are still both logged in.
2) No there is no way to do that, the only way to check would be the check the IP address which is a pretty sure indicator, and have faith in your admins. If you think you admins WOULD do something like that, then they shouldnt be admins for on and shouldnt have access to this tool. |
#49
|
||||
|
||||
Quote:
Quote:
EDIT: So i installed the hack even though my concerns aren't fixed, only, when setting admins.. i get to the SMILEY guide o_0 You could just as easy have linked to the misc.php page only.. =\ Could it be that "Cyb - Advanced Forum Rules" and "Cyb - Check If Already Posted" have like 90% same name on hooks? (same name of hooks is a BIG no-no of what I've allways heard from other developers) |
#50
|
|||
|
|||
You get the smiley guide if you are NOT a superadmin.
|
#51
|
||||
|
||||
Quote:
Code:
// ****** 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, 2'; |
#52
|
|||
|
|||
Ok then just out of interest by any chance is your PRIMARY usergroup NOT Administrators.
|
#53
|
||||
|
||||
Quote:
Oh my: Where do I change that hiddeous GREEN color on the "Forum rules" link in the navbar? o_0 EDIT: is it supposed to be: $config['SpecialUsers']['superadministrators'] = '1, 2'; or $config['SpecialUsers']['superadministrators'] = '1', '2'; ? EDIT2: - Back-To-Admin does not work - Get's 404page (the other admin at my forum with userID #1 can use the system) - Latest activity on the userprofile shows if admins log in to the account, in that other hack (on second hand, it might have been the 3.5.4 version of that hack), it doesn't (read it in the posts of that hacks thread).. would be cool if fixed! EDIT3: The other admin at the forum with UserID #1 wrote me down in the "Set Admins" page, I can now see the link to "log in as user" in the userprofiles, though, I just get a strange vbulletin-message saying that the user is not registred and therefor there is no profile to view! could this be more agitating? |
#54
|
|||
|
|||
kk:
'1, 2'; Is correct so that is fine. 2) i am not sure what your saying. 3) no idea for that The hack works fine for me, as you read i modded it so it would work for admins whose primary usergroup was not administrators but that is it. I think CYB should answer these questions. |
#55
|
||||
|
||||
Quote:
And by the way, "TIP" when doing stuff like adding a link to the menu for everyone to see, either put it in a template or include the colorchange of that link in the hack options. Especially when choosing a color like BoogerGreen o_0 EDIT1: OK I REALLY need to understand this hack! "cybfrules_forceuser" is located in the User Profile page, though it is not a bit of code included in the memberinfo template. Wich demands me knowing HOW and WHAT is saying where that Link is going to show up (in the user profile).. I need to move the link to another spot in the Users Profiles as it just takes up too much space lying on the same row as a bunch of other links! -_- (see picture) |
#56
|
||||
|
||||
Now seriously, when needed support, it is most often needed as right away as possible.
And In this case, I couldn't care less if you've written that you suck at support, you really made it your responsibility when you posted a hack with this greatly hidden parts of code that _some people_ can't uderstand where to reach, and that _need_ to reach it! Summing it all up in one post as it seems I've got all the time in the world:
|
#57
|
|||
|
|||
lol... this hack is pure evil...but I love it
|
#58
|
||||
|
||||
Ok, I feel stupid. Edited a bogus config.php file -_-
Still one problem remains: Logging back into the admin account again. Following error follows: Code:
Database error in vBulletin 3.6.2: Invalid SQL: SELECT userid, username, password, salt, styleid FROM user WHERE userid = LIMIT 1; MySQL Error : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'LIMIT 1' at line 4 Error Number : 1064 Date : Tuesday, October 24th 2006 @ 04:09:25 PM Script : http://hlforum.org/index.php?do=backtoadmin Referrer : http://www.hlforum.org/index.php IP Address : 81.235.18.67 Username : Luggruff Classname : vb_database |
#59
|
|||
|
|||
kk that error message is most likely caused by the cookie not being set.
as you can see from the statement: SELECT userid, username, password, salt, styleid FROM user WHERE userid = no userid is specified which is causing the error. Make sure you have cookies enabled and try again. |
#60
|
|||
|
|||
by making a slight alteration to the code i have worked out how to stop it altering when the user last logged in:
I edited Cyb - Login To Other User Account - LTU: this section: Code:
vbsetcookie('userid', $cyb_target_user['userid']); vbsetcookie('password', md5($cyb_target_user['password'] . COOKIE_SALT)); exec_header_redirect($vbulletin->options['forumhome'] . '.php'); Code:
vbsetcookie('userid', $cyb_target_user['userid']); vbsetcookie('password', md5($cyb_target_user['password'] . COOKIE_SALT)); unset($vbulletin->db->shutdownqueries['lastvisit']); exec_header_redirect($vbulletin->options['forumhome'] . '.php'); But like the other one they still appear logged in , in the who is online section. |
#61
|
||||
|
||||
Quote:
Quote:
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|