Opened 2 years ago

Closed 2 years ago

#80 closed defect (fixed)

Piwik 2.16.2

Reported by: chris Owned by: chris
Priority: major Milestone: Maintenance
Component: piwik Version:
Keywords: Cc:
Estimated Number of Hours: 0 Add Hours to Ticket: 0
Billable?: yes Total Hours: 0.45

Description

We are proud to announce Piwik 2.16.2: a new minor release of Piwik!

We have identified and fixed several XSS security issues in this release.

This release is rated critical.

https://piwik.org/changelog/piwik-2-16-2/

Change History (1)

comment:1 Changed 2 years ago by chris

  • Add Hours to Ticket changed from 0 to 0.45
  • Resolution set to fixed
  • Status changed from new to closed
  • Total Hours set to 0.45

Following wiki:Piwik#Upgrades

sudo -i
cd /var/www
vi piwik/config/config.ini.php
export PIWIK="2.16.2"
wget "https://builds.piwik.org/piwik-$PIWIK.tar.gz"
# the above step took 20 mins, no idea why the download was so slow, on another server it took seconds
wget "https://builds.piwik.org/piwik-$PIWIK.tar.gz.asc"
gpg --verify piwik-$PIWIK.tar.gz.asc
cp piwik/config/config.ini.php .
tar -zxvf piwik-$PIWIK.tar.gz
cp config.ini.php piwik/config/
chown -R piwik:piwik /var/www/piwik/
php /var/www/piwik/console core:update
vi piwik/config/config.ini.php

Note the config.ini.php was updated by Piwik while I was editing it:

diff config.ini.php piwik/config/config.ini.php
16c16
< record_statistics = 0
---
> record_statistics = 1
77c77,78
< PluginsInstalled[] = "PiwikPro"
---
> PluginsInstalled[] = "ProfessionalServices"
> PluginsInstalled[] = "UserId"

The web interface was checked and the ProfessionalServices plugin was deactivated.

Note: See TracTickets for help on using tickets.