open the ACCOUT database, and on cabal_auth_table table right click, select "all task" -> "manage triggers" paste the:
Quote:
CREATE TRIGGER [fixlogin] ON [dbo].[cabal_auth_table]
FOR INSERT, UPDATE, DELETE
AS
begin
update cabal_auth_table set login = 0
end
|
After you do this it will only work if you give the table permissions for public