Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 1.2 KB

File metadata and controls

21 lines (14 loc) · 1.2 KB

TagManager core plugin activation

Turns out that the TagManager core plugin needs some extra care and attention if it wasn't initially enabled when first starting with Matomo. Attempting to activate it the usual way causes Matomo to break.

This GitHub Issue documents that problem and provides a simple (but strange) solution:

For our container-based deploy, this means

  1. connect to the running container
  2. ensure that a simple text editor is available in the container
  3. deactivate the TagManager plugin: ./console plugin:deactivate TagManager
  4. edit the config/config.ini.php file to remove the PluginsInstalled[] = "TagManager" line
  5. run the core:update command: ./console core:update (nothing should happen)
  6. activate the TagManager plugin: ./console plugin:activate TagManager
  7. run the core:update command again: ./console core:update (nothing should happen)

The appropriate updates to the database will now be in place.

At this point, proceed with updates to this repository by updating the config.ini.php file to match the file from the container.