octubre 19, 2016

Error recalculando calificación Moodle

Para corregir el recalculando calificaciones en moodle cuando solo sale el 100% y el botón continuar se puede usar el siguiente procedimiento:


SELECT * FROM `mdl_grade_items` WHERE `courseid` = 2818 AND `needsupdate` = 1;

After all the field names listed and a bunch of lines you should see two numbers - something like this:

| 4789 |     2818 |
where the first number is the id and the second is the courseid number - in this example the id is 4789

With this information use the folowing URL to go directly to the custom grade item:

https://yourMoodleURL/grade/edit/tree/calculation.php?courseid=2818&id=4789&gpr_type=edit&gpr_plugin=tree&gpr_courseid=2818


Fuente: https://moodle.org/mod/forum/discuss.php?d=336933

No hay comentarios:

¿Cómo poner el conteo de las filas en una consulta en MySql?

 ¿Cómo poner el conteo de las filas en una consulta en MySql? SELECT  @rownum := @rownum + 1 AS contador,  /*Contador*/ t.*  /* nombre d...