I found out why my session_start function would give the error message.

This is because just before calling this function I would call the function
session_regenerate_id(true);
as in:

      // For security reasons renew the session id
      session_regenerate_id(true);

      session_start();

Somehow, and contrary to PHP4, Resin seems to start a session when calling
the function session_regenerate_id(true)

So I removed the call to session_regenerate_id(true); and it now works fine.
-- 
View this message in context: 
http://www.nabble.com/Starting-the-session-tp18148519p18169493.html
Sent from the Resin mailing list archive at Nabble.com.



_______________________________________________
resin-interest mailing list
resin-interest@caucho.com
http://maillist.caucho.com/mailman/listinfo/resin-interest

Reply via email to