piwik 不显示安装页面
piwik don't show install page
我在 debian 上安装了 piwik,但是当转到 piwik.my_domain_name 时,配置页面不显示并且显示以下信息。
><?php
>/**
>* Piwik - free/libre analytics platform
> *
>* @link http://piwik.org
> * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
>*
> * @package Piwik
> */`enter code here`
>if (!defined('PIWIK_DOCUMENT_ROOT')) {
> define('PIWIK_DOCUMENT_ROOT', dirname(__FILE__) == '/' ? '' : >
dirname(__FILE__));
}
if (file_exists(PIWIK_DOCUMENT_ROOT . '/bootstrap.php')) {
require_once PIWIK_DOCUMENT_ROOT . '/bootstrap.php';
}
if (!defined('PIWIK_INCLUDE_PATH')) {
define('PIWIK_INCLUDE_PATH', PIWIK_DOCUMENT_ROOT);
}
>require_once PIWIK_INCLUDE_PATH . '/core/bootstrap.php';
>if (!defined('PIWIK_PRINT_ERROR_BACKTRACE')) {
define('PIWIK_PRINT_ERROR_BACKTRACE', false);
}
>require_once PIWIK_INCLUDE_PATH . '/core/dispatch.php';
您以某种方式在 Piwik index.php
文件中插入了一堆额外的 >
符号以及文本 `enter code here`
。此外,您似乎没有在您的网络服务器上配置 PHP。
在您的 Web 服务器上安装 PHP,然后解压缩 Piwik 的新副本。
apt-get install php5 libapache2-mod-php5 php5-mcrypt
这个命令解决了我的问题。
我在 debian 上安装了 piwik,但是当转到 piwik.my_domain_name 时,配置页面不显示并且显示以下信息。
><?php
>/**
>* Piwik - free/libre analytics platform
> *
>* @link http://piwik.org
> * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
>*
> * @package Piwik
> */`enter code here`
>if (!defined('PIWIK_DOCUMENT_ROOT')) {
> define('PIWIK_DOCUMENT_ROOT', dirname(__FILE__) == '/' ? '' : >
dirname(__FILE__));
}
if (file_exists(PIWIK_DOCUMENT_ROOT . '/bootstrap.php')) {
require_once PIWIK_DOCUMENT_ROOT . '/bootstrap.php';
}
if (!defined('PIWIK_INCLUDE_PATH')) {
define('PIWIK_INCLUDE_PATH', PIWIK_DOCUMENT_ROOT);
}
>require_once PIWIK_INCLUDE_PATH . '/core/bootstrap.php';
>if (!defined('PIWIK_PRINT_ERROR_BACKTRACE')) {
define('PIWIK_PRINT_ERROR_BACKTRACE', false);
}
>require_once PIWIK_INCLUDE_PATH . '/core/dispatch.php';
您以某种方式在 Piwik index.php
文件中插入了一堆额外的 >
符号以及文本 `enter code here`
。此外,您似乎没有在您的网络服务器上配置 PHP。
在您的 Web 服务器上安装 PHP,然后解压缩 Piwik 的新副本。
apt-get install php5 libapache2-mod-php5 php5-mcrypt
这个命令解决了我的问题。