The plugin Action is not enabled

In my case, whenever try Action.getPageUrls, it complains…
I find it activated already :blush:

{“result”:“error”,“message”:“The plugin Action is not enabled. You can activate the plugin on Settings > Plugins page in Piwik.”}

Hi,

Can you give a bit more details? You are trying to access the API?

You can also check if the CLI also shows the plugin as activated:
sudo -u www-data ./console plugin:list
and try to enable it there
sudo -u www-data ./console plugin:activate Actions

Thanks for interest to mine :slight_smile

  1. here’s my result for console

ubuntu@ubuntu-OptiPlex-790:/var/www/html$ ./console plugin:list | grep Action
| Actions | Core | Activated |

Other than Actions API , it works fine.

  1. Hers’s my Action API request :
    http://x.x.x.x:9400/index.php?module=API&method=Action.getPageUrls&idSite=1&period=dar&date=2012-11-20&format=json

  2. My system check OK (PHP, NGINX, MYSQL)
    PHP version >= 5.5.9 7.0.22-0ubuntu0.16.04.1

Solved :slight_smile:
I modified API request slightly … Action => Actions

http://x.x.x.x:9400/index.php?module=API&method=Actions.getPageUrls&idSite=1&period=year&date=2017-08-20

it looks working…

Thanks for your help