Friday 1 August 2014

I have installed magento on my localhost. After installing I tried to login as admin i can't be able to login using Google chrome browser but in Firefox its working fine . Any one can help me to sort out this problem?

Magento database and removing the following lines from the core_config_data table:
web/cookie/cookie_path
web/cookie/cookie_domain
web/cookie/cookie_httponly
To find these values you can use the following SELECT command:
SELECT * FROM core_config_data WHERE path LIKE "%web/cookie%";
Thereafter,
DELETE FROM core_config_data WHERE config_id in (xx,xx,xx) where X is the config_id reference of the core_config_data table.

                                                       OR

insert into core_config_data(scope, scope_id, path, value) values("default", "0", "web/cookie/cookie_httponly", "0");

No comments:

Post a Comment