phpbbmodders/phpbb-3.1-ext-adduser

Cannot find module ./../includes/acp/acp_add_user.php

madskatingcow opened this issue · 1 comments

Using v1.0.0 in phpbb 3.1.1, after copying the files /ext/rmcgirr83/adduser and enabling the extension (admin panel -> tab customise -> Manage extensions -> enable Add User), I always get following error when clicking 'ADD_USER' in 'Users and group' :

General Error
Cannot find module ./../includes/acp/acp_add_user.php

BACKTRACE

FILE: (not given by php)
LINE: (not given by php)
CALL: msg_handler()

FILE: [ROOT]/includes/functions_module.php
LINE: 571
CALL: trigger_error()

Note : I have upgraded my pervious phpBB installation from 3.0.11 to 3.1.1 - I first uninstalled the old 'add user' mod, then performed the upgrade.

This

SELECT module_id, module_enabled, module_basename, module_langname FROM phpbb_modules WHERE module_langname IN ('ADD_USER', 'ACP_ADD_USER')

Results in 2 rows :

203 1 acp_add_user ADD_USER
217 1 \rmcgirr83\adduser\acp\adduser_module ACP_ADD_USER

And this did the trick

DELETE FROM phpbb_modules WHERE module_langname = 'ADD_USER'