I have a site on a Drupal 7 and I need to add some SSO functionality. So I configured SimpleSAMLphp and installed the simplesamlphp_auth module.
The problem is the module just swaps the links to login form with its own (/saml_login). And I kinda want it to use the old login form to have seamless experience because it's so modal, beautiful and such.
Could someone maybe explain to me how it can be achieved? Or am I missing something and completely do not understand how IDPs and SPs work?
Thanks a lot!
You should still be able to login in user/login.
If you want to disable the login at saml_login you can unset this with hook_menu_alter, disabling the route "saml_login" like this:
unset($items['saml_login']);
Or modifiying it's access:
$items['saml_login']['access callback'] = false;
Keep in mind that simplesamlphp_auth is an example module, so you should build your own module from this code and adjust it to your needs.
Hope that helps.
PD: if you need more details just tell me.
Related
I have problems when I force reset passwords for my website users.
When I use this option, the next time the user logs in it will be prompted to change the password. My website link is something like this: Server/MyPortal.
When users login instead of taking them to:
Server/MyPortal/default.aspx?ctl=PasswordReset&resetToken...
They are redirected to:
Server/default.aspx?ctl=PasswordReset&resetToken...
Which obviously takes them to a 404 not found page because it is missing MyPortal.
Can anyone please shed some light on me and help me to fix this? Thank you very much!
Ivan
What version of DNN are you on?
I would look at
Are you on the latest version
Are your Portal Aliases configured properly. To tell this, login as a Super User, go to the Admin/Site Settings page for the portal in question, find the Portal Aliases section, I believe that is under the Advanced tab. See if you have a misconfigured alias in there.
Another thing you might check, would be to check the Language files (admin/languages) to see if the password reset email could be modified there to include the proper portal URL. When editing language files in DNN you can edit System, Host, or Site.
You likely want to edit the SITE level if you have other websites running as well. Site level edits will only apply to that individual portal.
I would like to allow users of my Drupal site to send anonymous email to each other but have not found a module that does this. Coding is likely not an option for me for this issue as I'm both new to Drupal and don't know PHP.
Does anyone know if there is a module to help with this?
If there are no modules then code I will. Any example code or recommended learning resources would be appreciated.
Thanks.
Could something like this work? It is a private messaging addon, allowing users to communicate on the site, it also provides users with the option "notify-by-email". Assuming i understood your question. Anonymous as in not able to see each others e-mail.
I want to remove the login functionality of wordpress and add a custom login function that would check the username and password from my own database and accordingly display the admin,editor etc page. Please guide me through this process.
Thanks in advance
Honest question: why? You can customize the WP login process quite a bit, and it handles much of the heavy lifting for you.
Here's a toolkit I built for custom login pages and more: http://cferdinandi.github.io/web-app-starter-kit/
i am trying to setup a webmail login page into wordpress nevertheless i havent found a way to do it, i've admit i'm wordpress rookie so i might be thinking things wrong, do you have any advice how to proceed?
Is there any plugin that enables a webmail login?
I'm afraid that the easiest way to do this would be to write your own plugin. It's very easy to make a plugin that adds an optiosn page and then edit the options page to reflect the webmail login.
http://codex.wordpress.org/Writing_a_Plugin
Something like this?
http://www.matrich.net/wordpress-plugins/wp-cpanel-email-login-plugin.htm
Can any one please tell me the steps to be followed or how to configure and also to add Openid module in drupal 4.7.x.
It would be great if i can get detail steps of adding & configuring it as i am very new to this. Please help me.
Ok now i am getting both Openid login form & as well as User Login form of Drupal 4.7 in the same page.
Can we show as i shown below. Please anyone help me in this...
User Login
Log in using OpenID: ( Labels)
Username: * ( Labels)
Log In ( Button)
Cancel OpenID login ( Links)
Create New account ( Links)
Request New Password ( Links)
Is it possible to get the Log In form in the above mentioned way. If yes can anyone tell me what we need to do to get the User Login form in the above mentioned format. What all configuration or changes in code is requied to achieve this.
get it from http://drupal.org/node/109013 and install and configure as usual.
EDIT: that being said, be advised that both Drupal 4.7 and the 4.7 version of the openid module are not being maintained anymore and contain severe security issues. if you don't want your website to be taken over, upgrade to Drupal 5 or (better) 6 and use the maintained and secure openid modules of these versions. Drupal 6 even has openid in core.