MyBB Community Forums

Full Version: Viewing No Permissions -> message
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is there a way in MyBB so that an adminstrator can see, like it is possible with other Forum Softwares, that when I see a user currently online in my forum (registered or non-registered) and tries to access a page that he/she doesnt have permission to, what that page actually is that he/she is trying to access ?

Because the fact that it says "Viewing no Permissions page" isnt really helpful in determining what the user is trying. Sad

Wolfseye
There isn't any plugin or setting that allows that. I think someone can make you a plugin on this but no one would make such a hard plugin for free.
Yes ofcourse. 100% WITH kamz89
In inc/functions_online.php:

$location_name = $lang->viewing_noperms;

Change to:

$location_name = $lang->viewing_noperms.": {$user_activity['location']}";

But it'll be visible for everyone, not just for admin.
(2012-10-02, 11:03 AM)frostschutz Wrote: [ -> ]In inc/functions_online.php:

$location_name = $lang->viewing_noperms;

Change to:

$location_name = $lang->viewing_noperms.": {$user_activity['location']}";

But it'll be visible for everyone, not just for admin.

Though it is never a good idea to hack core, so a plugin would be best.
You could use the patches plugin, that way core files are not changed, just "patched"
You can do this as a plugin, but I'm too lazy to do it for you. Toungue