Wednesday 11 June 2003 5:50:29 pm
I'm trying to integrate ez's login and registration with a forum script. The problem is that when I call removeSessionVariable (possibly setSessionVariable too), the script just stops, and my apache error log says "[notice] child pid ### exit signal Illegal instruction (4)". Here's an example of the code I'm using:
include_once( "lib/ezutils/classes/ezhttptool.php" );
$http =& eZHTTPTool::instance(); $http->removeSessionVariable( "eZUserLoggedInID" ); I've included ezsession.php already. Do I need to include something else too, or is there something else I need to do to get this working?
|