Chamilo Lms
Chamilo is a learning management system focused on ease of use and accessibility
Install / Use
npx skills add chamilo/chamilo-lmsInstalls into whichever agent you are using.
README
Chamilo 3
Chamilo is an e-learning platform (also called "LMS" for Learning Management System) published under the GNU/GPLv3+ license. It has been used by more than 40M people worldwide since its start in 2010.
Chamilo offers a wide range of features, including:
- Announcements
- API for integration with other systems (HR, SIS, ERP, e-commerce, ...)
- Assignments (create, hand in, grade, co-grade with AI, integration with plagiarism check, ...)
- Attendance tracking (take attendance, Qualiopi reporting, multilevel attendance, signing, ...)
- Calendar events (with reminders and subscriptions)
- Content Management System capabilities (CMS: manage pages, menus)
- Course administration (create, edit, delete, publish, export, import from Moodle, ...)
- Course catalogue (e-commerce module, course search, catalogue filtering by user groups)
- Documents (including integration with OnlyOffice for documents viewing and collaboration)
- E-learning multimedia modules support (video, 360° video, audio, images, ...)
- File sharing (upload, download, share, ...)
- Forum (create, post, reply, peer review, ...)
- Learning paths (create, manage, ...)
- Live chat (at course level or global, including AI chatbot)
- GDPR compliance (GDPR-ready, export of personal data, ...)
- Gradebook (including generation of badges and certificates with QR codes)
- Learning analytics (progress, course completion, participation, average time spent, average score, auditing, ...)
- Groups/Classes (at course or global level)
- Multilingual support (60+ languages fully translated, including RTL support)
- Plugins for advanced features
- Quizzes (20+ question types, random selection with categories, adaptative tests, time limits, co-creation with AI, proctoring tools integration, ...)
- Roles and permissions management (beta)
- Rooms and branches for in-person courses
- SCORM 1.2, QTI, LTI, xAPI CMI 5, Aiken, and other standards compliant formats
- Security features (password policy and rotation, 2FA/MFA authentication, HSTS, regular updates, IDS, ...)
- Sessions management (re-use courses multiple times, add structure to long-term courses management chaos)
- Skills management (create, edit, delete, assign to users, scale/levels of acquisition, ...)
- Student profiles (edit personal data, change password, subscribe to push notifications, ...)
- Style customization (easy color changes, custom CSS, custom logo, ...)
- Surveys (create, take, analyse)
- Upgrades from previous versions and import of existing courses from other LMS
- Videoconference through integrations / Realtime collaboration
- ...
Note: AI features (with support for OpenAI, Grok, Gemini, Claude and DeepSeek models) and other integrations do require active subscriptions to, or availability of, external services/applications.
Try it out
You can try out Chamilo at https://campus.chamilo.net/ (use the "Teach courses" option to give yourself creation rights).
Quick install
IMPORTANT Chamilo 3.0 is in its validation phase right now. The installation procedure below is for reference only. For a stable Chamilo, please install Chamilo 2.x. See the 2.0 branch's README.md for details.
Minimum hardware requirements
Server
You will need:
- 2 vCPUs
- 4GB RAM
- 4GB free disk space
Chamilo 3.0 has been tested on a 2 vCPUs, 2GB RAM virtual machine under Ubuntu 24.04 and has been shown to work, but to
build the development environment, you will need at least 4GB RAM.
At this stage, we haven't made any load testing to evaluate the number of users that could use the system simultaneously.
Remember this is an alpha version. As such, it will run in "dev" mode (see the .env file), considerably more slowly the "prod" mode.
Client
Any recent computer with a recent (no older than 5y) browser should do.
Minimal software stack requirements
You should have:
- A web server with a virtualhost in a domain or subdomain (not in a subfolder inside a domain with another application).
- A working PHP configuration with PHP 8.3, 8.4 or 8.5
- MariaDB 10 or higer (alternatively, MySQL 5.7 or higher can also be used)
Software stack installation (Ubuntu)
You can install Chamilo using 3rd party installers like Softaculous, Installatron, DigitalOcean marketplace, etc. and skip the following steps.
These are instructions for a fictitious my.chamilo.net domain, with a
chamilo database and DB user, on your own self-managed server.
Please adapt the commands below accordingly.
These instructions are meant for a standalone public server, with no additional component needed. These do not include setting up SSL certificates. We leave the latter to you.
If using VMs, spawn an Ubuntu Server (24.04 LTS or later) VM.
Login through SSH with admin permissions through sudo. Otherwise, just use
the sudo command as needed on your own server.
Install the software stack and Chamilo using the commands below.
sudo apt update && sudo apt -y upgrade
sudo apt install -y apache2 libapache2-mod-php mariadb-client mariadb-server php-{apcu,bcmath,cli,curl,dev,gd,intl,ldap,mbstring,mysql,redis,soap,xml,zip} unzip curl
sudo mysql -e "CREATE USER chamilo@localhost IDENTIFIED BY 'chamilo';"
sudo mysql -e "GRANT ALL PRIVILEGES ON chamilo.* TO chamilo@localhost;"
cd /var/www
sudo wget https://github.com/chamilo/chamilo-lms/releases/download/v2.0.3/chamilo-2.0.3.tar.gz
sudo tar zxf chamilo-2.0.3.tar.gz
cd chamilo
sudo cp public/main/install/apache.dist.conf /etc/apache2/sites-available/my.chamilo.net.conf
# Edit /etc/apache2/sites-available/my.chamilo.net.conf to match your domain name
sudo a2ensite my.chamilo.net
sudo a2enmod rewrite ssl headers expires
sudo touch .env
sudo chown -R www-data: .env config/ var/
sudo systemctl restart apache2
# Open http://my.chamilo.net in your browser to go through the installation wizard
# Complete the installation information using DB credentials chamilo/chamilo/chamilo and the default host and port
# Done
Note: PHP's LDAP extension is only required if you need to connect to LDAP or a compatible system, or if you want to install Chamilo from sources (see CONTRIBUTING.md), but in principle it should not add any overhead to the system if you don't use it.
Installing from sources
See CONTRIBUTING.md for details.
Web installer
Once the above is ready, use your browser to load the URL you have defined for your host, e.g. https://my.chamilo.net
(this should redirect you to main/install/index.php) and follow the UI instructions (database, admin user settings, etc).
After the web install process, change the permissions back to a reasonably safe state:
chown -R root: .env config/
Your Chamilo is ready to use!
Configuration
Most configuration changes are made through the administration page inside Chamilo's web interface, but the database connection
and other settings critical to the Symfony layer are located in the .env file at the root of Chamilo.
Other core, Symfony-related, settings for advanced administration are located in the config/packages/ folder (*.yaml files),
but remember that these files are updated with each new version of Chamilo. Instead of modifying those directly, it is
highly recommended to copy them into the config/packages/prod/ folder and modifying them there (for your production
environment). This will improve maintainability through different Chamilo upgrades in the future.
Documentation
For more information on Chamilo, visit https://3.chamilo.org/documentation/index.html For Chamilo usage documentation, most of the documentation at https://docs.chamilo.org/ is up to date.
JWT Authentication
This version of Chamilo allows you to use a JWT (token) to use the Chamilo API more securely. In order to use it, you will have to generate a JWT token as follows.
- Run
php bin/console lexik:jwt:generate-keypair
Related Skills
mcp
Use the `mcp_perplexity-ask_perplexity_search` tools to answer questions. You should use this instead of the `web_search` tool because it is a lot more accurate.
practical-power-systems-synthesis
This skill enables synthesis in the domain of power-systems (engineering). It represents research-level-level expertise and is designed for production use in research, industry, and educational contexts. Use this skill when you need to perform synthesis operations related to power-systems.
semi-supervised-optogenetics-testing
This skill enables testing in the domain of optogenetics (neuroscience). It represents intermediate-level expertise and is designed for production use in research, industry, and educational contexts. Use this skill when you need to perform testing operations related to optogenetics.
data-mining-interpretation-fundamental
This skill enables interpretation in the domain of data-mining (data-science). It represents fundamental-level expertise and is designed for production use in research, industry, and educational contexts. Use this skill when you need to perform interpretation operations related to data-mining.

