0

I developed an modul for contao 3.0. In my config.php file i wrote this lines:

$GLOBALS['BE_MOD']['content']['modultest'] = array(
'tables' => array('tl_modultest'),
'icon'       => 'system/modules/modultest/time_go.png',

);

Now i have the problem, that i want to deinstall the modul. But the menupoint in the backend is still there, even if i deleted the lines above.

Can anybody help me to deactivate or delete deactivated or deinstalled modules from the backend menu ?

zoom23
  • 694
  • 2
  • 10
  • 23

1 Answers1

0

Your problem is probably that you did not rebuild the internal cache introduced in Contao 3.0. To do that, go to Maintenance, then under the section Purge select the checkbox labeled Purge the internal cache and click Purge data.

Simon Josef Kok
  • 745
  • 1
  • 8
  • 22