2
votes
2answers
368 views

How to manually create an user in Moodle?

I am trying to create an authentication plugin, but I am having problems when the user does not exist in moodle database. Therefore I am trying to find a way to manually create an user. I tried: ...
0
votes
1answer
427 views

Moodle Authentication Plugin. What am I missing?

I am trying to manually authenticate an user in moodle using authentication plugins, but I don't understand everything that is needed for the whole process to work. So, some suggestions on what I am ...
0
votes
1answer
206 views

Url login on Moodle

I would like to make it possible to redirect users from a site to my Moodle installation, providing two encrypted parameters in the url. Based on these parameter, Moodle should authenticate the users ...
0
votes
2answers
806 views

Single-sign on options for MS CRM dynamics

I'm looking into having services like Moodle and Drupal integrate with my MS CRM database of users and authenticate against it. So far, other than a webservices API I can build on (which sounds like ...
4
votes
3answers
1k views

Magento and Moodle Integration

I have a project which requires me to setup an subscription-based online learning site using Moodle. I checked Moodle and it seems that it can handle this by itself. The problem is, the client won't ...
0
votes
1answer
123 views

moodle auth using contextid in array

Can anyone shed any light as to why this is not working: $USER->id == logged in userid $contextroles = get_records_sql("SELECT userid FROM {$CFG->prefix}role_assignments WHERE contextid = 23 ...
1
vote
2answers
417 views

Authentication without password on Moodle

Actually I am trying to integrate my system with moodle. I need a functionality that supposed to work like that: Login into my system (same username as in moodle db) User decide to switch to moodle, ...
1
vote
1answer
768 views

Need help debugging a custom authentication plugin for Moodle

I'm trying to authenticate against the user db of my website (CMS based) and it uses a slightly different approach at storing hashed passwords. It uses a randomly generated salt for each user. The ...