Try this ... change the file:
/zc_install/application_top.php
and change the code to read:
* Timezone detection
*/
if (PHP_VERSION >= '5.3' && ini_get('date.timezone') == '')
{
die('ERROR: date.timezone not set in php.ini. Please contact your hosting company to set the timezone in the server PHP configuration before continuing.');
} elseif (PHP_VERSION >= '5.1') {
$baseTZ = date_default_timezone_get();
date_default_timezone_set($baseTZ);
unset($baseTZ);
}
/*
* check settings for, and then turn off magic-quotes support, for both runtime and sybase, as both will cause problems if enabled
Does that allow your installer to work? :unsure: