3v4l.org

run code in 300+ PHP versions simultaneously
<?php /** * Piwik - Open source web analytics * * @link http://piwik.org * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later * */ /** * This file is executed before anything else. * It checks the minimum PHP version required to run Piwik. * This file must be compatible PHP4. */ $piwik_errorMessage = ''; // Minimum requirement: stream_resolve_include_path in 5.3.2, namespaces in 5.3 $piwik_minimumPHPVersion = '5.3.2'; $piwik_currentPHPVersion = PHP_VERSION; $minimumPhpInvalid = version_compare($piwik_minimumPHPVersion, $piwik_currentPHPVersion) > 0; if ($minimumPhpInvalid) { $piwik_errorMessage .= "<p><strong>To run Piwik you need at least PHP version $piwik_minimumPHPVersion</strong></p> <p>Unfortunately it seems your webserver is using PHP version $piwik_currentPHPVersion. </p> <p>Please try to update your PHP version, Piwik is really worth it! Nowadays most web hosts support PHP $piwik_minimumPHPVersion.</p> <p>Also see the FAQ: <a href='http://piwik.org/faq/how-to-install/#faq_77'>My Web host supports PHP4 by default. How can I enable PHP5?</a></p>"; } else { if (!class_exists('ArrayObject')) { $piwik_errorMessage .= "<p><strong>Piwik and Zend Framework require the SPL extension</strong></p> <p>It appears your PHP was compiled with <pre>--disable-spl</pre>. To enjoy Piwik, you need PHP compiled without that configure option.</p>"; } if (!extension_loaded('session')) { $piwik_errorMessage .= "<p><strong>Piwik and Zend_Session require the session extension</strong></p> <p>It appears your PHP was compiled with <pre>--disable-session</pre>. To enjoy Piwik, you need PHP compiled without that configure option.</p>"; } if (!function_exists('ini_set')) { $piwik_errorMessage .= "<p><strong>Piwik and Zend_Session require the <code>ini_set()</code> function</strong></p> <p>It appears your PHP has disabled this function. To enjoy Piwik, you need remove <pre>ini_set</pre> from your <pre>disable_functions</pre> directive in php.ini, and restart your webserver.</p>"; } if (!file_exists(PIWIK_INCLUDE_PATH . '/vendor/autoload.php') && !file_exists(PIWIK_INCLUDE_PATH . '/../../autoload.php')) { $composerInstall = "In the piwik directory, run in the command line the following (eg. via ssh): \n\n" . "<pre> curl -sS https://getcomposer.org/installer | php \n\n php composer.phar install\n\n</pre> "; if (DIRECTORY_SEPARATOR === '\\' /* ::isWindows() */) { $composerInstall = "Download and run <a href=\"https://getcomposer.org/Composer-Setup.exe\"><b>Composer-Setup.exe</b></a>, it will install the latest Composer version and set up your PATH so that you can just call composer from any directory in your command line. " . " <br>Then run this command in a terminal in the piwik directory: <br> $ php composer.phar update "; } $piwik_errorMessage .= "<p>It appears the <a href='https://getcomposer.org/' target='_blank'>composer</a> tool is not yet installed. You can install Composer in a few easy steps:\n\n". "<br/>" . $composerInstall. " This will initialize composer for Piwik and download libraries we use in vendor/* directory.". "\n\n<br/><br/>Then reload this page to access your analytics reports." . "\n\n<br/><br/>Note: if for some reasons you cannot install composer, instead install the latest Piwik release from ". "<a href='http://builds.piwik.org/latest.zip'>builds.piwik.org</a>.</p>"; } } if (!function_exists('Piwik_ExitWithMessage')) { /** * Returns true if Piwik should print the backtrace with error messages. * * To make sure the backtrace is printed, define PIWIK_PRINT_ERROR_BACKTRACE. * * @return bool */ function Piwik_ShouldPrintBackTraceWithMessage() { $bool = (defined('PIWIK_PRINT_ERROR_BACKTRACE') && PIWIK_PRINT_ERROR_BACKTRACE) || (defined('PIWIK_TRACKER_DEBUG') && PIWIK_TRACKER_DEBUG); return $bool; } /** * Displays info/warning/error message in a friendly UI and exits. * * @param string $message Main message, must be html encoded before calling * @param bool|string $optionalTrace Backtrace; will be displayed in lighter color * @param bool $optionalLinks If true, will show links to the Piwik website for help * @param bool $optionalLinkBack If true, displays a link to go back */ function Piwik_ExitWithMessage($message, $optionalTrace = false, $optionalLinks = false, $optionalLinkBack = false) { @header('Content-Type: text/html; charset=utf-8'); if ($optionalTrace) { $optionalTrace = '<span class="exception-backtrace">Backtrace:<br /><pre>' . $optionalTrace . '</pre></span>'; } $isCli = PHP_SAPI == 'cli'; if ($optionalLinks) { $optionalLinks = '<ul> <li><a target="_blank" href="http://piwik.org">Piwik.org homepage</a></li> <li><a target="_blank" href="http://piwik.org/faq/">Piwik Frequently Asked Questions</a></li> <li><a target="_blank" href="http://piwik.org/docs/">Piwik Documentation</a></li> <li><a target="_blank" href="http://forum.piwik.org/">Piwik Forums</a></li> <li><a target="_blank" href="http://demo.piwik.org">Piwik Online Demo</a></li> </ul>'; } if ($optionalLinkBack) { $optionalLinkBack = '<a href="javascript:window.back();">Go Back</a><br/>'; } $headerPage = file_get_contents(PIWIK_INCLUDE_PATH . '/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl'); $footerPage = file_get_contents(PIWIK_INCLUDE_PATH . '/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl'); $headerPage = str_replace('{$HTML_TITLE}', 'Piwik &rsaquo; Error', $headerPage); $content = '<p>' . $message . '</p> <p>' . $optionalLinkBack . '<a href="index.php">Go to Piwik</a><br/> <a href="index.php?module=Login">Login</a>' . '</p>' . ' ' . (Piwik_ShouldPrintBackTraceWithMessage() ? $optionalTrace : '') . ' ' . $optionalLinks; if($isCli) { $message = str_replace(array("<br />", "<br>", "<br/>", "</p>"), "\n", $message); $message = str_replace("\t", "", $message); echo strip_tags($message); } else { echo $headerPage . $content . $footerPage; } echo "\n"; exit; } } if (!empty($piwik_errorMessage)) { Piwik_ExitWithMessage($piwik_errorMessage, false, true); }
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
Fatal error: Uncaught Error: Undefined constant "PIWIK_INCLUDE_PATH" in /in/tMLOM:47 Stack trace: #0 {main} thrown in /in/tMLOM on line 47
Process exited with code 255.
Output for 7.2.0, 7.3.32 - 7.3.33, 7.4.33
Warning: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' (this will throw an Error in a future version of PHP) in /in/tMLOM on line 47 Warning: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' (this will throw an Error in a future version of PHP) in /in/tMLOM on line 47 Warning: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' (this will throw an Error in a future version of PHP) in /in/tMLOM on line 105 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 105 Warning: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' (this will throw an Error in a future version of PHP) in /in/tMLOM on line 106 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 106 It appears the composer tool is not yet installed. You can install Composer in a few easy steps: In the piwik directory, run in the command line the following (eg. via ssh): curl -sS https://getcomposer.org/installer | php php composer.phar install This will initialize composer for Piwik and download libraries we use in vendor/* directory. Then reload this page to access your analytics reports. Note: if for some reasons you cannot install composer, instead install the latest Piwik release from builds.piwik.org.
Output for 7.2.17 - 7.2.33, 7.3.0 - 7.3.31, 7.4.0 - 7.4.32
Warning: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' (this will throw an Error in a future version of PHP) in /in/tMLOM on line 47 Warning: file_exists(): open_basedir restriction in effect. File(PIWIK_INCLUDE_PATH/vendor/autoload.php) is not within the allowed path(s): (/tmp:/in:/etc) in /in/tMLOM on line 47 Warning: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' (this will throw an Error in a future version of PHP) in /in/tMLOM on line 47 Warning: file_exists(): open_basedir restriction in effect. File(PIWIK_INCLUDE_PATH/../../autoload.php) is not within the allowed path(s): (/tmp:/in:/etc) in /in/tMLOM on line 47 Warning: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' (this will throw an Error in a future version of PHP) in /in/tMLOM on line 105 Warning: file_get_contents(): open_basedir restriction in effect. File(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl) is not within the allowed path(s): (/tmp:/in:/etc) in /in/tMLOM on line 105 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl): failed to open stream: Operation not permitted in /in/tMLOM on line 105 Warning: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' (this will throw an Error in a future version of PHP) in /in/tMLOM on line 106 Warning: file_get_contents(): open_basedir restriction in effect. File(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl) is not within the allowed path(s): (/tmp:/in:/etc) in /in/tMLOM on line 106 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl): failed to open stream: Operation not permitted in /in/tMLOM on line 106 It appears the composer tool is not yet installed. You can install Composer in a few easy steps: In the piwik directory, run in the command line the following (eg. via ssh): curl -sS https://getcomposer.org/installer | php php composer.phar install This will initialize composer for Piwik and download libraries we use in vendor/* directory. Then reload this page to access your analytics reports. Note: if for some reasons you cannot install composer, instead install the latest Piwik release from builds.piwik.org.
Output for 7.2.6
Warning: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' (this will throw an Error in a future version of PHP) in /in/tMLOM on line 47 Warning: file_exists(): open_basedir restriction in effect. File(PIWIK_INCLUDE_PATH/vendor/autoload.php) is not within the allowed path(s): (/tmp:/in) in /in/tMLOM on line 47 Warning: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' (this will throw an Error in a future version of PHP) in /in/tMLOM on line 47 Warning: file_exists(): open_basedir restriction in effect. File(PIWIK_INCLUDE_PATH/../../autoload.php) is not within the allowed path(s): (/tmp:/in) in /in/tMLOM on line 47 Warning: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' (this will throw an Error in a future version of PHP) in /in/tMLOM on line 105 Warning: file_get_contents(): open_basedir restriction in effect. File(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl) is not within the allowed path(s): (/tmp:/in) in /in/tMLOM on line 105 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl): failed to open stream: Operation not permitted in /in/tMLOM on line 105 Warning: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' (this will throw an Error in a future version of PHP) in /in/tMLOM on line 106 Warning: file_get_contents(): open_basedir restriction in effect. File(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl) is not within the allowed path(s): (/tmp:/in) in /in/tMLOM on line 106 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl): failed to open stream: Operation not permitted in /in/tMLOM on line 106 It appears the composer tool is not yet installed. You can install Composer in a few easy steps: In the piwik directory, run in the command line the following (eg. via ssh): curl -sS https://getcomposer.org/installer | php php composer.phar install This will initialize composer for Piwik and download libraries we use in vendor/* directory. Then reload this page to access your analytics reports. Note: if for some reasons you cannot install composer, instead install the latest Piwik release from builds.piwik.org.
Output for 7.1.26 - 7.1.33
Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 47 Warning: file_exists(): open_basedir restriction in effect. File(PIWIK_INCLUDE_PATH/vendor/autoload.php) is not within the allowed path(s): (/tmp:/in:/etc) in /in/tMLOM on line 47 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 47 Warning: file_exists(): open_basedir restriction in effect. File(PIWIK_INCLUDE_PATH/../../autoload.php) is not within the allowed path(s): (/tmp:/in:/etc) in /in/tMLOM on line 47 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 105 Warning: file_get_contents(): open_basedir restriction in effect. File(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl) is not within the allowed path(s): (/tmp:/in:/etc) in /in/tMLOM on line 105 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl): failed to open stream: Operation not permitted in /in/tMLOM on line 105 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 106 Warning: file_get_contents(): open_basedir restriction in effect. File(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl) is not within the allowed path(s): (/tmp:/in:/etc) in /in/tMLOM on line 106 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl): failed to open stream: Operation not permitted in /in/tMLOM on line 106 It appears the composer tool is not yet installed. You can install Composer in a few easy steps: In the piwik directory, run in the command line the following (eg. via ssh): curl -sS https://getcomposer.org/installer | php php composer.phar install This will initialize composer for Piwik and download libraries we use in vendor/* directory. Then reload this page to access your analytics reports. Note: if for some reasons you cannot install composer, instead install the latest Piwik release from builds.piwik.org.
Output for 7.1.20
Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 47 Warning: file_exists(): open_basedir restriction in effect. File(PIWIK_INCLUDE_PATH/vendor/autoload.php) is not within the allowed path(s): (/tmp:/in) in /in/tMLOM on line 47 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 47 Warning: file_exists(): open_basedir restriction in effect. File(PIWIK_INCLUDE_PATH/../../autoload.php) is not within the allowed path(s): (/tmp:/in) in /in/tMLOM on line 47 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 105 Warning: file_get_contents(): open_basedir restriction in effect. File(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl) is not within the allowed path(s): (/tmp:/in) in /in/tMLOM on line 105 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl): failed to open stream: Operation not permitted in /in/tMLOM on line 105 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 106 Warning: file_get_contents(): open_basedir restriction in effect. File(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl) is not within the allowed path(s): (/tmp:/in) in /in/tMLOM on line 106 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl): failed to open stream: Operation not permitted in /in/tMLOM on line 106 It appears the composer tool is not yet installed. You can install Composer in a few easy steps: In the piwik directory, run in the command line the following (eg. via ssh): curl -sS https://getcomposer.org/installer | php php composer.phar install This will initialize composer for Piwik and download libraries we use in vendor/* directory. Then reload this page to access your analytics reports. Note: if for some reasons you cannot install composer, instead install the latest Piwik release from builds.piwik.org.
Output for 5.3.2 - 5.3.29, 5.4.0 - 5.4.45, 5.5.0 - 5.5.37, 5.6.0 - 5.6.28, 7.0.0 - 7.0.20, 7.1.0 - 7.1.10
Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 47 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 47 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 105 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 105 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 106 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 106 It appears the composer tool is not yet installed. You can install Composer in a few easy steps: In the piwik directory, run in the command line the following (eg. via ssh): curl -sS https://getcomposer.org/installer | php php composer.phar install This will initialize composer for Piwik and download libraries we use in vendor/* directory. Then reload this page to access your analytics reports. Note: if for some reasons you cannot install composer, instead install the latest Piwik release from builds.piwik.org.
Output for 5.3.1
Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 105 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 105 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 106 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 106 To run Piwik you need at least PHP version 5.3.2 Unfortunately it seems your webserver is using PHP version 5.3.1. Please try to update your PHP version, Piwik is really worth it! Nowadays most web hosts support PHP 5.3.2. Also see the FAQ: My Web host supports PHP4 by default. How can I enable PHP5?
Output for 5.3.0
Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 105 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 105 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 106 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 106 To run Piwik you need at least PHP version 5.3.2 Unfortunately it seems your webserver is using PHP version 5.3.0. Please try to update your PHP version, Piwik is really worth it! Nowadays most web hosts support PHP 5.3.2. Also see the FAQ: My Web host supports PHP4 by default. How can I enable PHP5?
Output for 5.2.17
Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 105 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 105 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 106 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 106 To run Piwik you need at least PHP version 5.3.2 Unfortunately it seems your webserver is using PHP version 5.2.17. Please try to update your PHP version, Piwik is really worth it! Nowadays most web hosts support PHP 5.3.2. Also see the FAQ: My Web host supports PHP4 by default. How can I enable PHP5?
Output for 5.2.16
Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 105 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 105 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 106 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 106 To run Piwik you need at least PHP version 5.3.2 Unfortunately it seems your webserver is using PHP version 5.2.16. Please try to update your PHP version, Piwik is really worth it! Nowadays most web hosts support PHP 5.3.2. Also see the FAQ: My Web host supports PHP4 by default. How can I enable PHP5?
Output for 5.2.15
Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 105 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 105 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 106 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 106 To run Piwik you need at least PHP version 5.3.2 Unfortunately it seems your webserver is using PHP version 5.2.15. Please try to update your PHP version, Piwik is really worth it! Nowadays most web hosts support PHP 5.3.2. Also see the FAQ: My Web host supports PHP4 by default. How can I enable PHP5?
Output for 5.2.14
Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 105 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 105 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 106 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 106 To run Piwik you need at least PHP version 5.3.2 Unfortunately it seems your webserver is using PHP version 5.2.14. Please try to update your PHP version, Piwik is really worth it! Nowadays most web hosts support PHP 5.3.2. Also see the FAQ: My Web host supports PHP4 by default. How can I enable PHP5?
Output for 5.2.13
Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 105 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 105 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 106 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 106 To run Piwik you need at least PHP version 5.3.2 Unfortunately it seems your webserver is using PHP version 5.2.13. Please try to update your PHP version, Piwik is really worth it! Nowadays most web hosts support PHP 5.3.2. Also see the FAQ: My Web host supports PHP4 by default. How can I enable PHP5?
Output for 5.2.12
Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 105 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 105 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 106 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 106 To run Piwik you need at least PHP version 5.3.2 Unfortunately it seems your webserver is using PHP version 5.2.12. Please try to update your PHP version, Piwik is really worth it! Nowadays most web hosts support PHP 5.3.2. Also see the FAQ: My Web host supports PHP4 by default. How can I enable PHP5?
Output for 5.2.11
Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 105 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 105 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 106 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 106 To run Piwik you need at least PHP version 5.3.2 Unfortunately it seems your webserver is using PHP version 5.2.11. Please try to update your PHP version, Piwik is really worth it! Nowadays most web hosts support PHP 5.3.2. Also see the FAQ: My Web host supports PHP4 by default. How can I enable PHP5?
Output for 5.2.10
Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 105 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 105 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 106 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 106 To run Piwik you need at least PHP version 5.3.2 Unfortunately it seems your webserver is using PHP version 5.2.10. Please try to update your PHP version, Piwik is really worth it! Nowadays most web hosts support PHP 5.3.2. Also see the FAQ: My Web host supports PHP4 by default. How can I enable PHP5?
Output for 5.2.9
Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 105 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 105 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 106 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 106 To run Piwik you need at least PHP version 5.3.2 Unfortunately it seems your webserver is using PHP version 5.2.9. Please try to update your PHP version, Piwik is really worth it! Nowadays most web hosts support PHP 5.3.2. Also see the FAQ: My Web host supports PHP4 by default. How can I enable PHP5?
Output for 5.2.8
Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 105 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 105 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 106 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 106 To run Piwik you need at least PHP version 5.3.2 Unfortunately it seems your webserver is using PHP version 5.2.8. Please try to update your PHP version, Piwik is really worth it! Nowadays most web hosts support PHP 5.3.2. Also see the FAQ: My Web host supports PHP4 by default. How can I enable PHP5?
Output for 5.2.7
Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 105 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 105 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 106 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 106 To run Piwik you need at least PHP version 5.3.2 Unfortunately it seems your webserver is using PHP version 5.2.7. Please try to update your PHP version, Piwik is really worth it! Nowadays most web hosts support PHP 5.3.2. Also see the FAQ: My Web host supports PHP4 by default. How can I enable PHP5?
Output for 5.2.6
Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 105 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 105 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 106 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 106 To run Piwik you need at least PHP version 5.3.2 Unfortunately it seems your webserver is using PHP version 5.2.6. Please try to update your PHP version, Piwik is really worth it! Nowadays most web hosts support PHP 5.3.2. Also see the FAQ: My Web host supports PHP4 by default. How can I enable PHP5?
Output for 5.2.5
Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 105 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 105 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 106 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 106 To run Piwik you need at least PHP version 5.3.2 Unfortunately it seems your webserver is using PHP version 5.2.5. Please try to update your PHP version, Piwik is really worth it! Nowadays most web hosts support PHP 5.3.2. Also see the FAQ: My Web host supports PHP4 by default. How can I enable PHP5?
Output for 5.2.4
Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 105 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 105 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 106 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 106 To run Piwik you need at least PHP version 5.3.2 Unfortunately it seems your webserver is using PHP version 5.2.4. Please try to update your PHP version, Piwik is really worth it! Nowadays most web hosts support PHP 5.3.2. Also see the FAQ: My Web host supports PHP4 by default. How can I enable PHP5?
Output for 5.2.3
Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 105 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 105 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 106 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 106 To run Piwik you need at least PHP version 5.3.2 Unfortunately it seems your webserver is using PHP version 5.2.3. Please try to update your PHP version, Piwik is really worth it! Nowadays most web hosts support PHP 5.3.2. Also see the FAQ: My Web host supports PHP4 by default. How can I enable PHP5?
Output for 5.2.2
Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 105 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 105 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 106 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 106 <p><p><strong>To run Piwik you need at least PHP version 5.3.2</strong></p> <p>Unfortunately it seems your webserver is using PHP version 5.2.2. </p> <p>Please try to update your PHP version, Piwik is really worth it! Nowadays most web hosts support PHP 5.3.2.</p> <p>Also see the FAQ: <a href='http://piwik.org/faq/how-to-install/#faq_77'>My Web host supports PHP4 by default. How can I enable PHP5?</a></p></p> <p><a href="index.php">Go to Piwik</a><br/> <a href="index.php?module=Login">Login</a></p> <ul> <li><a target="_blank" href="http://piwik.org">Piwik.org homepage</a></li> <li><a target="_blank" href="http://piwik.org/faq/">Piwik Frequently Asked Questions</a></li> <li><a target="_blank" href="http://piwik.org/docs/">Piwik Documentation</a></li> <li><a target="_blank" href="http://forum.piwik.org/">Piwik Forums</a></li> <li><a target="_blank" href="http://demo.piwik.org">Piwik Online Demo</a></li> </ul>
Output for 5.2.1
Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 105 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 105 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 106 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 106 <p><p><strong>To run Piwik you need at least PHP version 5.3.2</strong></p> <p>Unfortunately it seems your webserver is using PHP version 5.2.1. </p> <p>Please try to update your PHP version, Piwik is really worth it! Nowadays most web hosts support PHP 5.3.2.</p> <p>Also see the FAQ: <a href='http://piwik.org/faq/how-to-install/#faq_77'>My Web host supports PHP4 by default. How can I enable PHP5?</a></p></p> <p><a href="index.php">Go to Piwik</a><br/> <a href="index.php?module=Login">Login</a></p> <ul> <li><a target="_blank" href="http://piwik.org">Piwik.org homepage</a></li> <li><a target="_blank" href="http://piwik.org/faq/">Piwik Frequently Asked Questions</a></li> <li><a target="_blank" href="http://piwik.org/docs/">Piwik Documentation</a></li> <li><a target="_blank" href="http://forum.piwik.org/">Piwik Forums</a></li> <li><a target="_blank" href="http://demo.piwik.org">Piwik Online Demo</a></li> </ul>
Output for 5.2.0
Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 105 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 105 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 106 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 106 <p><p><strong>To run Piwik you need at least PHP version 5.3.2</strong></p> <p>Unfortunately it seems your webserver is using PHP version 5.2.0. </p> <p>Please try to update your PHP version, Piwik is really worth it! Nowadays most web hosts support PHP 5.3.2.</p> <p>Also see the FAQ: <a href='http://piwik.org/faq/how-to-install/#faq_77'>My Web host supports PHP4 by default. How can I enable PHP5?</a></p></p> <p><a href="index.php">Go to Piwik</a><br/> <a href="index.php?module=Login">Login</a></p> <ul> <li><a target="_blank" href="http://piwik.org">Piwik.org homepage</a></li> <li><a target="_blank" href="http://piwik.org/faq/">Piwik Frequently Asked Questions</a></li> <li><a target="_blank" href="http://piwik.org/docs/">Piwik Documentation</a></li> <li><a target="_blank" href="http://forum.piwik.org/">Piwik Forums</a></li> <li><a target="_blank" href="http://demo.piwik.org">Piwik Online Demo</a></li> </ul>
Output for 5.1.6
Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 105 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 105 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 106 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 106 <p><p><strong>To run Piwik you need at least PHP version 5.3.2</strong></p> <p>Unfortunately it seems your webserver is using PHP version 5.1.6. </p> <p>Please try to update your PHP version, Piwik is really worth it! Nowadays most web hosts support PHP 5.3.2.</p> <p>Also see the FAQ: <a href='http://piwik.org/faq/how-to-install/#faq_77'>My Web host supports PHP4 by default. How can I enable PHP5?</a></p></p> <p><a href="index.php">Go to Piwik</a><br/> <a href="index.php?module=Login">Login</a></p> <ul> <li><a target="_blank" href="http://piwik.org">Piwik.org homepage</a></li> <li><a target="_blank" href="http://piwik.org/faq/">Piwik Frequently Asked Questions</a></li> <li><a target="_blank" href="http://piwik.org/docs/">Piwik Documentation</a></li> <li><a target="_blank" href="http://forum.piwik.org/">Piwik Forums</a></li> <li><a target="_blank" href="http://demo.piwik.org">Piwik Online Demo</a></li> </ul>
Output for 5.1.5
Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 105 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 105 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 106 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 106 <p><p><strong>To run Piwik you need at least PHP version 5.3.2</strong></p> <p>Unfortunately it seems your webserver is using PHP version 5.1.5. </p> <p>Please try to update your PHP version, Piwik is really worth it! Nowadays most web hosts support PHP 5.3.2.</p> <p>Also see the FAQ: <a href='http://piwik.org/faq/how-to-install/#faq_77'>My Web host supports PHP4 by default. How can I enable PHP5?</a></p></p> <p><a href="index.php">Go to Piwik</a><br/> <a href="index.php?module=Login">Login</a></p> <ul> <li><a target="_blank" href="http://piwik.org">Piwik.org homepage</a></li> <li><a target="_blank" href="http://piwik.org/faq/">Piwik Frequently Asked Questions</a></li> <li><a target="_blank" href="http://piwik.org/docs/">Piwik Documentation</a></li> <li><a target="_blank" href="http://forum.piwik.org/">Piwik Forums</a></li> <li><a target="_blank" href="http://demo.piwik.org">Piwik Online Demo</a></li> </ul>
Output for 5.1.4
Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 105 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 105 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 106 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 106 <p><p><strong>To run Piwik you need at least PHP version 5.3.2</strong></p> <p>Unfortunately it seems your webserver is using PHP version 5.1.4. </p> <p>Please try to update your PHP version, Piwik is really worth it! Nowadays most web hosts support PHP 5.3.2.</p> <p>Also see the FAQ: <a href='http://piwik.org/faq/how-to-install/#faq_77'>My Web host supports PHP4 by default. How can I enable PHP5?</a></p></p> <p><a href="index.php">Go to Piwik</a><br/> <a href="index.php?module=Login">Login</a></p> <ul> <li><a target="_blank" href="http://piwik.org">Piwik.org homepage</a></li> <li><a target="_blank" href="http://piwik.org/faq/">Piwik Frequently Asked Questions</a></li> <li><a target="_blank" href="http://piwik.org/docs/">Piwik Documentation</a></li> <li><a target="_blank" href="http://forum.piwik.org/">Piwik Forums</a></li> <li><a target="_blank" href="http://demo.piwik.org">Piwik Online Demo</a></li> </ul>
Output for 5.1.3
Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 105 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 105 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 106 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 106 <p><p><strong>To run Piwik you need at least PHP version 5.3.2</strong></p> <p>Unfortunately it seems your webserver is using PHP version 5.1.3. </p> <p>Please try to update your PHP version, Piwik is really worth it! Nowadays most web hosts support PHP 5.3.2.</p> <p>Also see the FAQ: <a href='http://piwik.org/faq/how-to-install/#faq_77'>My Web host supports PHP4 by default. How can I enable PHP5?</a></p></p> <p><a href="index.php">Go to Piwik</a><br/> <a href="index.php?module=Login">Login</a></p> <ul> <li><a target="_blank" href="http://piwik.org">Piwik.org homepage</a></li> <li><a target="_blank" href="http://piwik.org/faq/">Piwik Frequently Asked Questions</a></li> <li><a target="_blank" href="http://piwik.org/docs/">Piwik Documentation</a></li> <li><a target="_blank" href="http://forum.piwik.org/">Piwik Forums</a></li> <li><a target="_blank" href="http://demo.piwik.org">Piwik Online Demo</a></li> </ul>
Output for 5.1.2
Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 105 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 105 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 106 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 106 <p><p><strong>To run Piwik you need at least PHP version 5.3.2</strong></p> <p>Unfortunately it seems your webserver is using PHP version 5.1.2. </p> <p>Please try to update your PHP version, Piwik is really worth it! Nowadays most web hosts support PHP 5.3.2.</p> <p>Also see the FAQ: <a href='http://piwik.org/faq/how-to-install/#faq_77'>My Web host supports PHP4 by default. How can I enable PHP5?</a></p></p> <p><a href="index.php">Go to Piwik</a><br/> <a href="index.php?module=Login">Login</a></p> <ul> <li><a target="_blank" href="http://piwik.org">Piwik.org homepage</a></li> <li><a target="_blank" href="http://piwik.org/faq/">Piwik Frequently Asked Questions</a></li> <li><a target="_blank" href="http://piwik.org/docs/">Piwik Documentation</a></li> <li><a target="_blank" href="http://forum.piwik.org/">Piwik Forums</a></li> <li><a target="_blank" href="http://demo.piwik.org">Piwik Online Demo</a></li> </ul>
Output for 5.1.1
Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 105 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 105 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 106 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 106 <p><p><strong>To run Piwik you need at least PHP version 5.3.2</strong></p> <p>Unfortunately it seems your webserver is using PHP version 5.1.1. </p> <p>Please try to update your PHP version, Piwik is really worth it! Nowadays most web hosts support PHP 5.3.2.</p> <p>Also see the FAQ: <a href='http://piwik.org/faq/how-to-install/#faq_77'>My Web host supports PHP4 by default. How can I enable PHP5?</a></p></p> <p><a href="index.php">Go to Piwik</a><br/> <a href="index.php?module=Login">Login</a></p> <ul> <li><a target="_blank" href="http://piwik.org">Piwik.org homepage</a></li> <li><a target="_blank" href="http://piwik.org/faq/">Piwik Frequently Asked Questions</a></li> <li><a target="_blank" href="http://piwik.org/docs/">Piwik Documentation</a></li> <li><a target="_blank" href="http://forum.piwik.org/">Piwik Forums</a></li> <li><a target="_blank" href="http://demo.piwik.org">Piwik Online Demo</a></li> </ul>
Output for 5.1.0
Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 105 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 105 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 106 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 106 <p><p><strong>To run Piwik you need at least PHP version 5.3.2</strong></p> <p>Unfortunately it seems your webserver is using PHP version 5.1.0. </p> <p>Please try to update your PHP version, Piwik is really worth it! Nowadays most web hosts support PHP 5.3.2.</p> <p>Also see the FAQ: <a href='http://piwik.org/faq/how-to-install/#faq_77'>My Web host supports PHP4 by default. How can I enable PHP5?</a></p></p> <p><a href="index.php">Go to Piwik</a><br/> <a href="index.php?module=Login">Login</a></p> <ul> <li><a target="_blank" href="http://piwik.org">Piwik.org homepage</a></li> <li><a target="_blank" href="http://piwik.org/faq/">Piwik Frequently Asked Questions</a></li> <li><a target="_blank" href="http://piwik.org/docs/">Piwik Documentation</a></li> <li><a target="_blank" href="http://forum.piwik.org/">Piwik Forums</a></li> <li><a target="_blank" href="http://demo.piwik.org">Piwik Online Demo</a></li> </ul>
Output for 5.0.5
Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 105 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 105 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 106 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 106 <p><p><strong>To run Piwik you need at least PHP version 5.3.2</strong></p> <p>Unfortunately it seems your webserver is using PHP version 5.0.5. </p> <p>Please try to update your PHP version, Piwik is really worth it! Nowadays most web hosts support PHP 5.3.2.</p> <p>Also see the FAQ: <a href='http://piwik.org/faq/how-to-install/#faq_77'>My Web host supports PHP4 by default. How can I enable PHP5?</a></p></p> <p><a href="index.php">Go to Piwik</a><br/> <a href="index.php?module=Login">Login</a></p> <ul> <li><a target="_blank" href="http://piwik.org">Piwik.org homepage</a></li> <li><a target="_blank" href="http://piwik.org/faq/">Piwik Frequently Asked Questions</a></li> <li><a target="_blank" href="http://piwik.org/docs/">Piwik Documentation</a></li> <li><a target="_blank" href="http://forum.piwik.org/">Piwik Forums</a></li> <li><a target="_blank" href="http://demo.piwik.org">Piwik Online Demo</a></li> </ul>
Output for 5.0.4
Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 105 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 105 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 106 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 106 <p><p><strong>To run Piwik you need at least PHP version 5.3.2</strong></p> <p>Unfortunately it seems your webserver is using PHP version 5.0.4. </p> <p>Please try to update your PHP version, Piwik is really worth it! Nowadays most web hosts support PHP 5.3.2.</p> <p>Also see the FAQ: <a href='http://piwik.org/faq/how-to-install/#faq_77'>My Web host supports PHP4 by default. How can I enable PHP5?</a></p></p> <p><a href="index.php">Go to Piwik</a><br/> <a href="index.php?module=Login">Login</a></p> <ul> <li><a target="_blank" href="http://piwik.org">Piwik.org homepage</a></li> <li><a target="_blank" href="http://piwik.org/faq/">Piwik Frequently Asked Questions</a></li> <li><a target="_blank" href="http://piwik.org/docs/">Piwik Documentation</a></li> <li><a target="_blank" href="http://forum.piwik.org/">Piwik Forums</a></li> <li><a target="_blank" href="http://demo.piwik.org">Piwik Online Demo</a></li> </ul>
Output for 5.0.3
Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 105 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 105 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 106 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 106 <p><p><strong>To run Piwik you need at least PHP version 5.3.2</strong></p> <p>Unfortunately it seems your webserver is using PHP version 5.0.3. </p> <p>Please try to update your PHP version, Piwik is really worth it! Nowadays most web hosts support PHP 5.3.2.</p> <p>Also see the FAQ: <a href='http://piwik.org/faq/how-to-install/#faq_77'>My Web host supports PHP4 by default. How can I enable PHP5?</a></p></p> <p><a href="index.php">Go to Piwik</a><br/> <a href="index.php?module=Login">Login</a></p> <ul> <li><a target="_blank" href="http://piwik.org">Piwik.org homepage</a></li> <li><a target="_blank" href="http://piwik.org/faq/">Piwik Frequently Asked Questions</a></li> <li><a target="_blank" href="http://piwik.org/docs/">Piwik Documentation</a></li> <li><a target="_blank" href="http://forum.piwik.org/">Piwik Forums</a></li> <li><a target="_blank" href="http://demo.piwik.org">Piwik Online Demo</a></li> </ul>
Output for 5.0.2
Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 105 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 105 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 106 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 106 <p><p><strong>To run Piwik you need at least PHP version 5.3.2</strong></p> <p>Unfortunately it seems your webserver is using PHP version 5.0.2. </p> <p>Please try to update your PHP version, Piwik is really worth it! Nowadays most web hosts support PHP 5.3.2.</p> <p>Also see the FAQ: <a href='http://piwik.org/faq/how-to-install/#faq_77'>My Web host supports PHP4 by default. How can I enable PHP5?</a></p></p> <p><a href="index.php">Go to Piwik</a><br/> <a href="index.php?module=Login">Login</a></p> <ul> <li><a target="_blank" href="http://piwik.org">Piwik.org homepage</a></li> <li><a target="_blank" href="http://piwik.org/faq/">Piwik Frequently Asked Questions</a></li> <li><a target="_blank" href="http://piwik.org/docs/">Piwik Documentation</a></li> <li><a target="_blank" href="http://forum.piwik.org/">Piwik Forums</a></li> <li><a target="_blank" href="http://demo.piwik.org">Piwik Online Demo</a></li> </ul>
Output for 5.0.1
Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 105 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 105 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 106 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 106 <p><p><strong>To run Piwik you need at least PHP version 5.3.2</strong></p> <p>Unfortunately it seems your webserver is using PHP version 5.0.1. </p> <p>Please try to update your PHP version, Piwik is really worth it! Nowadays most web hosts support PHP 5.3.2.</p> <p>Also see the FAQ: <a href='http://piwik.org/faq/how-to-install/#faq_77'>My Web host supports PHP4 by default. How can I enable PHP5?</a></p></p> <p><a href="index.php">Go to Piwik</a><br/> <a href="index.php?module=Login">Login</a></p> <ul> <li><a target="_blank" href="http://piwik.org">Piwik.org homepage</a></li> <li><a target="_blank" href="http://piwik.org/faq/">Piwik Frequently Asked Questions</a></li> <li><a target="_blank" href="http://piwik.org/docs/">Piwik Documentation</a></li> <li><a target="_blank" href="http://forum.piwik.org/">Piwik Forums</a></li> <li><a target="_blank" href="http://demo.piwik.org">Piwik Online Demo</a></li> </ul>
Output for 5.0.0
Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 105 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 105 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 106 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 106 <p><p><strong>To run Piwik you need at least PHP version 5.3.2</strong></p> <p>Unfortunately it seems your webserver is using PHP version 5.0.0. </p> <p>Please try to update your PHP version, Piwik is really worth it! Nowadays most web hosts support PHP 5.3.2.</p> <p>Also see the FAQ: <a href='http://piwik.org/faq/how-to-install/#faq_77'>My Web host supports PHP4 by default. How can I enable PHP5?</a></p></p> <p><a href="index.php">Go to Piwik</a><br/> <a href="index.php?module=Login">Login</a></p> <ul> <li><a target="_blank" href="http://piwik.org">Piwik.org homepage</a></li> <li><a target="_blank" href="http://piwik.org/faq/">Piwik Frequently Asked Questions</a></li> <li><a target="_blank" href="http://piwik.org/docs/">Piwik Documentation</a></li> <li><a target="_blank" href="http://forum.piwik.org/">Piwik Forums</a></li> <li><a target="_blank" href="http://demo.piwik.org">Piwik Online Demo</a></li> </ul>
Output for 4.4.9
Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 105 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 105 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 106 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 106 <p><p><strong>To run Piwik you need at least PHP version 5.3.2</strong></p> <p>Unfortunately it seems your webserver is using PHP version 4.4.9. </p> <p>Please try to update your PHP version, Piwik is really worth it! Nowadays most web hosts support PHP 5.3.2.</p> <p>Also see the FAQ: <a href='http://piwik.org/faq/how-to-install/#faq_77'>My Web host supports PHP4 by default. How can I enable PHP5?</a></p></p> <p><a href="index.php">Go to Piwik</a><br/> <a href="index.php?module=Login">Login</a></p> <ul> <li><a target="_blank" href="http://piwik.org">Piwik.org homepage</a></li> <li><a target="_blank" href="http://piwik.org/faq/">Piwik Frequently Asked Questions</a></li> <li><a target="_blank" href="http://piwik.org/docs/">Piwik Documentation</a></li> <li><a target="_blank" href="http://forum.piwik.org/">Piwik Forums</a></li> <li><a target="_blank" href="http://demo.piwik.org">Piwik Online Demo</a></li> </ul>
Output for 4.4.8
Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 105 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 105 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 106 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 106 <p><p><strong>To run Piwik you need at least PHP version 5.3.2</strong></p> <p>Unfortunately it seems your webserver is using PHP version 4.4.8. </p> <p>Please try to update your PHP version, Piwik is really worth it! Nowadays most web hosts support PHP 5.3.2.</p> <p>Also see the FAQ: <a href='http://piwik.org/faq/how-to-install/#faq_77'>My Web host supports PHP4 by default. How can I enable PHP5?</a></p></p> <p><a href="index.php">Go to Piwik</a><br/> <a href="index.php?module=Login">Login</a></p> <ul> <li><a target="_blank" href="http://piwik.org">Piwik.org homepage</a></li> <li><a target="_blank" href="http://piwik.org/faq/">Piwik Frequently Asked Questions</a></li> <li><a target="_blank" href="http://piwik.org/docs/">Piwik Documentation</a></li> <li><a target="_blank" href="http://forum.piwik.org/">Piwik Forums</a></li> <li><a target="_blank" href="http://demo.piwik.org">Piwik Online Demo</a></li> </ul>
Output for 4.4.7
Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 105 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 105 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 106 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 106 <p><p><strong>To run Piwik you need at least PHP version 5.3.2</strong></p> <p>Unfortunately it seems your webserver is using PHP version 4.4.7. </p> <p>Please try to update your PHP version, Piwik is really worth it! Nowadays most web hosts support PHP 5.3.2.</p> <p>Also see the FAQ: <a href='http://piwik.org/faq/how-to-install/#faq_77'>My Web host supports PHP4 by default. How can I enable PHP5?</a></p></p> <p><a href="index.php">Go to Piwik</a><br/> <a href="index.php?module=Login">Login</a></p> <ul> <li><a target="_blank" href="http://piwik.org">Piwik.org homepage</a></li> <li><a target="_blank" href="http://piwik.org/faq/">Piwik Frequently Asked Questions</a></li> <li><a target="_blank" href="http://piwik.org/docs/">Piwik Documentation</a></li> <li><a target="_blank" href="http://forum.piwik.org/">Piwik Forums</a></li> <li><a target="_blank" href="http://demo.piwik.org">Piwik Online Demo</a></li> </ul>
Output for 4.4.6
Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 105 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 105 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 106 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 106 <p><p><strong>To run Piwik you need at least PHP version 5.3.2</strong></p> <p>Unfortunately it seems your webserver is using PHP version 4.4.6. </p> <p>Please try to update your PHP version, Piwik is really worth it! Nowadays most web hosts support PHP 5.3.2.</p> <p>Also see the FAQ: <a href='http://piwik.org/faq/how-to-install/#faq_77'>My Web host supports PHP4 by default. How can I enable PHP5?</a></p></p> <p><a href="index.php">Go to Piwik</a><br/> <a href="index.php?module=Login">Login</a></p> <ul> <li><a target="_blank" href="http://piwik.org">Piwik.org homepage</a></li> <li><a target="_blank" href="http://piwik.org/faq/">Piwik Frequently Asked Questions</a></li> <li><a target="_blank" href="http://piwik.org/docs/">Piwik Documentation</a></li> <li><a target="_blank" href="http://forum.piwik.org/">Piwik Forums</a></li> <li><a target="_blank" href="http://demo.piwik.org">Piwik Online Demo</a></li> </ul>
Output for 4.4.5
Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 105 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 105 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 106 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 106 <p><p><strong>To run Piwik you need at least PHP version 5.3.2</strong></p> <p>Unfortunately it seems your webserver is using PHP version 4.4.5. </p> <p>Please try to update your PHP version, Piwik is really worth it! Nowadays most web hosts support PHP 5.3.2.</p> <p>Also see the FAQ: <a href='http://piwik.org/faq/how-to-install/#faq_77'>My Web host supports PHP4 by default. How can I enable PHP5?</a></p></p> <p><a href="index.php">Go to Piwik</a><br/> <a href="index.php?module=Login">Login</a></p> <ul> <li><a target="_blank" href="http://piwik.org">Piwik.org homepage</a></li> <li><a target="_blank" href="http://piwik.org/faq/">Piwik Frequently Asked Questions</a></li> <li><a target="_blank" href="http://piwik.org/docs/">Piwik Documentation</a></li> <li><a target="_blank" href="http://forum.piwik.org/">Piwik Forums</a></li> <li><a target="_blank" href="http://demo.piwik.org">Piwik Online Demo</a></li> </ul>
Output for 4.4.4
Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 105 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 105 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 106 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 106 <p><p><strong>To run Piwik you need at least PHP version 5.3.2</strong></p> <p>Unfortunately it seems your webserver is using PHP version 4.4.4. </p> <p>Please try to update your PHP version, Piwik is really worth it! Nowadays most web hosts support PHP 5.3.2.</p> <p>Also see the FAQ: <a href='http://piwik.org/faq/how-to-install/#faq_77'>My Web host supports PHP4 by default. How can I enable PHP5?</a></p></p> <p><a href="index.php">Go to Piwik</a><br/> <a href="index.php?module=Login">Login</a></p> <ul> <li><a target="_blank" href="http://piwik.org">Piwik.org homepage</a></li> <li><a target="_blank" href="http://piwik.org/faq/">Piwik Frequently Asked Questions</a></li> <li><a target="_blank" href="http://piwik.org/docs/">Piwik Documentation</a></li> <li><a target="_blank" href="http://forum.piwik.org/">Piwik Forums</a></li> <li><a target="_blank" href="http://demo.piwik.org">Piwik Online Demo</a></li> </ul>
Output for 4.4.3
Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 105 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 105 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 106 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 106 <p><p><strong>To run Piwik you need at least PHP version 5.3.2</strong></p> <p>Unfortunately it seems your webserver is using PHP version 4.4.3. </p> <p>Please try to update your PHP version, Piwik is really worth it! Nowadays most web hosts support PHP 5.3.2.</p> <p>Also see the FAQ: <a href='http://piwik.org/faq/how-to-install/#faq_77'>My Web host supports PHP4 by default. How can I enable PHP5?</a></p></p> <p><a href="index.php">Go to Piwik</a><br/> <a href="index.php?module=Login">Login</a></p> <ul> <li><a target="_blank" href="http://piwik.org">Piwik.org homepage</a></li> <li><a target="_blank" href="http://piwik.org/faq/">Piwik Frequently Asked Questions</a></li> <li><a target="_blank" href="http://piwik.org/docs/">Piwik Documentation</a></li> <li><a target="_blank" href="http://forum.piwik.org/">Piwik Forums</a></li> <li><a target="_blank" href="http://demo.piwik.org">Piwik Online Demo</a></li> </ul>
Output for 4.4.2
Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 105 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 105 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 106 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 106 <p><p><strong>To run Piwik you need at least PHP version 5.3.2</strong></p> <p>Unfortunately it seems your webserver is using PHP version 4.4.2. </p> <p>Please try to update your PHP version, Piwik is really worth it! Nowadays most web hosts support PHP 5.3.2.</p> <p>Also see the FAQ: <a href='http://piwik.org/faq/how-to-install/#faq_77'>My Web host supports PHP4 by default. How can I enable PHP5?</a></p></p> <p><a href="index.php">Go to Piwik</a><br/> <a href="index.php?module=Login">Login</a></p> <ul> <li><a target="_blank" href="http://piwik.org">Piwik.org homepage</a></li> <li><a target="_blank" href="http://piwik.org/faq/">Piwik Frequently Asked Questions</a></li> <li><a target="_blank" href="http://piwik.org/docs/">Piwik Documentation</a></li> <li><a target="_blank" href="http://forum.piwik.org/">Piwik Forums</a></li> <li><a target="_blank" href="http://demo.piwik.org">Piwik Online Demo</a></li> </ul>
Output for 4.4.1
Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 105 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 105 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 106 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 106 <p><p><strong>To run Piwik you need at least PHP version 5.3.2</strong></p> <p>Unfortunately it seems your webserver is using PHP version 4.4.1. </p> <p>Please try to update your PHP version, Piwik is really worth it! Nowadays most web hosts support PHP 5.3.2.</p> <p>Also see the FAQ: <a href='http://piwik.org/faq/how-to-install/#faq_77'>My Web host supports PHP4 by default. How can I enable PHP5?</a></p></p> <p><a href="index.php">Go to Piwik</a><br/> <a href="index.php?module=Login">Login</a></p> <ul> <li><a target="_blank" href="http://piwik.org">Piwik.org homepage</a></li> <li><a target="_blank" href="http://piwik.org/faq/">Piwik Frequently Asked Questions</a></li> <li><a target="_blank" href="http://piwik.org/docs/">Piwik Documentation</a></li> <li><a target="_blank" href="http://forum.piwik.org/">Piwik Forums</a></li> <li><a target="_blank" href="http://demo.piwik.org">Piwik Online Demo</a></li> </ul>
Output for 4.4.0
Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 105 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 105 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 106 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 106 <p><p><strong>To run Piwik you need at least PHP version 5.3.2</strong></p> <p>Unfortunately it seems your webserver is using PHP version 4.4.0. </p> <p>Please try to update your PHP version, Piwik is really worth it! Nowadays most web hosts support PHP 5.3.2.</p> <p>Also see the FAQ: <a href='http://piwik.org/faq/how-to-install/#faq_77'>My Web host supports PHP4 by default. How can I enable PHP5?</a></p></p> <p><a href="index.php">Go to Piwik</a><br/> <a href="index.php?module=Login">Login</a></p> <ul> <li><a target="_blank" href="http://piwik.org">Piwik.org homepage</a></li> <li><a target="_blank" href="http://piwik.org/faq/">Piwik Frequently Asked Questions</a></li> <li><a target="_blank" href="http://piwik.org/docs/">Piwik Documentation</a></li> <li><a target="_blank" href="http://forum.piwik.org/">Piwik Forums</a></li> <li><a target="_blank" href="http://demo.piwik.org">Piwik Online Demo</a></li> </ul>
Output for 4.3.11
Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 105 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 105 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 106 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 106 <p><p><strong>To run Piwik you need at least PHP version 5.3.2</strong></p> <p>Unfortunately it seems your webserver is using PHP version 4.3.11. </p> <p>Please try to update your PHP version, Piwik is really worth it! Nowadays most web hosts support PHP 5.3.2.</p> <p>Also see the FAQ: <a href='http://piwik.org/faq/how-to-install/#faq_77'>My Web host supports PHP4 by default. How can I enable PHP5?</a></p></p> <p><a href="index.php">Go to Piwik</a><br/> <a href="index.php?module=Login">Login</a></p> <ul> <li><a target="_blank" href="http://piwik.org">Piwik.org homepage</a></li> <li><a target="_blank" href="http://piwik.org/faq/">Piwik Frequently Asked Questions</a></li> <li><a target="_blank" href="http://piwik.org/docs/">Piwik Documentation</a></li> <li><a target="_blank" href="http://forum.piwik.org/">Piwik Forums</a></li> <li><a target="_blank" href="http://demo.piwik.org">Piwik Online Demo</a></li> </ul>
Output for 4.3.10
Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 105 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 105 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 106 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 106 <p><p><strong>To run Piwik you need at least PHP version 5.3.2</strong></p> <p>Unfortunately it seems your webserver is using PHP version 4.3.10. </p> <p>Please try to update your PHP version, Piwik is really worth it! Nowadays most web hosts support PHP 5.3.2.</p> <p>Also see the FAQ: <a href='http://piwik.org/faq/how-to-install/#faq_77'>My Web host supports PHP4 by default. How can I enable PHP5?</a></p></p> <p><a href="index.php">Go to Piwik</a><br/> <a href="index.php?module=Login">Login</a></p> <ul> <li><a target="_blank" href="http://piwik.org">Piwik.org homepage</a></li> <li><a target="_blank" href="http://piwik.org/faq/">Piwik Frequently Asked Questions</a></li> <li><a target="_blank" href="http://piwik.org/docs/">Piwik Documentation</a></li> <li><a target="_blank" href="http://forum.piwik.org/">Piwik Forums</a></li> <li><a target="_blank" href="http://demo.piwik.org">Piwik Online Demo</a></li> </ul>
Output for 4.3.9
Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 105 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 105 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 106 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 106 <p><p><strong>To run Piwik you need at least PHP version 5.3.2</strong></p> <p>Unfortunately it seems your webserver is using PHP version 4.3.9. </p> <p>Please try to update your PHP version, Piwik is really worth it! Nowadays most web hosts support PHP 5.3.2.</p> <p>Also see the FAQ: <a href='http://piwik.org/faq/how-to-install/#faq_77'>My Web host supports PHP4 by default. How can I enable PHP5?</a></p></p> <p><a href="index.php">Go to Piwik</a><br/> <a href="index.php?module=Login">Login</a></p> <ul> <li><a target="_blank" href="http://piwik.org">Piwik.org homepage</a></li> <li><a target="_blank" href="http://piwik.org/faq/">Piwik Frequently Asked Questions</a></li> <li><a target="_blank" href="http://piwik.org/docs/">Piwik Documentation</a></li> <li><a target="_blank" href="http://forum.piwik.org/">Piwik Forums</a></li> <li><a target="_blank" href="http://demo.piwik.org">Piwik Online Demo</a></li> </ul>
Output for 4.3.8
Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 105 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 105 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 106 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 106 <p><p><strong>To run Piwik you need at least PHP version 5.3.2</strong></p> <p>Unfortunately it seems your webserver is using PHP version 4.3.8. </p> <p>Please try to update your PHP version, Piwik is really worth it! Nowadays most web hosts support PHP 5.3.2.</p> <p>Also see the FAQ: <a href='http://piwik.org/faq/how-to-install/#faq_77'>My Web host supports PHP4 by default. How can I enable PHP5?</a></p></p> <p><a href="index.php">Go to Piwik</a><br/> <a href="index.php?module=Login">Login</a></p> <ul> <li><a target="_blank" href="http://piwik.org">Piwik.org homepage</a></li> <li><a target="_blank" href="http://piwik.org/faq/">Piwik Frequently Asked Questions</a></li> <li><a target="_blank" href="http://piwik.org/docs/">Piwik Documentation</a></li> <li><a target="_blank" href="http://forum.piwik.org/">Piwik Forums</a></li> <li><a target="_blank" href="http://demo.piwik.org">Piwik Online Demo</a></li> </ul>
Output for 4.3.7
Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 105 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 105 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 106 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 106 <p><p><strong>To run Piwik you need at least PHP version 5.3.2</strong></p> <p>Unfortunately it seems your webserver is using PHP version 4.3.7. </p> <p>Please try to update your PHP version, Piwik is really worth it! Nowadays most web hosts support PHP 5.3.2.</p> <p>Also see the FAQ: <a href='http://piwik.org/faq/how-to-install/#faq_77'>My Web host supports PHP4 by default. How can I enable PHP5?</a></p></p> <p><a href="index.php">Go to Piwik</a><br/> <a href="index.php?module=Login">Login</a></p> <ul> <li><a target="_blank" href="http://piwik.org">Piwik.org homepage</a></li> <li><a target="_blank" href="http://piwik.org/faq/">Piwik Frequently Asked Questions</a></li> <li><a target="_blank" href="http://piwik.org/docs/">Piwik Documentation</a></li> <li><a target="_blank" href="http://forum.piwik.org/">Piwik Forums</a></li> <li><a target="_blank" href="http://demo.piwik.org">Piwik Online Demo</a></li> </ul>
Output for 4.3.6
Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 105 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 105 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 106 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 106 <p><p><strong>To run Piwik you need at least PHP version 5.3.2</strong></p> <p>Unfortunately it seems your webserver is using PHP version 4.3.6. </p> <p>Please try to update your PHP version, Piwik is really worth it! Nowadays most web hosts support PHP 5.3.2.</p> <p>Also see the FAQ: <a href='http://piwik.org/faq/how-to-install/#faq_77'>My Web host supports PHP4 by default. How can I enable PHP5?</a></p></p> <p><a href="index.php">Go to Piwik</a><br/> <a href="index.php?module=Login">Login</a></p> <ul> <li><a target="_blank" href="http://piwik.org">Piwik.org homepage</a></li> <li><a target="_blank" href="http://piwik.org/faq/">Piwik Frequently Asked Questions</a></li> <li><a target="_blank" href="http://piwik.org/docs/">Piwik Documentation</a></li> <li><a target="_blank" href="http://forum.piwik.org/">Piwik Forums</a></li> <li><a target="_blank" href="http://demo.piwik.org">Piwik Online Demo</a></li> </ul>
Output for 4.3.5
Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 105 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 105 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 106 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 106 <p><p><strong>To run Piwik you need at least PHP version 5.3.2</strong></p> <p>Unfortunately it seems your webserver is using PHP version 4.3.5. </p> <p>Please try to update your PHP version, Piwik is really worth it! Nowadays most web hosts support PHP 5.3.2.</p> <p>Also see the FAQ: <a href='http://piwik.org/faq/how-to-install/#faq_77'>My Web host supports PHP4 by default. How can I enable PHP5?</a></p></p> <p><a href="index.php">Go to Piwik</a><br/> <a href="index.php?module=Login">Login</a></p> <ul> <li><a target="_blank" href="http://piwik.org">Piwik.org homepage</a></li> <li><a target="_blank" href="http://piwik.org/faq/">Piwik Frequently Asked Questions</a></li> <li><a target="_blank" href="http://piwik.org/docs/">Piwik Documentation</a></li> <li><a target="_blank" href="http://forum.piwik.org/">Piwik Forums</a></li> <li><a target="_blank" href="http://demo.piwik.org">Piwik Online Demo</a></li> </ul>
Output for 4.3.4
Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 105 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 105 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 106 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 106 <p><p><strong>To run Piwik you need at least PHP version 5.3.2</strong></p> <p>Unfortunately it seems your webserver is using PHP version 4.3.4. </p> <p>Please try to update your PHP version, Piwik is really worth it! Nowadays most web hosts support PHP 5.3.2.</p> <p>Also see the FAQ: <a href='http://piwik.org/faq/how-to-install/#faq_77'>My Web host supports PHP4 by default. How can I enable PHP5?</a></p></p> <p><a href="index.php">Go to Piwik</a><br/> <a href="index.php?module=Login">Login</a></p> <ul> <li><a target="_blank" href="http://piwik.org">Piwik.org homepage</a></li> <li><a target="_blank" href="http://piwik.org/faq/">Piwik Frequently Asked Questions</a></li> <li><a target="_blank" href="http://piwik.org/docs/">Piwik Documentation</a></li> <li><a target="_blank" href="http://forum.piwik.org/">Piwik Forums</a></li> <li><a target="_blank" href="http://demo.piwik.org">Piwik Online Demo</a></li> </ul>
Output for 4.3.3
Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 105 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 105 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 106 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 106 <p><p><strong>To run Piwik you need at least PHP version 5.3.2</strong></p> <p>Unfortunately it seems your webserver is using PHP version 4.3.3. </p> <p>Please try to update your PHP version, Piwik is really worth it! Nowadays most web hosts support PHP 5.3.2.</p> <p>Also see the FAQ: <a href='http://piwik.org/faq/how-to-install/#faq_77'>My Web host supports PHP4 by default. How can I enable PHP5?</a></p></p> <p><a href="index.php">Go to Piwik</a><br/> <a href="index.php?module=Login">Login</a></p> <ul> <li><a target="_blank" href="http://piwik.org">Piwik.org homepage</a></li> <li><a target="_blank" href="http://piwik.org/faq/">Piwik Frequently Asked Questions</a></li> <li><a target="_blank" href="http://piwik.org/docs/">Piwik Documentation</a></li> <li><a target="_blank" href="http://forum.piwik.org/">Piwik Forums</a></li> <li><a target="_blank" href="http://demo.piwik.org">Piwik Online Demo</a></li> </ul>
Output for 4.3.2
Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 105 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 105 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 106 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl): failed to open stream: No such file or directory in /in/tMLOM on line 106 <p><p><strong>To run Piwik you need at least PHP version 5.3.2</strong></p> <p>Unfortunately it seems your webserver is using PHP version 4.3.2. </p> <p>Please try to update your PHP version, Piwik is really worth it! Nowadays most web hosts support PHP 5.3.2.</p> <p>Also see the FAQ: <a href='http://piwik.org/faq/how-to-install/#faq_77'>My Web host supports PHP4 by default. How can I enable PHP5?</a></p></p> <p><a href="index.php">Go to Piwik</a><br/> <a href="index.php?module=Login">Login</a></p> <ul> <li><a target="_blank" href="http://piwik.org">Piwik.org homepage</a></li> <li><a target="_blank" href="http://piwik.org/faq/">Piwik Frequently Asked Questions</a></li> <li><a target="_blank" href="http://piwik.org/docs/">Piwik Documentation</a></li> <li><a target="_blank" href="http://forum.piwik.org/">Piwik Forums</a></li> <li><a target="_blank" href="http://demo.piwik.org">Piwik Online Demo</a></li> </ul>
Output for 4.3.1
Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 105 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl) [http://www.php.net/function.file-get-contents]: failed to create stream: No such file or directory in /in/tMLOM on line 105 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 106 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl) [http://www.php.net/function.file-get-contents]: failed to create stream: No such file or directory in /in/tMLOM on line 106 <p><p><strong>To run Piwik you need at least PHP version 5.3.2</strong></p> <p>Unfortunately it seems your webserver is using PHP version 4.3.1. </p> <p>Please try to update your PHP version, Piwik is really worth it! Nowadays most web hosts support PHP 5.3.2.</p> <p>Also see the FAQ: <a href='http://piwik.org/faq/how-to-install/#faq_77'>My Web host supports PHP4 by default. How can I enable PHP5?</a></p></p> <p><a href="index.php">Go to Piwik</a><br/> <a href="index.php?module=Login">Login</a></p> <ul> <li><a target="_blank" href="http://piwik.org">Piwik.org homepage</a></li> <li><a target="_blank" href="http://piwik.org/faq/">Piwik Frequently Asked Questions</a></li> <li><a target="_blank" href="http://piwik.org/docs/">Piwik Documentation</a></li> <li><a target="_blank" href="http://forum.piwik.org/">Piwik Forums</a></li> <li><a target="_blank" href="http://demo.piwik.org">Piwik Online Demo</a></li> </ul>
Output for 4.3.0
Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 105 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl) [http://www.php.net/function.file-get-contents]: failed to create stream: No such file or directory in /in/tMLOM on line 105 Notice: Use of undefined constant PIWIK_INCLUDE_PATH - assumed 'PIWIK_INCLUDE_PATH' in /in/tMLOM on line 106 Warning: file_get_contents(PIWIK_INCLUDE_PATH/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl) [http://www.php.net/function.file-get-contents]: failed to create stream: No such file or directory in /in/tMLOM on line 106 <p><p><strong>To run Piwik you need at least PHP version 5.3.2</strong></p> <p>Unfortunately it seems your webserver is using PHP version 4.3.0. </p> <p>Please try to update your PHP version, Piwik is really worth it! Nowadays most web hosts support PHP 5.3.2.</p> <p>Also see the FAQ: <a href='http://piwik.org/faq/how-to-install/#faq_77'>My Web host supports PHP4 by default. How can I enable PHP5?</a></p></p> <p><a href="index.php">Go to Piwik</a><br/> <a href="index.php?module=Login">Login</a></p> <ul> <li><a target="_blank" href="http://piwik.org">Piwik.org homepage</a></li> <li><a target="_blank" href="http://piwik.org/faq/">Piwik Frequently Asked Questions</a></li> <li><a target="_blank" href="http://piwik.org/docs/">Piwik Documentation</a></li> <li><a target="_blank" href="http://forum.piwik.org/">Piwik Forums</a></li> <li><a target="_blank" href="http://demo.piwik.org">Piwik Online Demo</a></li> </ul>

preferences:
274.52 ms | 405 KiB | 380 Q