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