Can't create categories on Chamilo 1.11.26 (PHP error) #5163
Unanswered
a-mian-lateral
asked this question in
General
Replies: 1 comment 1 reply
-
It is advisable to search Chamilo's Github repository (html_filter) and check if there are commits with the same topic #4916 - Course categories creation breaks Check here: It was resolved. You can apply the patch to your installation by modifying the line in the main/inc/global.inc.php file |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, sorry to bother you again, but I'm still trying to get familiar with Chamilo and I'm facing another problem.
I have 3 installations, two in a vps with plesk and another in my local machine, in my local machine and in one of the installations in plesk I cannot create a category because of this error:
Fatal error: Uncaught Error: Call to undefined function html_filter() in /var/www/html/public/main/inc/lib/course_category.lib.php:199
Digging into the code, I discovered that the php file in which the function is defined is not included (I checked with
get_included_files()
).If I manually include the file right before the line with the error then the creation process ends up fine
require_once __DIR__ . "/formvalidator/FormValidator.class.php";
I am pretty sure there are no differences between the three instances, I mean the code and the production environment are always the same.
Beta Was this translation helpful? Give feedback.
All reactions