The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#11
|
||||
|
||||
Look in the config.php file again, scroll down to or search for... USERS WITH ADMIN LOG VIEWING PERMISSIONS....
Make sure this section in your config.php looks like this...Remove all user id's but yours. Your user id is 1 I would assume, if not change 1 to your userid. Code:
// ****** 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'] = ''; // ****** 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'; SAVE...... Once that is complete, you should be able to remove the other "admins" |
Благодарность от: | ||
Lynne |
#12
|
||||
|
||||
How did it go johnmat, where you able to fix your issue?
|
#13
|
|||
|
|||
If someone is hacking your database you might try adding a trigger to your user table that can send you an email anytime a record is added for a specific user group
Here's a sample of a trigger checking for a column value on an insert operation. CREATE TRIGGER upd_check BEFORE UPDATE ON user -> FOR EACH ROW -> BEGIN -> IF NEW.usergroupid = 6 THEN -> send yourself an email -> END IF; -> END;// And here's a link to how to use a trigger to send yourself an email: http://stackoverflow.com/questions/3...from-mysql-5-1 Now no matter how they access your database (directly , ftp or through vbulletin) you will be alerted immediately It may be easier to have the trigger write the info to a text file then set up a cron job to actually send the email. I haven't tested this yet but will so shortly |
Благодарность от: | ||
blind-eddie |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|