ok, I tried this, works like a charm:
- on DB server (in my case using phpMyAdmin), check the version via this query
SELECT * FROM option where option_name='version_tagmanager'
- Update the
option_value
to4.11.0
. I used this command:
UPDATEoption
SEToption_value
= ‘4.11.0’ WHEREoption
.option_value
= ‘4.12.2’ ANDoption
.option_name
= ‘version_TagManager’ LIMIT 1;
(messy here with the pre-format and the SQL syntax… ) - in matomo command line (ssh), run
./console core:update
and confirm with ‘y’
for me, it is solved. thx @heurteph-ei