You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi We are trying to set up a simple plugin to redirect users in a specific group after they login.
We have created a user plugin that triggers onUserAfterLogin it seems to work fine until we switch on the SSO options when it seems to stop firing the event?
class PlgUserAutouserforward extends JPlugin
{
public function onUserAfterLogin($options)
{
code to check and trigger redirect
}}
we have tried switching to
class PlgLdapAutouserforward extends JPlugin
{
public function onUserAfterLogin($options)
{
code to check and trigger redirect
}} which doesn't seem to work
and using onUserLogin seems to trigger on every page rather than Just the first time!
can anyone advise? is there something obviously wrong that we are doing?
The text was updated successfully, but these errors were encountered:
Hi We are trying to set up a simple plugin to redirect users in a specific group after they login.
We have created a user plugin that triggers onUserAfterLogin it seems to work fine until we switch on the SSO options when it seems to stop firing the event?
class PlgUserAutouserforward extends JPlugin
{
public function onUserAfterLogin($options)
{
code to check and trigger redirect
}}
we have tried switching to
class PlgLdapAutouserforward extends JPlugin
{
public function onUserAfterLogin($options)
{
code to check and trigger redirect
}} which doesn't seem to work
and using onUserLogin seems to trigger on every page rather than Just the first time!
can anyone advise? is there something obviously wrong that we are doing?
The text was updated successfully, but these errors were encountered: