On about 4 pages I have a session_start() function
This gave me the error / notice :
A session had already been started - ignoring session_start()
So I changed it to
if (!isset($_SESSION['UID'])) { session_start(); }
But I still get the notice, as it will start a session with every user that is not logged in.
I'm stuck on how to avoid this error / notice. Suggestions would be welcomed
If I look into the cookies set, then I do see a PHPSESSID cookie, my guess is to work with that, but all my tryouts failed.
Name PHPSESSID
Value kcap0jo4tfe7r7q0pboo1qp3p3
Host www.mysite.com
Path /
Secure No
Expires At End Of Session