Angel Fernando Quiroz Campos 72f639dba8 Remove participants from BBB room #1502 | il y a 7 ans | |
---|---|---|
.. | ||
lang | il y a 8 ans | |
lib | il y a 7 ans | |
resources | il y a 8 ans | |
README.md | il y a 8 ans | |
admin.php | il y a 8 ans | |
admin.tpl | il y a 7 ans | |
ajax.php | il y a 8 ans | |
changelog.md | il y a 8 ans | |
config.php | il y a 10 ans | |
config.vm.dist.php | il y a 10 ans | |
course_index.php | il y a 10 ans | |
cron.php | il y a 8 ans | |
index.php | il y a 8 ans | |
install.php | il y a 8 ans | |
listing.php | il y a 8 ans | |
listing.tpl | il y a 8 ans | |
plugin.php | il y a 8 ans | |
readme.txt | il y a 8 ans | |
start.php | il y a 8 ans | |
uninstall.php | il y a 8 ans |
This plugin allows you to have videoconference rooms in each course. It requires you to have a BigBlueButton videoconference server installed on another server (ideally). Check www.bigbluebutton.org for more about BigBlueButton.
For Chamilo 1.10.x, the Videoconference plugin has two new settings options: Enable global conference and Enable conference in course groups.
You need execute this SQL query en your database after making the migration process from 1.9.x.
ALTER TABLE plugin_bbb_meeting ADD voice_bridge int NOT NULL DEFAULT 1;
ALTER TABLE plugin_bbb_meeting ADD group_id int unsigned NOT NULL DEFAULT 0;
ALTER TABLE plugin_bbb_meeting ADD user_id int unsigned NOT NULL DEFAULT 0;
ALTER TABLE plugin_bbb_meeting ADD access_url int NOT NULL DEFAULT 1;
For the version 2.5 you need execute these SQL queries
CREATE TABLE plugin_bbb_room (
id int NOT NULL AUTO_INCREMENT PRIMARY KEY,
meeting_id int(10) unsigned NOT NULL,
participant_id int(11) NOT NULL,
in_at datetime NOT NULL,
out_at datetime NOT NULL,
FOREIGN KEY (meeting_id) REFERENCES plugin_bbb_meeting (id),
FOREIGN KEY (participant_id) REFERENCES user (id)
);
ALTER TABLE plugin_bbb_meeting ADD video_url TEXT NULL;
ALTER TABLE plugin_bbb_meeting ADD has_video_m4v TINYINT NOT NULL DEFAULT 0;