phpbbmodders / phpbb-3.1-ext-adduser

A port of the phpBB 3.0.x version of the Add User Mod
GNU General Public License v2.0
11 stars 10 forks source link

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

Closed madskatingcow closed 8 years ago

madskatingcow commented 9 years ago

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()

madskatingcow commented 9 years ago

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'