Ruccola
(1Seegrube%#)
January 20, 2025, 6:59am
1
Hello everyone,
I’m new to Matomo and would like to know how to track a button instead.
I have a Wordpress page under Elementor and a simple email button (mailto: 123@123.at?)
I tried it with the Tag Manager and a container but when creating the container I get the following error message:
WP DB Error: [1054] Unknown column ‘activelySyncGtmDataLayer’ in ‘field list’ SQL: INSERT INTO wp_matomo_tagmanager_container (idsite,idcontainer,context,name,description,ignoreGtmDataLayer,activelySyncGtmDataLayer,isTagFireLimitAllowedInPreviewMode,status,created_date,updated_date) VALUES(?,?,?,?,?,?,?,?,?,?,?,?)
I would be very grateful for any help!
metrprime
(Easton)
January 28, 2025, 6:37am
2
I think this is similar issue to this:
We ran into the same problem. The root cause was that TagManager wasn’t activated before (and the tables didn’t exist), but with activating not the newest version was applied.
I lowered the version number for TagManager in the DB
update matomo_option set option_value='4.9.1' where option_name='version_TagManager';
and was then able to perform ./console core:update which modified another three tables.
Solution was at the bottom, try maybe it works:
We ran into the same problem. The root cause was that TagManager wasn’t activated before (and the tables didn’t exist), but with activating not the newest version was applied.
I lowered the version number for TagManager in the DB
update matomo_option set option_value='4.9.1' where option_name='version_TagManager';
and was then able to perform ./console core:update which modified another three tables.
It does seem that the TagManager did not create the tables.
utrautma
(Udo Trautmann)
January 21, 2026, 5:05pm
3
The problem happens too with the column isTagFireLimitAllowedInPreviewMode
I’ve run following SQL:
ALTER TABLE wp_matomo_tagmanager_container ADD isTagFireLimitAllowedInPreviewMode tinyint DEFAULT 0 NOT NULL;
ALTER TABLE wp_matomo_tagmanager_container ADD activelySyncGtmDataLayer tinyint DEFAULT 0 NOT NULL;
After that it work (choose the correct Table-prefix “wp_” (in my case))