There has been an error processing your request: magento installation
After installing Magento, installation fails. There is error commenting
There has been an error processing your request
Exception printing is disabled by default for security reasons.
Error log record number: 281887837
This issue specially comes on localhost. Please forgive me if I left anything out.
You have not do much more for this problem.
Open this file ‘app\code\core\Mage\Core\Model\Session\Abstract\varien.php’ and comment these lines, from line no. 77 to 98
$this->getCookie()->getDomain(),
$this->getCookie()->isSecure(),
$this->getCookie()->getHttponly()
and
if (!$cookieParams['httponly']) {
unset($cookieParams['httponly']);
if (!$cookieParams['secure']) {
unset($cookieParams['secure']);
if (!$cookieParams['domain']) {
unset($cookieParams['domain']);
}
}
}
if (isset($cookieParams['domain'])) {
$cookieParams['domain'] = $cookie->getDomain();
}
I hope this will help you.



