XF 2.1 Moderators can't login

Recep Baltaş

Well-known member
When anyone with a moderator permission tries to login, they get memory error:

Code:
Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to allocate 20480 bytes) in /home/technopa/public_html/sosyal/src/XF/Db/AbstractStatement.php on line 104

Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to allocate 32768 bytes) in /home/technopa/public_html/sosyal/src/XF/Error.php on line 1
 
Same exact issue:


There was over 100.000 assigned reports caused by this add-on: https://xenforo.com/community/resources/report-improvements-by-xon.6905/

You need to bulk resolve those reports in order to solve the problem.
  1. Backup your database.
  2. Run this query:
    Code:
    UPDATE xf_report SET report_state = "resolved" WHERE report_state = "assigned" OR report_state = "open";
Or use the auto-reject/resolve sufficiently old reports feature if you haven't uninstalled the add-on :P
 
Last edited:
Top Bottom