1.5.1 installation trouble

hello there,

I’m having a problem with a 1.5.1 installation : after uploading the complete piwik folder to my website, I’m opening the piwik URL and but the installation page won’t show up.

Instead, the browser wants to open or download a *.part file (such as OEc0l8Cl.part) which complete content is :

<?php

/**

define(‘PIWIK_DOCUMENT_ROOT’, dirname(FILE)==‘/’?‘’:dirname(FILE));
if(file_exists(PIWIK_DOCUMENT_ROOT . ‘/bootstrap.php’))
{
require_once PIWIK_DOCUMENT_ROOT . ‘/bootstrap.php’;
}

error_reporting(E_ALL|E_NOTICE);
@ini_set(‘display_errors’, (!defined(‘PIWIK_DISPLAY_ERRORS’) || PIWIK_DISPLAY_ERRORS) ? 1 : 0);
@ini_set(‘xdebug.show_exception_trace’, 0);
@ini_set(‘magic_quotes_runtime’, 0);

if(!defined(‘PIWIK_USER_PATH’))
{
define(‘PIWIK_USER_PATH’, PIWIK_DOCUMENT_ROOT);
}
if(!defined(‘PIWIK_INCLUDE_PATH’))
{
define(‘PIWIK_INCLUDE_PATH’, PIWIK_DOCUMENT_ROOT);
}

require_once PIWIK_INCLUDE_PATH . ‘/libs/upgradephp/upgrade.php’;
require_once PIWIK_INCLUDE_PATH . ‘/core/testMinimumPhpVersion.php’;

// NOTE: the code above this comment must be PHP4 compatible

session_cache_limiter(‘nocache’);
@date_default_timezone_set(‘UTC’);
require_once PIWIK_INCLUDE_PATH .‘/core/Loader.php’;

if(!defined(‘PIWIK_ENABLE_ERROR_HANDLER’) || PIWIK_ENABLE_ERROR_HANDLER)
{
require_once PIWIK_INCLUDE_PATH .‘/core/ErrorHandler.php’;
require_once PIWIK_INCLUDE_PATH .‘/core/ExceptionHandler.php’;
set_error_handler(‘Piwik_ErrorHandler’);
set_exception_handler(‘Piwik_ExceptionHandler’);
}

if(!defined(‘PIWIK_ENABLE_DISPATCH’) || PIWIK_ENABLE_DISPATCH)
{
$controller = Piwik_FrontController::getInstance();
$controller->init();
$controller->dispatch();
}

Thanks for your help, I can’t make it work nor find out where it comes from…

Matt

Make sure your server has all piwik requirements: Piwik Requirements - Analytics Platform - Matomo