Yeah... Its like connecting 110V device to 220V source - well maybe not that much, but still if your hosting company doesnt met Joomla requirements - its Your own risk.
I have small workaround, but if You will get into troubles later, You have be warned
Edit the file:
/installation/index.php and add a simple line at line 13:
- Code: Select all
ini_set('display_errors', '0');
so entire header's beginning looks this way:
- Code: Select all
<?php
/**
* @package Joomla.Installation
*
* @copyright Copyright (C) 2005 - 2012 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
if (version_compare(PHP_VERSION, '5.3.1', '<'))
{
die('Your host needs to use PHP 5.3.1 or higher to run this version of Joomla!');
}
ini_set('display_errors', '0');
/**
* Constant that is checked in included files to prevent direct access.
* define() is used in the installation folder rather than "const" to not error for PHP 5.2 and lower
*/
define('_JEXEC', 1);
It might help wit Your issue, but still its workaround of your hosting configuration problem which should be solved in first place.