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.
Related
I am having some issues with my Drupal 7.
Because of a different bug I am having with component or panel, one that is taking over pages and hiding other parts of a page somehow, my login page has been corrupted.
what is supposed to be my /user and/or user/login page looks completely as it should not look. The username and password prompt and input fields are missing because of a component which needs to be removed. This component has somehow managed to cover or hide the thing I need.
The bug that has caused this problem is beyond the scope of this post but I believe that it is probably a requirement to log into the admin panel in order to fix the issue.
How do I log in if I can not get the login prompt page to come up as it should?
drush
You can request a one time login link for any user account using the drush command user-login :
drush user-login <uid|username|email>
It's aliased uli and default to 1 (admin), the following has probably saved millions of drupal devs ;) :
drush uli
Services module
You can also login "RESTFully" via cURL or equivalent by submitting a POST request to the appropriated endpoint without loading the form. You just need the services module.
Login remotely to Drupal 7 site using services
Authenticated Request with cURL
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.
I am using DotNetNuke 6.2.6 , and recently got stuck in one issue , I do not want my users to receive random password after they reset their password (forgot password), Instead I want to send them password reset link. I could not find any settings under Web.Config or under host settings. I did some research but the articles I found that referred to DNN7 . On DNN website I found only this link http://www.dnnsoftware.com/wiki/page/password-reset-links. Registration mode is verified.
I think that you will need to upgrade to DNN 7 to get this functionality.
Iowa Computer Gurus (iowacomputergurus.com) has a module that provides this functionality if you are not able to upgrade.
I'm a Drupal newbie, but have successfully installed it at a CentOS 5.5 Linux, PostgreSQL 8.4.7, PHP 5.3 machine.
I've chosen minimal installation and then enabled following modules: Block, Image, Locale, OpenID (hope to add Google accounts later...) and Search. The User module etc. are enabled by default anyway.
My problem is:
I don't know how to add Gender/City fields and make them mandatory.
As a SPAM-fighting measure at my old phpBB 3 site I have a mandatory question for new users about their gender: Robot/Male/Female and the first answer is default and prevents the new user from registering.
Is it possible to do the same in Drupal 7?
And I hope it is doable without installing any additional modules as the stock install is easier to update. (That is what I was doing with my old phpBB site - with no mods installed).
Thank you for your answers! Alex
UPDATE:
Here is my Field module screenshot, does it look ok?
Maybe my problem is that List is shown as disabled?
First, note that there is a huge difference between Drupal modules and phpBB mods. Drupal provides API's which allows modules to integrate with Drupal without changing any code. You can just download them into a folder, enable and they are running.
And yes, what you are trying to do is possible without any additional modules. Just go to admin/config/people/accounts/fields, add a Gender field of Type "List (text)" (If that is not available, you might need to enable it, but it part of Drupal core), then, enter the allowed values and on the second page, check the "required" and "shown on registration form" checkboxes and you are good to go.
We have following scenario. We have 2 websites one is in asp.net and 2nd in Joomla 1.5.
We want SSO from Joomla to ASP.Net site. Integration Flow as below:
1) Joomla site will have Menu Item named with "Join ASP.Net Site"
2) When Logged in User clicks on the Link we need to pass URL along with Logged in UserName in Joomla
E.g. www.abc.com?username=MNP (here, MNP is username of the Joomla user who has clicked the link.) if user xyz is logged in then we need link as
www.abc.com?username=xyz
cCn somone provide the help how to create this?
Thanks
Regards
Jigar Shah
Now, my question is that
Look at CAS from ja-sig which has clients for both .Net and for PHP
Joomla has a CAS authentication plugin.
Wiki docs at https://wiki.jasig.org/display/CASUM/Home