You are here

README.txt in Piwik Web Analytics 6

Same filename and directory in other branches
  1. 8 README.txt
  2. 5 README.txt
  3. 6.2 README.txt
  4. 7.2 README.txt
  5. 7 README.txt
Module: Piwik - Web analytics
Author: Alexander Hass <www.hass.de>


Description
===========
Adds the Piwik tracking system to your website.

Requirements
============

* Piwik installation
* Piwik website account


Installation
============
* Copy the 'piwik' module directory in to your Drupal
sites/all/modules directory as usual.


Usage
=====
In the settings page enter your Piwik website ID.

You will also need to define what user roles should be tracked.
Simply tick the roles you would like to monitor.

All pages will now have the required JavaScript added to the
HTML footer can confirm this by viewing the page source from
your browser.


Advanced Settings
=================
You can include additional JavaScript snippets in the advanced
textarea. These can be found on various blog posts, or on the
official Piwik pages. Support is not provided for any customisations
you include.

To speed up page loading you may also cache the piwik.js
file locally. You need to make sure the site file system is in public
download mode.


Known issues
============
Drupal requirements (http://drupal.org/requirements) tell you to configure 
PHP with "session.save_handler = user", but your Piwik installation will
not work with this configuration and gives you a server error 500.

1. You are able to workaround with the PHP default in your php.ini:

   [Session]
   session.save_handler = files

2. With Apache you may overwrite the PHP setting for the Piwik directory only.
   If Piwik is installed in /piwik you are able to create a .htaccess file in
   this directory with the below code:

   # PHP 4, Apache 1.
   <IfModule mod_php4.c>
     php_value session.save_handler files
   </IfModule>

   # PHP 4, Apache 2.
   <IfModule sapi_apache2.c>
     php_value session.save_handler files
   </IfModule>

   # PHP 5, Apache 1 and 2.
   <IfModule mod_php5.c>
     php_value session.save_handler files
   </IfModule>

File

README.txt
View source
  1. Module: Piwik - Web analytics
  2. Author: Alexander Hass
  3. Description
  4. ===========
  5. Adds the Piwik tracking system to your website.
  6. Requirements
  7. ============
  8. * Piwik installation
  9. * Piwik website account
  10. Installation
  11. ============
  12. * Copy the 'piwik' module directory in to your Drupal
  13. sites/all/modules directory as usual.
  14. Usage
  15. =====
  16. In the settings page enter your Piwik website ID.
  17. You will also need to define what user roles should be tracked.
  18. Simply tick the roles you would like to monitor.
  19. All pages will now have the required JavaScript added to the
  20. HTML footer can confirm this by viewing the page source from
  21. your browser.
  22. Advanced Settings
  23. =================
  24. You can include additional JavaScript snippets in the advanced
  25. textarea. These can be found on various blog posts, or on the
  26. official Piwik pages. Support is not provided for any customisations
  27. you include.
  28. To speed up page loading you may also cache the piwik.js
  29. file locally. You need to make sure the site file system is in public
  30. download mode.
  31. Known issues
  32. ============
  33. Drupal requirements (http://drupal.org/requirements) tell you to configure
  34. PHP with "session.save_handler = user", but your Piwik installation will
  35. not work with this configuration and gives you a server error 500.
  36. 1. You are able to workaround with the PHP default in your php.ini:
  37. [Session]
  38. session.save_handler = files
  39. 2. With Apache you may overwrite the PHP setting for the Piwik directory only.
  40. If Piwik is installed in /piwik you are able to create a .htaccess file in
  41. this directory with the below code:
  42. # PHP 4, Apache 1.
  43. php_value session.save_handler files
  44. # PHP 4, Apache 2.
  45. php_value session.save_handler files
  46. # PHP 5, Apache 1 and 2.
  47. php_value session.save_handler files