I'm using PHP 5.3 and there is a problem in install/index.php and in inc/header.inc.php.
PHP5.3 deprecates set_magic_quotes_runtime(); So you get an error when you run the install or the site with out fixing it. Easiest fix is to change error_reporting in both files:
if (version_compare(phpversion(), "5.2", ">") == 1)
{
error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED);
}
else
{
error_reporting(E_ALL & ~E_NOTICE);
}
E_DEPRECATED only became available in 5.3. Note that there are several other deprecated items that cause errors if you don't change the error_reporting so this is a general fix.