In checking the php memory, its currently set to 128, I would have thought that was large enough.....
Is there a specific size it should be set to ?
i doubled the PHP memory to 256M and that still did not make a difference.
The session lifetime is set to 7200 seconds, that's two hours....
Still does not make a difference.....
Remember this is ONLY happening with IE; and I have the cookie setting set to wide open, so I'm at a loss as to what this problem is..... but I'm really disappointed right now.
Ok so I made those changes, logged out and now I can't log in from ANY BROWSER again.
I'm sorry but I'm really getting to the point I'm thinking Mageno is just broken.
I have never had this much trouble with a product.
This is such BS, I'm sorry - I'm frustrated. I didn't fall off a turnip truck last night, but there is absolutely no reason why any package should have this much trouble.
I'm having this problem too. Anynew information about this? Any solution?
Here I have the same issue.
Any solution???
same issue here, not able to login into admin as well as front end. not able to add product in cart with IE only. using magento 1.9.2.4, not found any solution.
I have solved this by changing base url in core_config, localhost by 127.0.0.1
Two things to consider:
Do NOT use host name localhost as base url, because browsers do not save cookies for localhost. Use 127.0.0.1 if you have to -- better yet, use something like localhost.dev or whatever (you need to modify hosts file for that).
When you can't log in and there's no error message, try with your browsers incognito / anonymous mode. Or clean your cookies. Using incognito mode is simpler (it basically starts a session with clean slate).
Hope this helps.
If you cant login with IE try add any sleep(1) after post and before auth. something like
if (strpos($_SERVER['HTTP_USER_AGENT'],'11.0') !== false){
sleep(1);
}