SleepWalker / hoauth

yii-hoauth provides simple integration with social network authorisation lib Hybridauth in Yii.
Other
59 stars 35 forks source link

Problem on Login #35

Closed mvofreire closed 10 years ago

mvofreire commented 10 years ago

Hi! i'm test your extension and liked very much! but i have a problems on login. Yii send this message -- Illegal string offset 'php_session_id' -- The error

FILE = hybridauth\Hybrid\Storage.php(30)

public function config($key, $value=null) 26 { 27 $key = strtolower( $key );
28 29 if( $value ){ 30 $_SESSION["HA::CONFIG"][$key] = serialize( $value ); 31 } 32 elseif( isset( $_SESSION["HA::CONFIG"][$key] ) ){ 33 return unserialize( $_SESSION["HA::CONFIG"][$key] );
34 } 35 36 return NULL; 37 }