0

I have a page with a file link content element. When I add a new (pdf) file or override an existing, the index data of this page is not updating. I have to delete the index data manually at the indexing module to get it work. I could live with that, if the editor of the webpage could use this module too. But I cannot unlock this module für my editors, because it's missing at the module list.

Indexing Indexing module not listed

Ralf
  • 836
  • 1
  • 9
  • 32

1 Answers1

1

EXT:indexed_search backend module is per default registered with admin access only.

You can change the current configuration for registered module in your custom site package extension in ext_tables.php for indexed_search module access for editors with following line:

$GLOBALS['TBE_MODULES']['_configuration']['web_IndexedSearchIsearch']['access'] = 'group,user';

Then you can unlock this module für your editors.

jokumer
  • 2,249
  • 11
  • 22
  • thanks, tried to add this to my ext_localconf.php, but the module is still missing. Is there something more to do, maybe replace something in your example or check some option at the usergroup? – Ralf Jun 14 '19 at 11:58
  • 1
    I meant ext_tables.php - not ext_localconf.php. I did try this for first time, and it worked. Therefor i posted here :) – jokumer Jun 14 '19 at 12:53
  • oops, I overread this, but I tried this at ext_tables.php too without success :( – Ralf Jun 14 '19 at 12:58
  • ah okay, now it appears at the user group configuration, thanks a lot :) – Ralf Jun 14 '19 at 13:00
  • Ya, changes in ext_tables.php and ext_localconf.php requires cache being cleared. Good luck – jokumer Jun 14 '19 at 13:42