Moodle Plugins directory: Elcentra Social Login | Moodle.org
Elcentra Social Login
Authentication ::: auth_elcentra
Maintained by elcentra admin
Updated! This plugin gives you an easy way of letting your users login through their Facebook, Twitter, Google, LinkedIn and VKontakte (New!) accounts.
Latest release:
35 sites
15 downloads
27 fans
Current versions available: 1
Once installed and configured, this plugin offers a hassle free method for Admins & end users. Accounts get created without any additional action from the admin.
Elcentra Social Login authenticates via:
- Facebook
- Twitter
- Google
- LinkedIn
- VKontakte (New!)
Contributors
elcentra admin (Lead maintainer)
Please login to view contributors details and/or to contact them
1. On fb login - as I am just using fb login its only capturing email and name from response code ... is there any way at least country can captured too.. with possible extension for picture in future ...
2. If author can only explain the login flow .. I guess many good things can be added to plugin .. as I am still confuse when it takes from fbreponse file to auth file ... and what happens after that
but in general good work !!!
error_reporting(E_ALL);
in twitter_request.php because was causing the error
Internal server error 500
Good plugin!
I'm now using another authentication (linkedin) plugin. This plugin adds the Linkedin picture. Could this be added in your plugin?
Best regards
Bert
I have installed this plugin and in status saying "To be installed". I'm getting this message both in 2.5 and 2.6 versions
The plugin is great and works as per description. I wanted to know is there any way to stop self registration throught this plugin. (may be some code modifications) I will like to allow access to only those users who have been added by admin.
The users got only a white screen when trying to login. Activating debug mode gave some tips.
In the script moodle/auth/elcentra/googleresponse.php line 26: "require_once '../../lib/pluginlib.php';". (A kind of file not found error)
Since https://tracker.moodle.org/browse/MDL-46122 , that file is not needed anymore. So deleting the line is OK.
Next error is class "plugin_manager" is not defined (line 47): "$pluginManager = plugin_manager::instance();"
A quick view to moodle/lib/classes/pluginmanager.php shows that the new name for the class is "core_plugin_manager", so udpadtin the line 47 of moodle/auth/elcentra/googleresponse.php whit this content: "$pluginManager = core_plugin_manager::instance();" will resolve the issue.
Cheers.