Changes between Version 8 and Version 9 of PiwikServer


Ignore:
Timestamp:
06/20/11 13:21:26 (5 years ago)
Author:
chris
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • PiwikServer

    v8 v9  
    44This page is to document the [http://piwik.org/ Piwik] server that is to be installed on the DevelopmentServer. 
    55 
    6 == Apache Config == 
    76 
    87 
     
    1817}}} 
    1918 
     19Then set up apache, see /etc/apache2/sites-available/piwik.transitionnetwork.org and run the web installer and: 
     20 
     21{{{ 
     22cd /web/piwik.transitionnetwork.org/piwik/ 
     23chown -R www-data:www-data tmp/ 
     24chown -R www-data:www-data config/ 
     25}}} 
     26 
     27Then a MySQL user and database was added using phpMyAdmin which ran the following SQL: 
     28 
     29{{{ 
     30CREATE USER 'piwik'@'localhost' IDENTIFIED BY '********'; 
     31GRANT USAGE ON * . * TO 'piwik'@'localhost' IDENTIFIED BY '********' WITH MAX_QUERIES_PER_HOUR 0 MAX_CONNECTIONS_PER_HOUR 0 MAX_UPDATES_PER_HOUR 0 MAX_USER_CONNECTIONS 0 ; 
     32CREATE DATABASE IF NOT EXISTS `piwik` ; 
     33GRANT ALL PRIVILEGES ON `piwik` . * TO 'piwik'@'localhost'; 
     34}}} 
     35 
     36 
     37 
    2038== Requirements == 
    2139