Hello.
I have run into some problems with this mod. I basically just get shown a "security violation" message on screen. I am using phpbb 2.0.13
First problem being this.
The code i have to replace in my phpbb does not match the code found in the installation docs for the following
My Original File
define('DELETED', -1);
define('ANONYMOUS', -1);
define('USER', 0);
define('ADMIN', 1);
define('MOD', 2);
your file states to do this
Ändere/Change:
define('GUEST', -1);
define('USER_AWAITING', 1);
define('USER', 2);
define('ADMIN', 9);
zu/to:
define('GUEST', -1);
define('USER_AWAITING', -1);
define('USER', 0);
define('ADMIN', 1);
---------
The following is not in the code at all...
Ändere/Change:
define('ADMIN_SAFE_LOGIN', 1);
zu/to:
define('ADMIN_SAFE_LOGIN', 0);
Has there been a major change in phpbb 2.0.13?