Single Sign On in WordPress
Single Sign On in WordPress
Single Sign On in WordPress
I stumbled upon this module called OpenAM Authentication that I’m going to experiment with on a development server. Merely reading the plugin’s FAQ page has me very hopeful
1. Do I need to define a new URL for handling the $_POST request? No, you don’t need to define new URL. 2. Which action hook do I need to use for handling such a request? You can use init hook. Sample code function my_theme_send_email() { if ( isset( $_POST[’email-submission’] ) && ‘1’ == $_POST[’email-submission’] … Read more
To answer your question, yes, WordPress could work. WordPress permission system is built on roles and capabilities. To manage your permissions, you can use a plugin such as the User Role Editor.
I have integrated the same functionality you mentioned almost 1.5 years back. Unfortunately there is no easy way or single plugin which will do all these. Note your plugin selections are correct.
I am assuming you already have a working SAML IdP. If so then it is a matter of configuring the SP (Service Provider). Once those two criteria are set it is just a matter of figuring out the best plugin that meets your requirements: 1) custom plugin: Does exactly what you need but you need … Read more
Let’s assume that we have two websites, mentioned in your question – abc.com, xyz.abc.com, and their table prefixes are – ab_, xy_. Requirements Both websites must be installed within the same domain. Both websites must share the same database using different table prefixes. Both websites must share user tables ( ex. ab_users, ab_usermeta ). Websites’ … Read more
I want to signin from first wordpress site to other wordpress website without registration..without using network mode
I ended up making the whole WP site private except to logged in users by using a plugin (Ultimate Member). Then I created a single login which would be used from the .Net site. The way it works is: User clicks on link within .Net site to access WordPress site Server-side: performs POST to /wp-login.php … Read more
This is a pretty complicated setup. I would recommend using https://github.com/psignoret/aad-sso-wordpress.