Warning: Unknown(): A session is active. You cannot change the session module's ini settings at this time. in Unknown on line 0
The only thing I can see being relevant is the use of session_set_save_handler as such inside of a PHP object.
if( !isset( $_COOKIE[ $sessid ] ) ){
$key = md5( uniqid( '' ) );
setcookie( $sessid, $key, ini_get( 'session.cookie_lifetime' ), ini_get( 'session.cookie_path' ), ini_get( 'session.cookie_domain' ) );
$_COOKIE[$sessid] = $key;
$this->sesskey = $key;
}
else{
$this->sesskey = $_COOKIE[$sessid];
}
@session_id( $this->sesskey );
@session_set_save_handler( array( &$this, 'open' ), array( &$this, 'close' ), array( &$this, 'read' ), array( &$this, 'write' ), array( &$this, 'destroy' ), array( &$this, 'gc' ) );
@session_start();
There is no session_start other than in this session classes code.
I have 75 Paypal USD for whoever solves this one
Any help appreciated.
Alex