BigBlueButton BN
Certified Integration
Maintained by
Jesus Federico, Frederick Dixon
Integrate BigBlueButton within Moodle - including record and playback of sessions.
Comments
Comments are no longer open for new posts. Existing comments remain available to read.
test-install is not meant to be used for production, even though you can run all your tests having full capabilities. For production you should have you own server or a host your sessions somewhere else. (see http://www.bigbluebutton.org/commercial-support/)
Regarding to the error message, well it is very clear. You are not using a supported version. You can either upgrade you Moodle at least to 2007101591.12 (see http://docs.moodle.org/dev/Releases#Moodle_1.9), or you can try changing this restriction editing the version.php file. Although there is no warranty that the plugin is going to work in that version. there are too many changes between versions. I would suggest you to upgrade.
Good luck.
Congratulations for a grate job!!!
I´v installed an activity in my moodle 2.5 and it works!
Some quiestions:
1. Can I use the BigBlueButton test server for my real conferences or I have to install in my server?
2. I have another moodle 1.9 that doesn´t allow to install the activity:
I have an error:
The module "bigbluebuttonbn" (2013071000) could not be installed because it requires a newer version of Moodle (this version is 2007101509, and the module requires 2007101591.12).
If you need further help please go to the forums. Either opening an new thread at http://moodle.org/mod/forum/view.php?id=7797 or with a post on the corresponding one to the release you are experiencing problems. http://moodle.org/mod/forum/discuss.php?d=208959 It will be easier to follow up there.
Also, if you think you found a bug that can be reproduced please add an issue with more details on the tracking system http://tracker.moodle.org/browse/CONTRIB/component/12231
I'm testing BBB module in a Moodle 2.5.1 (Build: 20130708) site before to pass it to production, but every time I try to enter into a BBB activity, I'm getting the following error:
"Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, webmaster@predinsa.miscursos.net and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request."
I have my BBB server running (with demo examples) working fine with a 0.81-beta2 version.
If you need to try this are the credentials of the administrator:
URL: http://predinsa.miscursos.net/moodle25/
Username: admin
Password: administrador.
Thanks in advance for any help.
German
I don't know if anyone else is experiencing a problem but the activity completion tracking is not currently working for the Big Blue Button module with Moodle 2.4.
However, please help me understand what is recorded, is it just slides or also audio and annotation? I am just seeing slides and not other content. From the sessions recorded. I'd gladly screen share as you have suggested but wanted to start with a better general understanding of the capabilities. This is not clearly documented yet.
Perhaps change the code of function bigbluebuttonbn_wrap_simplexml_load_file($url) in locallib.php solve the problem and say "the server or salt are not correct"
diff --git a/mod/bigbluebuttonbn/locallib.php b/mod/bigbluebuttonbn/locallib.php
index 515a072..32c435a 100644
--- a/mod/bigbluebuttonbn/locallib.php
+++ b/mod/bigbluebuttonbn/locallib.php
@@ -272,16 +272,20 @@ function bigbluebuttonbn_getMeetingXML( $meetingID, $URL, $SALT ) {
}
function bigbluebuttonbn_wrap_simplexml_load_file($url){
-
- if (extension_loaded('curl')) {
+
+ libxml_use_internal_errors(true);
+
+ if (extension_loaded('curl')) {
$c = new curl();
$c->setopt( Array( "SSL_VERIFYPEER" => true));
$response = $c->get($url);
-
- if($response)
- return (new SimpleXMLElement($response, LIBXML_NOCDATA));
- else
+
+ $doc = simplexml_load_string($response);
+
+ if( !$doc )
return false;
+ else
+ return (new SimpleXMLElement($response, LIBXML_NOCDATA));
} else {
return (simplexml_load_file($url,'SimpleXMLElement', LIBXML_NOCDATA));
25 de abr, 01:27
My moodle installation has moodle version 1.9.5, and I installed the old version 2012032600 of bigbluebuttonbn for moodle 1.9 that cannot download any more.
We are migrating from moodle 1.9.5 installation to moodle 2.4, so we want to update the bigbluebuttonbn too, and the meetings.
When I try to update de module it's fail with this code:
Upgrading to new version
You are not logged in. (Login)
mod_bigbluebuttonbn
22:/var/www/html/estandar/mdlv229/mod/bigbluebuttonbn/db/upgrade.phpoldversion:2012032600
25:/var/www/html/estandar/mdlv229/mod/bigbluebuttonbn/db/upgrade.phpoldversion:2012032600
50:/var/www/html/estandar/mdlv229/mod/bigbluebuttonbn/db/upgrade.phpoldversion:2012032600
74:/var/www/html/estandar/mdlv229/mod/bigbluebuttonbn/db/upgrade.phpoldversion:2012032600
76:/var/www/html/estandar/mdlv229/mod/bigbluebuttonbn/db/upgrade.phpoldversion:2012032600
Field "welcome" does not exist in table "bigbluebuttonbn"
More information about this error
Stack trace:
line 627 of /lib/ddl/database_manager.php: ddl_field_missing_exception thrown
line 81 of /mod/bigbluebuttonbn/db/upgrade.php: call to database_manager->change_field_type()
line 540 of /lib/upgradelib.php: call to xmldb_bigbluebuttonbn_upgrade()
line 271 of /lib/upgradelib.php: call to upgrade_plugins_modules()
line 1437 of /lib/upgradelib.php: call to upgrade_plugins()
line 269 of /admin/index.php: call to upgrade_noncore()
The code begins with XX:filename are debug that I wil write to know and trace what line of code will execute
It would be a field name "welcolme" that dosen exist and the code try to update.
I will probe with the latest source of version bigbluebuttonbn, any helps will be apreciated.
Thank's and regards.
Thanks for the feedback.
I am really interested in the use case you are pointing but as this is not a forum , I kindly invite you to add a new discussion topic into the forums https://moodle.org/mod/forum/view.php?id=7797. That by the way is the right place for following up issues like this.
Also, I remind you that the right place to report bugs or ask for new features is the Moodle tracking system https://tracker.moodle.org/browse/CONTRIB/component/12231
Best regards,