OwlCyberSecurity - MANAGER
Edit File: logout.php
<?php require_once './config/config.php'; // session_start(); // <-- REMOVE THIS LINE! It's already started in content.php session_destroy(); // This will destroy the session that was started in content.php if(isset($_COOKIE['series_id']) && isset($_COOKIE['remember_token'])){ clearAuthCookie(); } header('Location:content.php?page=login'); // <-- CHANGE THIS! Redirect to content.php, asking it to show the login page. exit; ?>