Skip to content
Advertisement

Warning: session_destroy(): Trying to destroy uninitialized session

my class.inc file:

JavaScript

used code for my logout:

JavaScript

When the logout function is called, it destroys the session, but shows the warning:

JavaScript

I am unable to troubleshoot, as the session is not being destroyed by any other means before the session_destroy() of class.inc.

Advertisement

Answer

You have to call the function mentioned below at the top your logout function in the logout class.

JavaScript

Add the above function and try it out. If you don’t start the session at the top of your file, it will throw exceptions like “headers already sent”, “can’t start the session”, etc.

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement