Re: Moodle login after remote authentication
by Jess Portnoy. Thank you, Nathan. Appreciate your reply. I suppose I will implement something similar. Too bad there's no way to achieve this using the webservices but.. such is life
View ArticleRe: Moodle login after remote authentication
by Jess Portnoy. Just to update the thread in case anyone else is interested in a similar solution, what I ended up doing was:0. use my SSO system to auth 1. use Moodle webservices to check whether a...
View ArticleRe: Export certain Profile data to Wordpress or create an API
by Alejo de M. Hi Jim, I need to do a similar work. Did you have any success on working with wordpress and moodle. I'm trying to retrieve some profile and courses where the user is enrolled from...
View ArticleStep by step tutorial to create web service - create user - enrol user - REST
by Pavlos Spanidis. Here you will find clear instructions to create Web Services on Moodle.I am not a Moodle expert so this tutorial targets the users who are not so familiar with this process. I have...
View ArticleMoodle Authentication Using an External Web Service
by Luiz Peralba. Hi, Folks,I have an external web service for authentication in my company and I'd like to connect Moodle with it, but I'm not being able to do it.When I activate the web service...
View ArticleRe: Moodle Authentication Using an External Web Service
by Daniel Neis Araujo. Hello,as far as I know, the standard "webservices authentication" of Moodle is used to authenticate consumers of Moodle's webservices.If you are interested in authenticating...
View ArticleRe: core_user_create_users causes "active database transaction detected...
by Séverin Terrier. Hi,I had a similar problem with CAS authentication, launching moodle/auth/cas/cli/sync_users.php, exactly like in this thread.Problem resolved using more PHP memory (512M to 1024M...
View Articleusing web service from one moodle to another moodle
by Juwita W. I'm new with moodle and my senior ask me to do something.I'm using two moodle. One moodle for the student study at home, I called it moodle study, and one moodle for the test, I call it...
View ArticleRe: Moodle Authentication Using an External Web Service
by Daniel Neis Araujo. Hello,after you install the plugin, you should see the new settings, but if it not happen, got to the following URL on your...
View ArticleRe: using web service from one moodle to another moodle
by Daniel Neis Araujo. Hello,I've worked with a similar project.The solution we use is to export a backup file to the "study moodle".More technically, you can take a look at...
View ArticleRe: Moodle Authentication Using an External Web Service
by Luiz Peralba. Hi, Daniel,I tried to install it using plugin install option, but I got an error message of name mismatch.I unzipped, renamed plugin's main directory as "auth_ws" and tried again....
View ArticleRe: Moodle Authentication Using an External Web Service
by Daniel Neis Araujo. Hello,don't know about this install option, and because the plugin still is not on plugins database, it really should not work.You must put the code in moodle/auth/ws and it...
View ArticleRe: using web service from one moodle to another moodle
by Juwita W. Hi Daniel,I interest with your plugin. I would like to read the English version to know if I can implement it on the system. Thank you, Daniel for your answer.Regards,Juwita
View ArticleCan we please remove core_grade_get_grades webservice?
by Damyon Wiese. This function is confusing, pointless and buggy (passing wrong args to format_text etc) because it was originally added to get all the student grades from the course, but was...
View ArticleRe: Can we please remove core_grade_get_grades webservice?
by Tim Hunt. Do we have a good deprecation process for web service functions?If this was a Moodle internal API, we wouldImplement the new function / class / whatever API change.Modify the old...
View ArticleDetermining Cohorts that a User is a Member Of (Webservices)
by Scott Hardwick. After researching the Moodle webservices, I can not seem to find one that will return a listing of what cohorts a given user is a member of. Am I missing something? We can use...
View ArticleRe: Can we please remove core_grade_get_grades webservice?
by Damyon Wiese. We have deprecated webservices before - but usually with a replacement because they were wrongly named etc. The way this was done previously was just through the description of the...
View ArticleRe: Can we please remove core_grade_get_grades webservice?
by Damyon Wiese. And the reason I raised it is because I saw the code and it looked bonkers, so I spent 20 mins writing a unit test to prove it was bonkers, then went to create an issue, but found...
View ArticleRe: Can we please remove core_grade_get_grades webservice?
by Tim Hunt. Well, it definitely looks like we should deprecate this function, and create a non-bonkers function that does the job right.
View ArticleRe: Can we please remove core_grade_get_grades webservice?
by Juan Leyva. +1 to remove that functionAs an alternative, I implemented this function: https://github.com/moodle/moodle/blob/MOODLE_29_STABLE/grade/report/user/externallib.php#L64 to retrieve the...
View Article