Note: You are currently viewing documentation for Moodle 2.9. Up-to-date documentation for the latest stable version of Moodle may be available here: error/moodle/coursenotupdated.

error/moodle/coursenotupdated: Difference between revisions

From MoodleDocs
(coursenotupdated error quick fix)
 
m (Added link to spanish translation of page)
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
The error message (remarkably void of instruction) confirms what you fear is correct... that the course has not been updated with your modifications. Meaning, however much time you spent on that course description... was lost (though if you click back now it still might be there). Minus the impression this grim error screen puts off I was able to find an obvious solution.  
The error message (remarkably void of instruction) confirms what you fear is correct... that the course has not been updated with your modifications. Meaning, however much time you spent on that course description... was lost (though if you click back now it still might be there). Minus the impression this grim error screen puts off, I was able to find an obvious solution.  


I received the "coursenotupdated" error while trying to edit a course under the settings link. My particular problem was solved by shorting the course title, as well as the short name. It appears that in the php/html files a max length is specified for these fields (most likely for other fields as well ). It is also probable that in the MySQL database, Moodle has limits for storing string lengths for course titles, short names et cetera.  
I received the "coursenotupdated" error while trying to edit a course under the settings link. My particular problem was solved by shorting the course title, as well as the short name. It appears that in the php/html files a max length is specified for these fields (most likely for other fields as well ). It is also probable that in the MySQL database, Moodle has limits for storing string lengths for course titles, short names et cetera.  
Line 8: Line 8:


-Sean
-Sean
[[Category:Error|Coursenotupdated]]
[[es:error/moodle/coursenotupdated]]

Latest revision as of 16:50, 7 August 2014

The error message (remarkably void of instruction) confirms what you fear is correct... that the course has not been updated with your modifications. Meaning, however much time you spent on that course description... was lost (though if you click back now it still might be there). Minus the impression this grim error screen puts off, I was able to find an obvious solution.

I received the "coursenotupdated" error while trying to edit a course under the settings link. My particular problem was solved by shorting the course title, as well as the short name. It appears that in the php/html files a max length is specified for these fields (most likely for other fields as well ). It is also probable that in the MySQL database, Moodle has limits for storing string lengths for course titles, short names et cetera.

The easiest solution is to shorten your title, short name, idnumber or any other field where it seems likely you are pushing the upward limits of the form fields character quota.

Hope this helps!

-Sean