Skip to content

piwik update to 2.3 results in error message >>Failed to load HTML file: Please check your server configuration. You may want to whitelist "*.html" files from the "plugins" directory. The HTTP status

Piwik got an update to version 2.3.0. The update runs smooth as general but one Error appears after the update.

Failed to load HTML file: Please check your server configuration. You may want to whitelist "*.html" files from the "plugins" directory. The HTTP status code is 403 for URL "plugins/ZenMode/angularjs/quick-access/quick-access.html"

It is a solvable one :-). Login to your webroot for your piwik installation and list the content of your "plugins" directory. As you will notice, the rights for the directory "ZenMode" (750) differs from the rest (755). Adapt the rights and the error is gone.
chmod -R 755 ZenMode

"ERROR 1148 (42000) at line 1: The used command is not allowed with this MySQL version" after upgrade percona version 5.5.35-33.0 to 5.5.36-34.2

So the setup is the following, debian squeeze and percona version 5.5.35-33.0.
I had done an upgrade from 5.5.35-33.0 to 5.5.36-34.2-648.squeeze and the following error created an red monitor on my jenkins.

ERROR 1148 (42000) at line 1: The used command is not allowed with this MySQL version

After searching on the web, i found this entry on the web.
sudo vim /etc/mysql/my.cnf
# add follwing entry to fitting locations
[mysql]
local-infile=1
[mysqld]
local-infile=1 # /etc/init.d/mysql restart

Get your current used version?
# mysql --user=root --password=
SHOW VARIABLES LIKE "%version%";

Check if changes are working?
# mysql --user=root --password=
SHOW VARIABLES LIKE '%local%';

arch linux, zfsonlinx with pacman update producing error >>error: demz-repo-core: signature from "graysky (used to sign repo-ck packages) <graysky@archlinux.us>" is unknown trust<<

You tried to do an update of your system and got some error like below?

pacman -Syyu
error: demz-repo-core: signature from "graysky (used to sign repo-ck packages) " is unknown trust
:: Synchronizing package databases...
[...]
error: demz-repo-core: signature from "graysky (used to sign repo-ck packages) " is unknown trust
error: failed to update demz-repo-core (invalid or corrupted database (PGP signature))
[...]
error: database 'demz-repo-core' is not valid (invalid or corrupted database (PGP signature))


You can read the comments if you want to know why.
If you are easy enough and believe me (well thanks, but you shouldn't ;-)), execute the following commands.
pacman-key -r 5EE46C4C
pacman-key --lsign-key 5EE46C4C
echo i like artodeto
pacman -Syyu


And there you go.