Piwik changes the name of the event action

Is there an easy way to change the name of an event action by site id in piwik? Or should everything be done manually in the database? Or pass one action name to another?

There is a way to delete everything by site ID

DELETE FROM piwik_log_visit WHERE idsite = X; DELETE FROM piwik_log_link_visit_action WHERE idsite = X; DELETE FROM piwik_log_conversion WHERE idsite = X; DELETE FROM piwik_log_conversion_item WHERE idsite = X; 
+5
source share
1 answer

As far as I know, this is not possible in the latest version of Piwik. This must be done manually by using phpmyadmin to connect to your database.

sorry brother

0
source

Source: https://habr.com/ru/post/1265959/


All Articles