Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorMartin Keckeis <martin.keckeis1@gmail.com>2014-08-28 16:54:06 +0400
committerMartin Keckeis <martin.keckeis1@gmail.com>2014-08-28 16:54:06 +0400
commita9c30c67102b2d9f25bb7c30678aa97a34ab0914 (patch)
treeaa094a8f693f46ab836029a37fc5d7b7604c6603 /core
parentbaf92dd481c9f19400db1b9dafb4a3220d331c19 (diff)
Removing pre PHP 5.3 checks
Diffstat (limited to 'core')
-rw-r--r--core/testMinimumPhpVersion.php13
1 files changed, 0 insertions, 13 deletions
diff --git a/core/testMinimumPhpVersion.php b/core/testMinimumPhpVersion.php
index 5df0950b37..06fd498a0e 100644
--- a/core/testMinimumPhpVersion.php
+++ b/core/testMinimumPhpVersion.php
@@ -10,7 +10,6 @@
/**
* 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 = '';
@@ -26,12 +25,6 @@ if ($minimumPhpInvalid) {
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>.
@@ -44,12 +37,6 @@ if ($minimumPhpInvalid) {
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 (!function_exists('json_encode')) {
- $piwik_errorMessage .= "<p><strong>Piwik requires the php5-json extension which provides the functions <code>json_encode()</code> and <code>json_decode()</code></strong></p>
- <p>It appears your PHP has not yet installed the php5-json extension.
- To use Piwik, please ask your web host to install php5-json or install it yourself, for example on debian system: <code>sudo apt-get install php5-json</code>. <br/>Then restart your webserver and refresh this page.</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"