You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
4
+
5
+
This GitHub Issue documents that problem and provides a simple (but strange) solution:
6
+
7
+
*[Issue: Can't install TagManager plugin because table _tagmanager_container is missing](https://github.com/matomo-org/matomo/issues/19474)
8
+
9
+
For our container-based deploy, this means
10
+
11
+
1. connect to the running container
12
+
1. ensure that a simple text editor is available in the container
13
+
1. deactivate the TagManager plugin: `./console plugin:deactivate TagManager`
14
+
1. edit the config/config.ini.php file to remove the `PluginsInstalled[] = "TagManager"` line
15
+
1. run the `core:update` command: `./console core:update` (nothing should happen)
16
+
1. activate the TagManager plugin: `./console plugin:activate TagManager`
17
+
1. run the `core:update` command again: `./console core:update` (nothing should happen)
18
+
19
+
The appropriate updates to the database will now be in place.
20
+
21
+
At this point, proceed with updates to this repository by updating the `config.ini.php` file to match the file from the container.
0 commit comments