During installation, Magento produces the following error:
Database server does not support the InnoDB storage engine.
I\'ve fix
Putting this up for anyone thats using the downloader.php currently bundled in the 1.9.1.0 installer.
If you're happy that your MySQL Database does support InnoDB (It's the DEFAULT) in later versions. You can safely edit the file to remove the check and all the download to take place.
/**
* Check availabe InnoDB on database.
*
* @return Magento_Downloader_Validator
*/
protected function _checkDbInnoDb()
{
if (!$this->_connection) {
return $this;
}
$this->addMessage('Database server supports InnoDB storage engine');
return $this;
}