Invision Community 4: SEO, prepare for v5 and dormant account notifications Matt November 11, 2024Nov 11
Posted August 22, 20159 yr Hello,I've discovered that using second option of Single Sign-on implementation (https://community.invisionpower.com/4docs/advanced-usage/development/single-sign-on-sso-r98/) leads me to a session problem.I am using a PHP framework named Yii2 Framework (www.yiiframework.com), and I've find out that the using the following snippet from the docs, do cause some conflicts regarding the framework session, as if the IPS Session would overwrite the framework session.<?php /** [...] **/ class SiteController extends Controller { public function actionIndex() { require_once('../../mygame.pt/forum/init.php'); \IPS\Session\Front::i(); // For example, if I would set these values in Session // they will not be remembered in next page $member_id = \IPS\Member::loggedIn()->member_id; $member_username = \IPS\Member::loggedIn()->name; $member_email = \IPS\Member::loggedIn()->email; echo $member_id . '<br>'; echo $member_username . '<br>'; echo $member_email . '<br>'; return $this->redirect( Url::to(['/test']) ); } } Is there any method I could use to stop overwriting the session? Or use the autoloader somehow?In the IPS3 version, I was able to achieve it without problems by changing the autoloader order:<?php spl_autoload_unregister(array('YiiBase','autoload')); require_once( '../initdata.php' );/*noLibHook*/ require_once( IPS_ROOT_PATH . 'sources/base/ipsRegistry.php' );/*noLibHook*/ require_once( IPS_ROOT_PATH . 'sources/base/ipsController.php' );/*noLibHook*/ $registry = ipsRegistry::instance(); $registry->init(); spl_autoload_register(array('YiiBase','autoload')); // [...] ?>Any ideas?
Archived
This topic is now archived and is closed to further replies.