YAFLogo

mikeoasis
  • mikeoasis
  • 56.8% (Neutral)
  • YAF Forumling Topic Starter YAF Version: newinstall
2 years ago
This should be drop-dead simple, but I can't even locate where the login is authenticated so I can override the YAF authentication - can someone show me where to start?
Sponsor
mikeoasis
  • mikeoasis
  • 56.8% (Neutral)
  • YAF Forumling Topic Starter YAF Version: newinstall
2 years ago
Just to report my progress, I think others may benefit:

Found the method I was looking for:

SignIn()

YetAnotherForum.NET\Dialogs\LoginBox.ascx.cs

 

mikeoasis
  • mikeoasis
  • 56.8% (Neutral)
  • YAF Forumling Topic Starter YAF Version: newinstall
2 years ago
This is now working great - there are 2 points of validation:

1. as previous stated, within the Login submit, and

2. in the board_init, if there is a Token in the querystring we log the user in (and create him if needed)

Thanks so much!

dlee
  • dlee
  • 51.4% (Neutral)
  • YAF Forumling YAF Version: 3.1.5
2 years ago

This is now working great - there are 2 points of validation:

1. as previous stated, within the Login submit, and

2. in the board_init, if there is a Token in the querystring we log the user in (and create him if needed)

Thanks so much!

Originally Posted by: mikeoasis 

I need to find out how to do this. Can you provide more info?