Loading...
 
Skip to main content

BigBlueButton fails to load

Status
Closed
Subject
BigBlueButton fails to load
Version
11.x
Category
  • Usability
Feature
Friendship network (Community)
Resolution status
New
Submitted by
robert4dejure
Lastmod by
robert4dejure
Rating
(0)
Description

BigBlueButton fails to load and exits at this url:

/tiki-ajax_services.php?controller=bigbluebutton&action=join

I have traced it to the following function in /lib/core/Services/Broker.php:

private function attemptProcess($controller, $action, $request)
{

if $controller" class="wiki wikinew text-danger tips isset">$this->controllerMap$controller {
$controllerClass = $this->controllerMap$controller;
$handler = new $controllerClass;
$method = 'action_' . $action;

if (method_exists($handler, $method)) {

if (method_exists($handler, 'setUp')) {
$handler->setUp();
}
return $handler->$method($request);

} else {
throw new Services_Exception(tr('Action not found (%0 in %1)', $action, $controller), 404);
}
} else {
throw new Services_Exception(tr('Controller not found (%0)', $controller), 404);
}
}


the code stops functioning at this line of code:

return $handler->$method($request);

Importance
7
Easy to solve?
6
Priority
42
Demonstrate Bug on Tiki 19+
Demonstrate Bug (older Tiki versions)
Ticket ID
4708
Created
Saturday 31 August, 2013 19:50:15 UTC
by robert4dejure
LastModif
Saturday 31 August, 2013 20:22:01 UTC


Show PHP error messages