Do the following steps to Correct the above issue
Steps
1) Wamp server.
2) Windows XP/7
2) Windows XP/7
a) Drop database.
b) Delete app/etc/local.xml file.
c) In place of localhost I use 127.0.0.1
d) Go to app\code\core\Mage\Core\Model\Session\Abstract\Varien.php
//comment the lines for localhost no need for development server.
// session cookie params
$cookieParams = array(
‘lifetime’ => $cookie->getLifetime(),
‘path’ => $cookie->getPath() //, remove the coma
// ‘domain’ => $cookie->getConfigDomain(),
// ‘secure’ => $cookie->isSecure(),
// ‘httponly’ => $cookie->getHttponly()
);
e) I add one line in index.php at start of file
set_time_limit (18000);
b) Delete app/etc/local.xml file.
c) In place of localhost I use 127.0.0.1
d) Go to app\code\core\Mage\Core\Model\Session\Abstract\Varien.php
//comment the lines for localhost no need for development server.
// session cookie params
$cookieParams = array(
‘lifetime’ => $cookie->getLifetime(),
‘path’ => $cookie->getPath() //, remove the coma
// ‘domain’ => $cookie->getConfigDomain(),
// ‘secure’ => $cookie->isSecure(),
// ‘httponly’ => $cookie->getHttponly()
);
e) I add one line in index.php at start of file
set_time_limit (18000);
now installation work good
0 comments:
Post a Comment
Thanks for your valuable Comment