Note: You are currently viewing documentation for Moodle 2.4. Up-to-date documentation for the latest stable version of Moodle may be available here: Authentication FAQ.

Authentication FAQ: Difference between revisions

From MoodleDocs
(Since upgrading, users are reporting that they can no longer login. What should be done?)
(What is the difference between enabling the email-based self-registration authentication plugin and selecting it as the self registration method?)
Line 21: Line 21:


Note: The [[No authentication|No authentication (none)]] type should not be enabled on any production server. You can use phpmyadmin to convert all existing accounts created with 'none' to 'manual' or an admin can change the authentication type in [[Edit profile]].
Note: The [[No authentication|No authentication (none)]] type should not be enabled on any production server. You can use phpmyadmin to convert all existing accounts created with 'none' to 'manual' or an admin can change the authentication type in [[Edit profile]].
==What is the difference between enabling the email-based self-registration auth plugin and selecting it as the self registration method?==
The [[Email-based self-registration| email-based self-registration authentication plugin]] must be enabled to allow users who previously self-registered to login.
Selecting email-based self-registration as the self registration method allows potential users to self register.
Warning: Enabling self registration results in the possibility of spammers creating accounts in order to use forum posts, blog entries etc. for spam. This risk can be minimized by limiting self registration to particular email domains with the allowed email domains setting in ''Administration > Users > Authentication > [[Authentication|Manage authentication]]'' (or in ''Administration > Server > [[Email settings|Email]]'' prior to Moodle 1.9). Alternatively, self registration may be enabled for a short period of time to allow users to create accounts, and then later disabled.


==How can I create an authentication plugin?==
==How can I create an authentication plugin?==

Revision as of 13:24, 12 August 2008

What is an authentication plugin?

An authentication plugin is a method of handling user authentication i.e. enabling certain people to login to your Moodle site.

How do I set up LDAP authentication?

See LDAP authentication for full instructions.

How is the "No login" authentication plugin used?

The No login authentication plugin can be used to suspend particular user accounts. To do so:

  1. Access the user's profile page.
  2. Click the edit profile tab.
  3. Select "No login" as the authentication method. (If the setting isn't shown, click the "Show advanced" button to reveal it.)
  4. Click the "Update profile" button at the bottom of the page.

Since upgrading, users are reporting that they can no longer login. What should be done?

If users are unable to login following an upgrade to 1.8 or 1.9, then most likely their account authentication method, such as Email-based self-registration, requires enabling in Administration > Users > Authentication.

Note: The No authentication (none) type should not be enabled on any production server. You can use phpmyadmin to convert all existing accounts created with 'none' to 'manual' or an admin can change the authentication type in Edit profile.

What is the difference between enabling the email-based self-registration auth plugin and selecting it as the self registration method?

The email-based self-registration authentication plugin must be enabled to allow users who previously self-registered to login.

Selecting email-based self-registration as the self registration method allows potential users to self register.

Warning: Enabling self registration results in the possibility of spammers creating accounts in order to use forum posts, blog entries etc. for spam. This risk can be minimized by limiting self registration to particular email domains with the allowed email domains setting in Administration > Users > Authentication > Manage authentication (or in Administration > Server > Email prior to Moodle 1.9). Alternatively, self registration may be enabled for a short period of time to allow users to create accounts, and then later disabled.

How can I create an authentication plugin?

See Development:Authentication plugins.

See also