jweierman
Forum Replies Created
-
Now that’s service! Thank you. Works perfectly.
Forum: Plugins
In reply to: [Force Login] miniOrange SAML plugin integrationWe think we’re on the right track. Is there a way to change this code to redirect to a URL of our choosing instead of the wp-login page?
function v_forcelogin() {
// Redirect if ( preg_replace( '/\?.*/', '', $url ) != preg_replace( '/\?.*/', '', wp_login_url() ) && ! in_array( $url, $whitelist ) && ! $bypass ) { $redirect_url = apply_filters( 'v_forcelogin_redirect', $url ); wp_safe_redirect( wp_login_url( $redirect_url ), 302 ); exit;Forum: Plugins
In reply to: [Force Login] miniOrange SAML plugin integrationUnfortunately, it didn’t seem to work. It still directs me to the wordpress login screen.
I’ll play with it a bit more now that I know where to modify the code and see what I can do and will post any updates here.
Thanks for your help.
Forum: Plugins
In reply to: [Force Login] miniOrange SAML plugin integrationminiOrange places a link on our page that directs the user through an SSO process.
When using Force Login, the login screen that is forced is a wordpress login, rather than directing them through the SSO process.
Maybe it’s too general of a question as I don’t have as much knowledge of the SSO functionality (our IT Team helped get it functioning), but does that help clarify? Will the code you suggested above help return the functionality from the SSO rather than the wordpress login?
I’ll ping our IT Team and have them review this as well with any other input they can share.
Forum: Plugins
In reply to: [Force Login] Using this plugin with OAuth/SSOHey Kevin, I’m using miniOrange SAML 2.0 SSO plugin to login and authenticate new users. Is there a way to use Force Plugin with that? Currently, your plugin forces users to a wp-admin screen, which won’t accept SSO credentials.
- This reply was modified 7 years, 11 months ago by jweierman. Reason: added notification and corrected typo