Anyone know how to make the server under maintenance, I mean like, only developers can log on, for everyone else it says its under maintenance.
This would be really handy if anyone knows.
Printable View
Anyone know how to make the server under maintenance, I mean like, only developers can log on, for everyone else it says its under maintenance.
This would be really handy if anyone knows.
OPTool->Account Editor->Auth List.
Oh thanks, will take A look when I wake up ^^
Or you edit dbo.tUserAuth in Account database.
Execute following SQL query if your users have Auth ID 1:
Disable login for users
Enable login four usersCode:UPDATE Account.dbo.tUserAuth SET bIsLoginAble=0 WHERE nAuthID=1;
Code:UPDATE Account.dbo.tUserAuth SET bIsLoginAble=1 WHERE nAuthID=1;