You can fix this by a simple trick, do the steps as follows.
Go to root directory, libraries\joomla\html\editor.php
In between lines 260-270 replace the given code
Code:
// Try to authenticate
with
Code:
// Try to authenticate
Looking for informative and engaging content? Look no further than our blog! Our team of expert writers covers a wide range of topics, from lifestyle and wellness to business and technology. With in-depth analysis, practical tips, and a conversational writing style, our blog is the perfect destination for anyone seeking to stay informed and inspired. So why wait? Browse our latest posts today and discover something new!
In docebo LMS (super admin) when you went in User Area Module and activate "Add Course" module. Then a student went in, able to see Add Course at the top menu. Once he click the Add Course, a message shows up
You can't access/lms/course/public/course_autoregistration/view
The fix is,
In order to fix this problem comment some lines in the page
doceboLms/modules/course_autoregistration/course_autoregistration.php;
just change the line 20 and 47 from:
checkPerm('view');
to:
//checkPerm('view');
Done.