1

I'm working on a website, and i found that some cookie expiration date are fixed to 1969.

My question is why?

enter image description here

Are these cookies persistent or null?

PS. I'm running Magento 1.9

Alfredo Lanzetta
  • 314
  • 4
  • 18

1 Answers1

0

try this one after the session_start function:

ini_set('session.cookie_lifetime', 30*60); 
ini_set('session.gc_maxlifetime', 30*60);

PHPSESSID appears to be persistent

Mr. Roger
  • 1
  • 4