XF 2.1 Error message, Forum dead, what to do?

Robert9

Well-known member
I have installed a new addon; after some changes, i cant view the forum anymore.

What can i do now:

I have tried:
  • delete the extensions in xf_class_extension
  • rename the dir of the add-on

What do i miss?
 
add this in your root/Public/Src/Config.php

edit config.php file

$config['enableListeners'] = false;

if its already there change it to false, you will able to access admin panel, then remove that addon.

If you have shell access, then do change directory to public folder and run below command

to disable particular addon
Code:
php cmd.php xf-addon:disable Addon/Name

to disable all addon

Code:
php cmd.php xf-addon:disable
 
Top Bottom