Note: You are currently viewing documentation for Moodle 2.2. Up-to-date documentation for the latest stable version is available here: Authentication FAQ.

Authentication FAQ: Difference between revisions

From MoodleDocs
(How can I create an authentication plugin?)
(Since upgrading, users are reporting that they can no longer login. What should be done?)
Line 15: Line 15:
# Select "No login" as the authentication method. (If the setting isn't shown, click the "Show advanced" button to reveal it.)
# Select "No login" as the authentication method. (If the setting isn't shown, click the "Show advanced" button to reveal it.)
# Click the "Update profile" button at the bottom of the page.
# 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|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]].


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

Revision as of 13:09, 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.

How can I create an authentication plugin?

See Development:Authentication plugins.

See also