0

I'm getting the error "Cannot send session cache limiter" but the funny thing is that I check the status of the session before i called session_start().

if (session_status() == PHP_SESSION_NONE)
{
    session_start();
}

Is there any circumstances where the session_status would be bypassed?

Gottlieb Notschnabel
  • 9,408
  • 18
  • 74
  • 116
Ralph
  • 889
  • 14
  • 25

1 Answers1

2

don't print any outputs or write HTML before using sessions.