Deprecated: Creation of dynamic property plgSystemEasyblogComposer::$doc is deprecated in /home/messiahdevformat/public_html/plugins/system/easyblogcomposer/easyblogcomposer.php on line 27

Deprecated: Creation of dynamic property plgSystemEasyblogComposer::$app is deprecated in /home/messiahdevformat/public_html/plugins/system/easyblogcomposer/easyblogcomposer.php on line 28

Deprecated: Creation of dynamic property EasyBlogRequest::$app is deprecated in /home/messiahdevformat/public_html/administrator/components/com_easyblog/includes/request/request.php on line 23

Deprecated: Creation of dynamic property EasyBlogRequest::$input is deprecated in /home/messiahdevformat/public_html/administrator/components/com_easyblog/includes/request/request.php on line 24

Deprecated: Creation of dynamic property plgSystemEasyblogComposer::$input is deprecated in /home/messiahdevformat/public_html/plugins/system/easyblogcomposer/easyblogcomposer.php on line 29
Joomla\CMS\Table\Table::getDatabase(): Return value must be of type Joomla\Database\DatabaseInterface, EasyBlogDbJoomla returned (500 Whoops, looks like something went wrong.)

TypeError TypeError

HTTP 500 Whoops, looks like something went wrong.

Joomla\CMS\Table\Table::getDatabase(): Return value must be of type Joomla\Database\DatabaseInterface, EasyBlogDbJoomla returned

Exceptions 2

TypeError

  1. *
  2. * @note This method will be removed in 7.0 and DatabaseAwareTrait will be used instead.
  3. */
  4. protected function getDatabase(): DatabaseInterface
  5. {
  6. return $this->getDbo();
  7. }
  8. /**
  9. * Set the database.
  10. *
  1. * @throws \RuntimeException
  2. * @throws \UnexpectedValueException
  3. */
  4. public function load($keys = null, $reset = true)
  5. {
  6. $db = $this->getDatabase();
  7. // Pre-processing by observers
  8. $event = AbstractEvent::create(
  9. 'onTableBeforeLoad',
  10. [
  1. $registry = new JRegistry($raw);
  2. if (!defined('EASYBLOG_COMPONENT_CLI')) {
  3. // Get config stored in db
  4. $table = EB::table('Configs');
  5. $table->load('config');
  6. // Load the stored config as a registry
  7. $stored = new JRegistry($table->params);
  8. $registry->merge($stored);
  1. {
  2. public static function buildRoute(&$query)
  3. {
  4. $segments = array();
  5. $config = EB::config();
  6. // index.php?option=com_easyblog&view=latest
  7. if (isset($query['view']) && $query['view'] == 'latest') {
  8. unset($query['view']);
  9. }
EasyBlogRouterBase::buildRoute(array('option' => 'com_easyblog', 'view' => 'latest', 'Itemid' => '229')) in /home/messiahdevformat/public_html/components/com_easyblog/router.php (line 1328)
  1. */
  2. class EasyblogRouter extends Joomla\CMS\Component\Router\RouterBase
  3. {
  4. public function build(&$query)
  5. {
  6. $segments = EasyBlogRouterBase::buildRoute($query);
  7. return $segments;
  8. }
  9. public function parse(&$segments)
  10. {
EasyblogRouter->build(array('option' => 'com_easyblog', 'view' => 'latest', 'Itemid' => '229')) in /home/messiahdevformat/public_html/libraries/src/Router/SiteRouter.php (line 450)
  1. $item = empty($query['Itemid']) ? null : $this->menu->getItem($query['Itemid']);
  2. // Build the component route
  3. $component = preg_replace('/[^A-Z0-9_\.-]/i', '', $query['option']);
  4. $crouter = $this->getComponentRouter($component);
  5. $parts = $crouter->build($query);
  6. $tmp = trim(implode('/', $parts));
  7. // Build the application route
  8. if ($item !== null && $query['option'] === $item->component) {
  9. if (!$item->home) {
SiteRouter->buildSefRoute(object(SiteRouter), object(Uri)) in /home/messiahdevformat/public_html/libraries/src/Router/Router.php (line 446)
  1. if (!\array_key_exists('build' . $stage, $this->rules)) {
  2. throw new \InvalidArgumentException(\sprintf('The %s stage is not registered. (%s)', $stage, __METHOD__));
  3. }
  4. foreach ($this->rules['build' . $stage] as $rule) {
  5. \call_user_func_array($rule, [&$this, &$uri]);
  6. }
  7. }
  8. /**
  9. * Create a uri based on a full or partial URL string
Router->processBuildRules(object(Uri)) in /home/messiahdevformat/public_html/libraries/src/Router/Router.php (line 205)
  1. // Do the preprocess stage of the URL build process
  2. $this->processBuildRules($uri, self::PROCESS_BEFORE);
  3. // Do the main stage of the URL build process
  4. $this->processBuildRules($uri);
  5. // Do the postprocess stage of the URL build process
  6. $this->processBuildRules($uri, self::PROCESS_AFTER);
  7. $this->cache[$key] = clone $uri;
Router->build('index.php?Itemid=229') in /home/messiahdevformat/public_html/libraries/src/Router/Route.php (line 150)
  1. if (!isset(self::$_router[$client])) {
  2. throw new \RuntimeException(Text::sprintf('JLIB_APPLICATION_ERROR_ROUTER_LOAD', $client), 500);
  3. }
  4. // Build route.
  5. $uri = self::$_router[$client]->build($url);
  6. $scheme = ['path', 'query', 'fragment'];
  7. /*
  8. * Get the secure/unsecure URLs.
  9. *
Route::link('site', 'index.php?Itemid=229', false, 0, false) in /home/messiahdevformat/public_html/libraries/src/Router/Route.php (line 99)
  1. }
  2. $app = Factory::getApplication();
  3. $client = $app->getName();
  4. return static::link($client, $url, $xhtml, $tls, $absolute);
  5. } catch (\RuntimeException) {
  6. /**
  7. * @deprecated 3.9 this method will not fail silently from 6.0
  8. * Before 3.9.0 this method failed silently on router error. This B/C will be removed in Joomla 6.0
  9. */
  1. );
  2. }
  3. if (!$link) {
  4. $url = false;
  5. } elseif ((strpos($link, 'index.php?') !== false) && strcasecmp(substr($link, 0, 4), 'http')) {
  6. $url = Route::_($link, false, $params->get('secure'));
  7. } else {
  8. $url = Route::_($link, false);
  9. }
  10. $item->url($url);
Menu->createMenuItem(array('yaml_path' => 'more/all-news-items'), object(MenuItem)) in /home/messiahdevformat/public_html/libraries/gantry5/src/classes/Gantry/Framework/Menu.php (line 383)
  1. // Menu item is not in YAML file.
  2. $data = ['yaml_path' => $path];
  3. }
  4. $map[$data['yaml_path']] = $id;
  5. $item = $this->createMenuItem($data, $menuItem);
  6. $list[$item->id] = $item;
  7. }
  8. // Create particles which are only inside the menu YAML.
  9. foreach ($pathLookup as $path => $data) {
Menu->createMenuItems(array(object(MenuItem), object(MenuItem), object(MenuItem), object(MenuItem), object(MenuItem), object(MenuItem), object(MenuItem), object(MenuItem), object(MenuItem), object(MenuItem), object(MenuItem), object(stdClass), object(stdClass), object(stdClass), object(MenuItem), object(stdClass), object(stdClass), object(stdClass), object(stdClass), object(MenuItem), object(stdClass), object(stdClass), object(stdClass), object(stdClass), object(stdClass), object(stdClass), object(stdClass), object(MenuItem), object(stdClass), object(MenuItem), object(MenuItem), object(stdClass), object(MenuItem), object(MenuItem), object(stdClass), object(MenuItem), object(MenuItem), object(MenuItem), object(MenuItem), object(MenuItem), object(stdClass), object(MenuItem), object(MenuItem), object(MenuItem), object(MenuItem), object(MenuItem), object(MenuItem), object(MenuItem), object(stdClass), object(stdClass), object(stdClass), object(stdClass), object(MenuItem), object(MenuItem), object(stdClass), object(stdClass), object(stdClass), object(stdClass)), array()) in /home/messiahdevformat/public_html/libraries/gantry5/src/classes/Gantry/Framework/Menu.php (line 777)
  1. $start = (int)$params['startLevel'];
  2. $max = (int)$params['maxLevels'];
  3. $end = $max ? $start + $max - 1 : 0;
  4. $this->root = $start > 1 && isset($tree[$start - 2]) ? (int)$tree[$start - 2] : '';
  5. $menuItems = $this->createMenuItems($this->getItemsFromPlatform($params), $items);
  6. foreach ($menuItems as $item) {
  7. $level = $item->level;
  8. if ($item->id === $this->root) {
  9. $this->add($item);
  10. continue;
Menu->getList(array('caching' => array('type' => 'menu'), 'enabled' => 1, 'menu' => 'mainmenu', 'base' => '/', 'startLevel' => '1', 'maxLevels' => '0', 'renderTitles' => '0', 'hoverExpand' => '1', 'mobileTarget' => '0', 'forceTarget' => '0', 'showAllChildren' => true, 'highlightAlias' => true, 'highlightParentAlias' => true), array()) in /home/messiahdevformat/public_html/libraries/gantry5/src/classes/Gantry/Component/Menu/AbstractMenu.php (line 318)
  1. $instance->pathMap = new Config([]);
  2. if ($config->get('settings.type') !== 'custom') {
  3. // Get menu items from the CMS.
  4. $instance->getList($params, $items);
  5. } else {
  6. // Add custom menu items.
  7. $instance->addCustom($params, $items);
  8. }
  1. // to call is not supported. If ignoreStrictCheck is true, we should return null.
  2. try {
  3. if (!$arguments) {
  4. $ret = $object->$method();
  5. } else {
  6. $ret = \call_user_func_array([$object, $method], $arguments);
  7. }
  8. } catch (\BadMethodCallException $e) {
  9. if ($call && ($ignoreStrictCheck || !$this->env->isStrictVariables())) {
  10. return;
  11. }
Template->getAttribute(object(Menu), 'instance', array(array('caching' => array('type' => 'menu'), 'enabled' => 1, 'menu' => '', 'base' => '/', 'startLevel' => '1', 'maxLevels' => '0', 'renderTitles' => '0', 'hoverExpand' => '1', 'mobileTarget' => '0', 'forceTarget' => '0')), 'method') in /home/messiahdevformat/public_html/cache/gantry5/g5_chimera/twig/a3/a3fc247c8f3bd462ee8eac93a10a67ab65730b5f139c803f65c031895726cb32.php (line 32)
  1. protected function doDisplay(array $context, array $blocks = [])
  2. {
  3. // line 1
  4. try { // line 2
  5. echo " ";
  6. $context["menu"] = $this->getAttribute($this->getAttribute(($context["gantry"] ?? null), "menu", []), "instance", [0 => ($context["particle"] ?? null)], "method");
  7. } catch (\Exception $e) {
  8. if ($context['gantry']->debug()) throw $e;
  9. if (\GANTRY_DEBUGGER) \Gantry\Debugger::addException($e);
  10. $context['e'] = $e;
  11. // line 4
  1. }
  2. protected function displayWithErrorHandling(array $context, array $blocks = [])
  3. {
  4. try {
  5. $this->doDisplay($context, $blocks);
  6. } catch (Error $e) {
  7. if (!$e->getSourceContext()) {
  8. $e->setSourceContext($this->getSourceContext());
  9. }
  1. return $this->blocks;
  2. }
  3. public function display(array $context, array $blocks = [])
  4. {
  5. $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks, $blocks));
  6. }
  7. public function render(array $context)
  8. {
  9. $level = ob_get_level();
Template->display(array('segment' => object(stdClass), 'enabled' => 1, 'particle' => array('caching' => array('type' => 'menu'), 'enabled' => 1, 'menu' => '', 'base' => '/', 'startLevel' => '1', 'maxLevels' => '0', 'renderTitles' => '0', 'hoverExpand' => '1', 'mobileTarget' => '0', 'forceTarget' => '0'), 'prepare_layout' => true, 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform), 'gantry' => object(Gantry), 'in_particle' => 1, 'id' => 'menu-7332')) in /home/messiahdevformat/public_html/cache/gantry5/g5_chimera/twig/c1/c1a23ca9c10782d35cf9e37bf713c9e45c1b11a91c129ac4809418db3d7ca42e.php (line 85)
  1. echo " ";
  2. if ((($context["enabled"] ?? null) && ((null === $this->getAttribute($this->getAttribute(($context["segment"] ?? null), "attributes", []), "enabled", [])) || $this->getAttribute($this->getAttribute(($context["segment"] ?? null), "attributes", []), "enabled", [])))) {
  3. // line 20
  4. echo " ";
  5. $this->loadTemplate([0 => (("particles/" . $this->getAttribute(($context["segment"] ?? null), "subtype", [])) . ".html.twig"), 1 => (("@particles/" . $this->getAttribute( // line 21
  6. ($context["segment"] ?? null), "subtype", [])) . ".html.twig"), 2 => "@nucleus/content/missing.html.twig"], "@nucleus/content/particle.html.twig", 20)->display($context);
  7. // line 23
  8. echo " ";
  9. }
  10. // line 24
  11. echo " ";
  1. }
  2. protected function displayWithErrorHandling(array $context, array $blocks = [])
  3. {
  4. try {
  5. $this->doDisplay($context, $blocks);
  6. } catch (Error $e) {
  7. if (!$e->getSourceContext()) {
  8. $e->setSourceContext($this->getSourceContext());
  9. }
  1. return $this->blocks;
  2. }
  3. public function display(array $context, array $blocks = [])
  4. {
  5. $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks, $blocks));
  6. }
  7. public function render(array $context)
  8. {
  9. $level = ob_get_level();
  1. ob_start();
  2. } else {
  3. ob_start(function () { return ''; });
  4. }
  5. try {
  6. $this->display($context);
  7. } catch (\Exception $e) {
  8. while (ob_get_level() > $level) {
  9. ob_end_clean();
  10. }
  1. */
  2. public function render($context = [])
  3. {
  4. // using func_get_args() allows to not expose the blocks argument
  5. // as it should only be used by internal code
  6. return $this->template->render($context, \func_num_args() > 1 ? func_get_arg(1) : []);
  7. }
  8. /**
  9. * Displays the template.
  10. *
  1. * @throws SyntaxError When an error occurred during compilation
  2. * @throws RuntimeError When an error occurred during rendering
  3. */
  4. public function render($name, array $context = [])
  5. {
  6. return $this->load($name)->render($context);
  7. }
  8. /**
  9. * Displays a template.
  10. *
Environment->render('@nucleus/content/particle.html.twig', array('segment' => object(stdClass), 'enabled' => 1, 'particle' => array('caching' => array('type' => 'menu'), 'enabled' => 1, 'menu' => '', 'base' => '/', 'startLevel' => '1', 'maxLevels' => '0', 'renderTitles' => '0', 'hoverExpand' => '1', 'mobileTarget' => '0', 'forceTarget' => '0'), 'prepare_layout' => true, 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform))) in /home/messiahdevformat/public_html/libraries/gantry5/src/classes/Gantry/Component/Theme/AbstractTheme.php (line 178)
  1. public function render($file, array $context = [])
  2. {
  3. // Include Gantry specific things to the context.
  4. $context = $this->getContext($context);
  5. return $this->renderer()->render($file, $context);
  6. }
  7. /**
  8. * Compile and render twig string.
  9. *
AbstractTheme->render('@nucleus/content/particle.html.twig', array('segment' => object(stdClass), 'enabled' => 1, 'particle' => array('caching' => array('type' => 'menu'), 'enabled' => 1, 'menu' => '', 'base' => '/', 'startLevel' => '1', 'maxLevels' => '0', 'renderTitles' => '0', 'hoverExpand' => '1', 'mobileTarget' => '0', 'forceTarget' => '0'), 'prepare_layout' => true, 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform))) in /home/messiahdevformat/public_html/libraries/gantry5/src/classes/Gantry/Component/Theme/ThemeTrait.php (line 827)
  1. $context = $this->getContext(['segment' => $item, 'enabled' => 1, 'particle' => $particle] + $options);
  2. /** @var Document $document */
  3. $document = $gantry['document'];
  4. $document::push();
  5. $html = trim($this->render("@nucleus/content/{$item->type}.html.twig", $context));
  6. $content = $document::pop()->setContent($html);
  7. if (isset($file)) {
  8. // Save HTML and assets into the cache.
  9. if (\GANTRY_DEBUGGER) {
Theme->getContent(object(stdClass), array('prepare_layout' => true)) in /home/messiahdevformat/public_html/libraries/gantry5/src/classes/Gantry/Component/Theme/ThemeTrait.php (line 720)
  1. */
  2. public function renderContent($item, $options = [])
  3. {
  4. $gantry = static::gantry();
  5. $content = $this->getContent($item, $options);
  6. /** @var Document $document */
  7. $document = $gantry['document'];
  8. $document->addBlock($content);
Theme->renderContent(object(stdClass), array('prepare_layout' => true)) in /home/messiahdevformat/public_html/libraries/gantry5/src/classes/Gantry/Component/Theme/ThemeTrait.php (line 645)
  1. case 'spacer':
  2. if (\GANTRY_DEBUGGER) {
  3. Debugger::startTimer($item->id, "Rendering {$item->id}");
  4. }
  5. $item->content = $this->renderContent($item, ['prepare_layout' => true]);
  6. // Note that content can also be null (postpone rendering).
  7. if ($item->content === '') {
  8. unset($items[$i]);
  9. }
  1. $fixed = true;
  2. foreach ($item->children as $child) {
  3. $fixed &= !empty($child->attributes->fixed);
  4. }
  5. $this->prepareLayout($item->children, $fixed, $temporary);
  6. }
  7. // TODO: remove hard coded types.
  8. switch ($item->type) {
  9. case 'system':
Theme->prepareLayout(array(object(stdClass), object(stdClass)), 0, 0) in /home/messiahdevformat/public_html/libraries/gantry5/src/classes/Gantry/Component/Theme/ThemeTrait.php (line 629)
  1. $fixed = true;
  2. foreach ($item->children as $child) {
  3. $fixed &= !empty($child->attributes->fixed);
  4. }
  5. $this->prepareLayout($item->children, $fixed, $temporary);
  6. }
  7. // TODO: remove hard coded types.
  8. switch ($item->type) {
  9. case 'system':
Theme->prepareLayout(array(object(stdClass)), 0, false) in /home/messiahdevformat/public_html/libraries/gantry5/src/classes/Gantry/Component/Theme/ThemeTrait.php (line 629)
  1. $fixed = true;
  2. foreach ($item->children as $child) {
  3. $fixed &= !empty($child->attributes->fixed);
  4. }
  5. $this->prepareLayout($item->children, $fixed, $temporary);
  6. }
  7. // TODO: remove hard coded types.
  8. switch ($item->type) {
  9. case 'system':
Theme->prepareLayout(array(object(stdClass), object(stdClass), object(stdClass), object(stdClass), object(stdClass), object(stdClass), object(stdClass), object(stdClass), object(stdClass), object(stdClass), object(stdClass), object(stdClass), object(stdClass), object(stdClass), object(stdClass), object(stdClass), object(stdClass), object(stdClass), object(stdClass))) in /home/messiahdevformat/public_html/libraries/gantry5/src/classes/Gantry/Component/Theme/ThemeTrait.php (line 470)
  1. if (\GANTRY_DEBUGGER) {
  2. Debugger::startTimer('segments', 'Preparing layout');
  3. }
  4. $this->prepareLayout($this->segments);
  5. if (\GANTRY_DEBUGGER) {
  6. Debugger::stopTimer('segments');
  7. }
  8. }
  1. // Some objects throw exceptions when they have __call, and the method we try
  2. // to call is not supported. If ignoreStrictCheck is true, we should return null.
  3. try {
  4. if (!$arguments) {
  5. $ret = $object->$method();
  6. } else {
  7. $ret = \call_user_func_array([$object, $method], $arguments);
  8. }
  9. } catch (\BadMethodCallException $e) {
  10. if ($call && ($ignoreStrictCheck || !$this->env->isStrictVariables())) {
  1. // line 2
  2. $this->getAttribute($this->getAttribute(($context["gantry"] ?? null), "theme", []), "setLayout", [], "method");
  3. // line 3
  4. $this->getAttribute($this->getAttribute(($context["gantry"] ?? null), "theme", []), "loadAtoms", [], "method");
  5. // line 4
  6. $context["segments"] = $this->getAttribute($this->getAttribute(($context["gantry"] ?? null), "theme", []), "segments", [], "method");
  7. // line 6
  8. ob_start();
  9. // line 7
  10. echo " ";
  11. if ($this->getAttribute($this->getAttribute(($context["gantry"] ?? null), "theme", []), "hasContent", [], "method")) {
  1. }
  2. protected function displayWithErrorHandling(array $context, array $blocks = [])
  3. {
  4. try {
  5. $this->doDisplay($context, $blocks);
  6. } catch (Error $e) {
  7. if (!$e->getSourceContext()) {
  8. $e->setSourceContext($this->getSourceContext());
  9. }
  1. return $this->blocks;
  2. }
  3. public function display(array $context, array $blocks = [])
  4. {
  5. $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks, $blocks));
  6. }
  7. public function render(array $context)
  8. {
  9. $level = ob_get_level();
Template->display(array('errorcode' => 0, 'error' => 'Joomla\\CMS\\Table\\Table::getDatabase(): Return value must be of type Joomla\\Database\\DatabaseInterface, EasyBlogDbJoomla returned', 'debug' => true, 'backtrace' => '<h2 id="caption">Call Stack</h2><table class="table table-striped table-bordered" aria-describedby="caption"> <thead> <tr> <th scope="col"> <strong>#</strong> </th> <th scope="col"> <strong>Function</strong> </th> <th scope="col"> <strong>Location</strong> </th> </tr> </thead> <tbody> <tr> <td> 1 </td> <td> () </td> <td> JROOT/libraries/src/Table/Table.php:586 </td> </tr> <tr> <td> 2 </td> <td> Joomla\\CMS\\Table\\Table->getDatabase() </td> <td> JROOT/libraries/src/Table/Table.php:769 </td> </tr> <tr> <td> 3 </td> <td> Joomla\\CMS\\Table\\Table->load() </td> <td> JROOT/administrator/components/com_easyblog/includes/easyblog.php:536 </td> </tr> <tr> <td> 4 </td> <td> EB::config() </td> <td> JROOT/components/com_easyblog/services/cron.php:16 </td> </tr> <tr> <td> 5 </td> <td> require_once() </td> <td> JROOT/administrator/components/com_easyblog/includes/easyblog.php:3436 </td> </tr> <tr> <td> 6 </td> <td> EB::loadServices() </td> <td> JROOT/components/com_easyblog/easyblog.php:34 </td> </tr> <tr> <td> 7 </td> <td> require_once() </td> <td> JROOT/libraries/src/Dispatcher/LegacyComponentDispatcher.php:71 </td> </tr> <tr> <td> 8 </td> <td> Joomla\\CMS\\Dispatcher\\LegacyComponentDispatcher::Joomla\\CMS\\Dispatcher\\{closure}() </td> <td> JROOT/libraries/src/Dispatcher/LegacyComponentDispatcher.php:73 </td> </tr> <tr> <td> 9 </td> <td> Joomla\\CMS\\Dispatcher\\LegacyComponentDispatcher->dispatch() </td> <td> JROOT/libraries/src/Component/ComponentHelper.php:361 </td> </tr> <tr> <td> 10 </td> <td> Joomla\\CMS\\Component\\ComponentHelper::renderComponent() </td> <td> JROOT/libraries/src/Application/SiteApplication.php:217 </td> </tr> <tr> <td> 11 </td> <td> Joomla\\CMS\\Application\\SiteApplication->dispatch() </td> <td> JROOT/libraries/src/Application/SiteApplication.php:271 </td> </tr> <tr> <td> 12 </td> <td> Joomla\\CMS\\Application\\SiteApplication->doExecute() </td> <td> JROOT/libraries/src/Application/CMSApplication.php:304 </td> </tr> <tr> <td> 13 </td> <td> Joomla\\CMS\\Application\\CMSApplication->execute() </td> <td> JROOT/includes/app.php:58 </td> </tr> <tr> <td> 14 </td> <td> require_once() </td> <td> JROOT/index.php:51 </td> </tr> </tbody></table>', 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform), 'gantry' => object(Gantry)), array('page_footer' => array(object(__TwigTemplate_600600f71e39b62ce9852af2e008b8432be49642ba399d25d8d475fad1795b72), 'block_page_footer'), 'page_head' => array(object(__TwigTemplate_1e36c7bb84270da24774b577fbba179af395b92698b30e14eecb6000c8d7e098), 'block_page_head'), 'content' => array(object(__TwigTemplate_1e36c7bb84270da24774b577fbba179af395b92698b30e14eecb6000c8d7e098), 'block_content'))) in /home/messiahdevformat/public_html/cache/gantry5/g5_chimera/twig/6a/6a22b9a7b83cdb1cc600ee6f5797637bccf09f521137d7043b981cff35ac400f.php (line 35)
  1. }
  2. protected function doDisplay(array $context, array $blocks = [])
  3. {
  4. $this->parent = $this->loadTemplate("@nucleus/page.html.twig", "partials/page.html.twig", 1);
  5. $this->parent->display($context, array_merge($this->blocks, $blocks));
  6. }
  7. // line 3
  8. public function block_page_footer($context, array $blocks = [])
  9. {
  1. }
  2. protected function displayWithErrorHandling(array $context, array $blocks = [])
  3. {
  4. try {
  5. $this->doDisplay($context, $blocks);
  6. } catch (Error $e) {
  7. if (!$e->getSourceContext()) {
  8. $e->setSourceContext($this->getSourceContext());
  9. }
  1. return $this->blocks;
  2. }
  3. public function display(array $context, array $blocks = [])
  4. {
  5. $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks, $blocks));
  6. }
  7. public function render(array $context)
  8. {
  9. $level = ob_get_level();
Template->display(array('errorcode' => 0, 'error' => 'Joomla\\CMS\\Table\\Table::getDatabase(): Return value must be of type Joomla\\Database\\DatabaseInterface, EasyBlogDbJoomla returned', 'debug' => true, 'backtrace' => '<h2 id="caption">Call Stack</h2><table class="table table-striped table-bordered" aria-describedby="caption"> <thead> <tr> <th scope="col"> <strong>#</strong> </th> <th scope="col"> <strong>Function</strong> </th> <th scope="col"> <strong>Location</strong> </th> </tr> </thead> <tbody> <tr> <td> 1 </td> <td> () </td> <td> JROOT/libraries/src/Table/Table.php:586 </td> </tr> <tr> <td> 2 </td> <td> Joomla\\CMS\\Table\\Table->getDatabase() </td> <td> JROOT/libraries/src/Table/Table.php:769 </td> </tr> <tr> <td> 3 </td> <td> Joomla\\CMS\\Table\\Table->load() </td> <td> JROOT/administrator/components/com_easyblog/includes/easyblog.php:536 </td> </tr> <tr> <td> 4 </td> <td> EB::config() </td> <td> JROOT/components/com_easyblog/services/cron.php:16 </td> </tr> <tr> <td> 5 </td> <td> require_once() </td> <td> JROOT/administrator/components/com_easyblog/includes/easyblog.php:3436 </td> </tr> <tr> <td> 6 </td> <td> EB::loadServices() </td> <td> JROOT/components/com_easyblog/easyblog.php:34 </td> </tr> <tr> <td> 7 </td> <td> require_once() </td> <td> JROOT/libraries/src/Dispatcher/LegacyComponentDispatcher.php:71 </td> </tr> <tr> <td> 8 </td> <td> Joomla\\CMS\\Dispatcher\\LegacyComponentDispatcher::Joomla\\CMS\\Dispatcher\\{closure}() </td> <td> JROOT/libraries/src/Dispatcher/LegacyComponentDispatcher.php:73 </td> </tr> <tr> <td> 9 </td> <td> Joomla\\CMS\\Dispatcher\\LegacyComponentDispatcher->dispatch() </td> <td> JROOT/libraries/src/Component/ComponentHelper.php:361 </td> </tr> <tr> <td> 10 </td> <td> Joomla\\CMS\\Component\\ComponentHelper::renderComponent() </td> <td> JROOT/libraries/src/Application/SiteApplication.php:217 </td> </tr> <tr> <td> 11 </td> <td> Joomla\\CMS\\Application\\SiteApplication->dispatch() </td> <td> JROOT/libraries/src/Application/SiteApplication.php:271 </td> </tr> <tr> <td> 12 </td> <td> Joomla\\CMS\\Application\\SiteApplication->doExecute() </td> <td> JROOT/libraries/src/Application/CMSApplication.php:304 </td> </tr> <tr> <td> 13 </td> <td> Joomla\\CMS\\Application\\CMSApplication->execute() </td> <td> JROOT/includes/app.php:58 </td> </tr> <tr> <td> 14 </td> <td> require_once() </td> <td> JROOT/index.php:51 </td> </tr> </tbody></table>', 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform), 'gantry' => object(Gantry)), array('page_head' => array(object(__TwigTemplate_1e36c7bb84270da24774b577fbba179af395b92698b30e14eecb6000c8d7e098), 'block_page_head'), 'content' => array(object(__TwigTemplate_1e36c7bb84270da24774b577fbba179af395b92698b30e14eecb6000c8d7e098), 'block_content'))) in /home/messiahdevformat/public_html/cache/gantry5/g5_chimera/twig/ec/ec83c5782b155cbe068a27a8005fb2f31813ebf3697bc8324cacba30e0643bfd.php (line 36)
  1. }
  2. protected function doDisplay(array $context, array $blocks = [])
  3. {
  4. $this->parent = $this->loadTemplate("partials/page.html.twig", "error.html.twig", 1);
  5. $this->parent->display($context, array_merge($this->blocks, $blocks));
  6. }
  7. // line 3
  8. public function block_page_head($context, array $blocks = [])
  9. {
  1. }
  2. protected function displayWithErrorHandling(array $context, array $blocks = [])
  3. {
  4. try {
  5. $this->doDisplay($context, $blocks);
  6. } catch (Error $e) {
  7. if (!$e->getSourceContext()) {
  8. $e->setSourceContext($this->getSourceContext());
  9. }
  1. return $this->blocks;
  2. }
  3. public function display(array $context, array $blocks = [])
  4. {
  5. $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks, $blocks));
  6. }
  7. public function render(array $context)
  8. {
  9. $level = ob_get_level();
  1. ob_start();
  2. } else {
  3. ob_start(function () { return ''; });
  4. }
  5. try {
  6. $this->display($context);
  7. } catch (\Exception $e) {
  8. while (ob_get_level() > $level) {
  9. ob_end_clean();
  10. }
  1. */
  2. public function render($context = [])
  3. {
  4. // using func_get_args() allows to not expose the blocks argument
  5. // as it should only be used by internal code
  6. return $this->template->render($context, \func_num_args() > 1 ? func_get_arg(1) : []);
  7. }
  8. /**
  9. * Displays the template.
  10. *
  1. * @throws SyntaxError When an error occurred during compilation
  2. * @throws RuntimeError When an error occurred during rendering
  3. */
  4. public function render($name, array $context = [])
  5. {
  6. return $this->load($name)->render($context);
  7. }
  8. /**
  9. * Displays a template.
  10. *
Environment->render('error.html.twig', array('errorcode' => 0, 'error' => 'Joomla\\CMS\\Table\\Table::getDatabase(): Return value must be of type Joomla\\Database\\DatabaseInterface, EasyBlogDbJoomla returned', 'debug' => true, 'backtrace' => '<h2 id="caption">Call Stack</h2><table class="table table-striped table-bordered" aria-describedby="caption"> <thead> <tr> <th scope="col"> <strong>#</strong> </th> <th scope="col"> <strong>Function</strong> </th> <th scope="col"> <strong>Location</strong> </th> </tr> </thead> <tbody> <tr> <td> 1 </td> <td> () </td> <td> JROOT/libraries/src/Table/Table.php:586 </td> </tr> <tr> <td> 2 </td> <td> Joomla\\CMS\\Table\\Table->getDatabase() </td> <td> JROOT/libraries/src/Table/Table.php:769 </td> </tr> <tr> <td> 3 </td> <td> Joomla\\CMS\\Table\\Table->load() </td> <td> JROOT/administrator/components/com_easyblog/includes/easyblog.php:536 </td> </tr> <tr> <td> 4 </td> <td> EB::config() </td> <td> JROOT/components/com_easyblog/services/cron.php:16 </td> </tr> <tr> <td> 5 </td> <td> require_once() </td> <td> JROOT/administrator/components/com_easyblog/includes/easyblog.php:3436 </td> </tr> <tr> <td> 6 </td> <td> EB::loadServices() </td> <td> JROOT/components/com_easyblog/easyblog.php:34 </td> </tr> <tr> <td> 7 </td> <td> require_once() </td> <td> JROOT/libraries/src/Dispatcher/LegacyComponentDispatcher.php:71 </td> </tr> <tr> <td> 8 </td> <td> Joomla\\CMS\\Dispatcher\\LegacyComponentDispatcher::Joomla\\CMS\\Dispatcher\\{closure}() </td> <td> JROOT/libraries/src/Dispatcher/LegacyComponentDispatcher.php:73 </td> </tr> <tr> <td> 9 </td> <td> Joomla\\CMS\\Dispatcher\\LegacyComponentDispatcher->dispatch() </td> <td> JROOT/libraries/src/Component/ComponentHelper.php:361 </td> </tr> <tr> <td> 10 </td> <td> Joomla\\CMS\\Component\\ComponentHelper::renderComponent() </td> <td> JROOT/libraries/src/Application/SiteApplication.php:217 </td> </tr> <tr> <td> 11 </td> <td> Joomla\\CMS\\Application\\SiteApplication->dispatch() </td> <td> JROOT/libraries/src/Application/SiteApplication.php:271 </td> </tr> <tr> <td> 12 </td> <td> Joomla\\CMS\\Application\\SiteApplication->doExecute() </td> <td> JROOT/libraries/src/Application/CMSApplication.php:304 </td> </tr> <tr> <td> 13 </td> <td> Joomla\\CMS\\Application\\CMSApplication->execute() </td> <td> JROOT/includes/app.php:58 </td> </tr> <tr> <td> 14 </td> <td> require_once() </td> <td> JROOT/index.php:51 </td> </tr> </tbody></table>', 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform))) in /home/messiahdevformat/public_html/libraries/gantry5/src/classes/Gantry/Component/Theme/AbstractTheme.php (line 178)
  1. public function render($file, array $context = [])
  2. {
  3. // Include Gantry specific things to the context.
  4. $context = $this->getContext($context);
  5. return $this->renderer()->render($file, $context);
  6. }
  7. /**
  8. * Compile and render twig string.
  9. *
AbstractTheme->render('error.html.twig', array('errorcode' => 0, 'error' => 'Joomla\\CMS\\Table\\Table::getDatabase(): Return value must be of type Joomla\\Database\\DatabaseInterface, EasyBlogDbJoomla returned', 'debug' => true, 'backtrace' => '<h2 id="caption">Call Stack</h2><table class="table table-striped table-bordered" aria-describedby="caption"> <thead> <tr> <th scope="col"> <strong>#</strong> </th> <th scope="col"> <strong>Function</strong> </th> <th scope="col"> <strong>Location</strong> </th> </tr> </thead> <tbody> <tr> <td> 1 </td> <td> () </td> <td> JROOT/libraries/src/Table/Table.php:586 </td> </tr> <tr> <td> 2 </td> <td> Joomla\\CMS\\Table\\Table->getDatabase() </td> <td> JROOT/libraries/src/Table/Table.php:769 </td> </tr> <tr> <td> 3 </td> <td> Joomla\\CMS\\Table\\Table->load() </td> <td> JROOT/administrator/components/com_easyblog/includes/easyblog.php:536 </td> </tr> <tr> <td> 4 </td> <td> EB::config() </td> <td> JROOT/components/com_easyblog/services/cron.php:16 </td> </tr> <tr> <td> 5 </td> <td> require_once() </td> <td> JROOT/administrator/components/com_easyblog/includes/easyblog.php:3436 </td> </tr> <tr> <td> 6 </td> <td> EB::loadServices() </td> <td> JROOT/components/com_easyblog/easyblog.php:34 </td> </tr> <tr> <td> 7 </td> <td> require_once() </td> <td> JROOT/libraries/src/Dispatcher/LegacyComponentDispatcher.php:71 </td> </tr> <tr> <td> 8 </td> <td> Joomla\\CMS\\Dispatcher\\LegacyComponentDispatcher::Joomla\\CMS\\Dispatcher\\{closure}() </td> <td> JROOT/libraries/src/Dispatcher/LegacyComponentDispatcher.php:73 </td> </tr> <tr> <td> 9 </td> <td> Joomla\\CMS\\Dispatcher\\LegacyComponentDispatcher->dispatch() </td> <td> JROOT/libraries/src/Component/ComponentHelper.php:361 </td> </tr> <tr> <td> 10 </td> <td> Joomla\\CMS\\Component\\ComponentHelper::renderComponent() </td> <td> JROOT/libraries/src/Application/SiteApplication.php:217 </td> </tr> <tr> <td> 11 </td> <td> Joomla\\CMS\\Application\\SiteApplication->dispatch() </td> <td> JROOT/libraries/src/Application/SiteApplication.php:271 </td> </tr> <tr> <td> 12 </td> <td> Joomla\\CMS\\Application\\SiteApplication->doExecute() </td> <td> JROOT/libraries/src/Application/CMSApplication.php:304 </td> </tr> <tr> <td> 13 </td> <td> Joomla\\CMS\\Application\\CMSApplication->execute() </td> <td> JROOT/includes/app.php:58 </td> </tr> <tr> <td> 14 </td> <td> require_once() </td> <td> JROOT/index.php:51 </td> </tr> </tbody></table>', 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform))) in /home/messiahdevformat/public_html/templates/g5_chimera/error.php (line 46)
  1. unset($gantry['configuration']);
  2. // Render the page.
  3. echo $theme
  4. ->setLayout('_error', true)
  5. ->render('error.html.twig', $context);
require('/home/messiahdevformat/public_html/templates/g5_chimera/error.php') in /home/messiahdevformat/public_html/libraries/src/Document/HtmlDocument.php (line 731)
  1. // Store the file path
  2. $this->_file = $directory . '/' . $filename;
  3. // Get the file content
  4. ob_start();
  5. require $directory . '/' . $filename;
  6. $contents = ob_get_clean();
  7. }
  8. return $contents;
  9. }
HtmlDocument->_loadTemplate('/home/messiahdevformat/public_html/templates/g5_chimera', 'error.php') in /home/messiahdevformat/public_html/libraries/src/Document/HtmlDocument.php (line 785)
  1. $this->baseurl = Uri::base(true);
  2. $this->params = $params['params'] ?? new Registry();
  3. $this->template = $template;
  4. // Load
  5. $this->_template = $this->_loadTemplate($baseDir, $file);
  6. return $this;
  7. }
  8. /**
HtmlDocument->_fetchTemplate(array('template' => 'g5_chimera', 'directory' => '/home/messiahdevformat/public_html/templates', 'debug' => true, 'csp_nonce' => null, 'templateInherits' => '', 'params' => object(Registry), 'file' => 'error.php')) in /home/messiahdevformat/public_html/libraries/src/Document/HtmlDocument.php (line 622)
  1. *
  2. * @since 1.7.0
  3. */
  4. public function parse($params = [])
  5. {
  6. return $this->_fetchTemplate($params)->_parseTemplate();
  7. }
  8. /**
  9. * Outputs the template to the browser.
  10. *
HtmlDocument->parse(array('template' => 'g5_chimera', 'directory' => '/home/messiahdevformat/public_html/templates', 'debug' => true, 'csp_nonce' => null, 'templateInherits' => '', 'params' => object(Registry), 'file' => 'error.php')) in /home/messiahdevformat/public_html/libraries/src/Document/HtmlDocument.php (line 640)
  1. public function render($caching = false, $params = [])
  2. {
  3. $this->_caching = $caching;
  4. if (empty($this->_template)) {
  5. $this->parse($params);
  6. }
  7. if (\array_key_exists('csp_nonce', $params) && $params['csp_nonce'] !== null) {
  8. $this->cspNonce = $params['csp_nonce'];
  9. }
HtmlDocument->render(false, array('template' => 'g5_chimera', 'directory' => '/home/messiahdevformat/public_html/templates', 'debug' => true, 'csp_nonce' => null, 'templateInherits' => '', 'params' => object(Registry), 'file' => 'error.php')) in /home/messiahdevformat/public_html/libraries/src/Document/ErrorDocument.php (line 139)
  1. $this->debug = $params['debug'] ?? false;
  2. $this->error = $this->_error;
  3. $params['file'] = 'error.php';
  4. return parent::render($cache, $params);
  5. }
  6. /**
  7. * Render the backtrace
  8. *
ErrorDocument->render(false, array('template' => 'g5_chimera', 'directory' => '/home/messiahdevformat/public_html/templates', 'debug' => true, 'csp_nonce' => null, 'templateInherits' => '', 'params' => object(Registry), 'file' => 'error.php')) in /home/messiahdevformat/public_html/libraries/src/Error/Renderer/HtmlRenderer.php (line 70)
  1. ob_end_clean();
  2. }
  3. $this->getDocument()->setTitle(Text::_('Error') . ': ' . $error->getCode());
  4. return $this->getDocument()->render(
  5. false,
  6. [
  7. 'template' => $template->template,
  8. 'directory' => JPATH_THEMES,
  9. 'debug' => JDEBUG,
HtmlRenderer->render(object(TypeError)) in /home/messiahdevformat/public_html/libraries/src/Exception/ExceptionHandler.php (line 139)
  1. 'subject' => $app,
  2. 'document' => $renderer->getDocument(),
  3. ])
  4. );
  5. $data = $renderer->render($error);
  6. // If nothing was rendered, just use the message from the Exception
  7. if (empty($data)) {
  8. $data = $error->getMessage();
  9. }
ExceptionHandler::render(object(TypeError)) in /home/messiahdevformat/public_html/libraries/src/Exception/ExceptionHandler.php (line 73)
  1. * @since 3.10.0
  2. */
  3. public static function handleException(\Throwable $error)
  4. {
  5. static::logException($error);
  6. static::render($error);
  7. }
  8. /**
  9. * Render the error page based on an exception.
  10. *
ExceptionHandler::handleException(object(TypeError)) in /home/messiahdevformat/public_html/libraries/src/Application/CMSApplication.php (line 334)
  1. );
  2. // Trigger the onError event.
  3. $this->dispatchEvent('onError', $event);
  4. ExceptionHandler::handleException($event->getError());
  5. }
  6. // Trigger the onBeforeRespond event.
  7. $this->dispatchEvent(
  8. 'onBeforeRespond',
CMSApplication->execute() in /home/messiahdevformat/public_html/includes/app.php (line 58)
  1. // Set the application as global app
  2. \Joomla\CMS\Factory::$application = $app;
  3. // Execute the application.
  4. $app->execute();
require_once('/home/messiahdevformat/public_html/includes/app.php') in /home/messiahdevformat/public_html/index.php (line 51)
  1. // ... die
  2. die();
  3. }
  4. // Run the application - All executable code should be triggered through this file
  5. require_once __DIR__ . '/includes/app.php';

TypeError

Joomla\CMS\Table\Table::getDatabase(): Return value must be of type Joomla\Database\DatabaseInterface, EasyBlogDbJoomla returned

  1. *
  2. * @note This method will be removed in 7.0 and DatabaseAwareTrait will be used instead.
  3. */
  4. protected function getDatabase(): DatabaseInterface
  5. {
  6. return $this->getDbo();
  7. }
  8. /**
  9. * Set the database.
  10. *
  1. * @throws \RuntimeException
  2. * @throws \UnexpectedValueException
  3. */
  4. public function load($keys = null, $reset = true)
  5. {
  6. $db = $this->getDatabase();
  7. // Pre-processing by observers
  8. $event = AbstractEvent::create(
  9. 'onTableBeforeLoad',
  10. [
  1. $registry = new JRegistry($raw);
  2. if (!defined('EASYBLOG_COMPONENT_CLI')) {
  3. // Get config stored in db
  4. $table = EB::table('Configs');
  5. $table->load('config');
  6. // Load the stored config as a registry
  7. $stored = new JRegistry($table->params);
  8. $registry->merge($stored);
  1. */
  2. defined('_JEXEC') or die('Unauthorized Access');
  3. $app = JFactory::getApplication();
  4. $task = $app->input->get('task', '', 'cmd');
  5. $config = EB::config();
  6. $result = array();
  7. $cron = $app->input->get('cron', false, 'bool');
  8. if ($task == 'cron' || $cron) {
require_once('/home/messiahdevformat/public_html/components/com_easyblog/services/cron.php') in /home/messiahdevformat/public_html/administrator/components/com_easyblog/includes/easyblog.php (line 3436)
  1. if (!$files) {
  2. return;
  3. }
  4. foreach ($files as $file) {
  5. require_once($file);
  6. }
  7. }
  8. /**
  1. EB::ajax()->process();
  2. // Load other services
  3. EB::loadLanguages();
  4. EB::loadServices();
  5. require_once(EB_ROOT . '/views/views.php');
  6. // Get controller name if specified
  7. $app = JFactory::getApplication();
require_once('/home/messiahdevformat/public_html/components/com_easyblog/easyblog.php') in /home/messiahdevformat/public_html/libraries/src/Dispatcher/LegacyComponentDispatcher.php (line 71)
  1. // Load common and local language files.
  2. $lang->load($this->app->scope, JPATH_BASE) || $lang->load($this->app->scope, JPATH_BASE . '/components/' . $this->app->scope);
  3. // Execute the component
  4. $loader = static function ($path) {
  5. require_once $path;
  6. };
  7. $loader($path);
  8. }
  9. }
LegacyComponentDispatcher::Joomla\CMS\Dispatcher\{closure}('/home/messiahdevformat/public_html/components/com_easyblog/easyblog.php') in /home/messiahdevformat/public_html/libraries/src/Dispatcher/LegacyComponentDispatcher.php (line 73)
  1. // Execute the component
  2. $loader = static function ($path) {
  3. require_once $path;
  4. };
  5. $loader($path);
  6. }
  7. }
  1. if (!static::isEnabled($option)) {
  2. throw new MissingComponentException(Text::_('JLIB_APPLICATION_ERROR_COMPONENT_NOT_FOUND'), 404);
  3. }
  4. ob_start();
  5. $app->bootComponent($option)->getDispatcher($app)->dispatch();
  6. $contents = ob_get_clean();
  7. // Revert the scope
  8. $app->scope = $scope;
ComponentHelper::renderComponent('com_easyblog') in /home/messiahdevformat/public_html/libraries/src/Application/SiteApplication.php (line 217)
  1. $this->dispatchEvent(
  2. 'onAfterInitialiseDocument',
  3. new AfterInitialiseDocumentEvent('onAfterInitialiseDocument', ['subject' => $this, 'document' => $document])
  4. );
  5. $contents = ComponentHelper::renderComponent($component);
  6. $document->setBuffer($contents, ['type' => 'component']);
  7. // Trigger the onAfterDispatch event.
  8. $this->dispatchEvent(
  9. 'onAfterDispatch',
  1. ['option' => 'com_users', 'task' => 'method.save'],
  2. ]);
  3. }
  4. // Dispatch the application
  5. $this->dispatch();
  6. // Mark afterDispatch in the profiler.
  7. JDEBUG ? $this->profiler->mark('afterDispatch') : null;
  8. }
  1. $this->sanityCheckSystemVariables();
  2. $this->setupLogging();
  3. $this->createExtensionNamespaceMap();
  4. // Perform application routines.
  5. $this->doExecute();
  6. // If we have an application document object, render it.
  7. if ($this->document instanceof \Joomla\CMS\Document\Document) {
  8. // Render the application output.
  9. $this->render();
CMSApplication->execute() in /home/messiahdevformat/public_html/includes/app.php (line 58)
  1. // Set the application as global app
  2. \Joomla\CMS\Factory::$application = $app;
  3. // Execute the application.
  4. $app->execute();
require_once('/home/messiahdevformat/public_html/includes/app.php') in /home/messiahdevformat/public_html/index.php (line 51)
  1. // ... die
  2. die();
  3. }
  4. // Run the application - All executable code should be triggered through this file
  5. require_once __DIR__ . '/includes/app.php';

Stack Traces 2

[2/2] TypeError
TypeError:
Joomla\CMS\Table\Table::getDatabase(): Return value must be of type Joomla\Database\DatabaseInterface, EasyBlogDbJoomla returned

  at /home/messiahdevformat/public_html/libraries/src/Table/Table.php:586
  at Joomla\CMS\Table\Table->getDatabase()
     (/home/messiahdevformat/public_html/libraries/src/Table/Table.php:769)
  at Joomla\CMS\Table\Table->load('config')
     (/home/messiahdevformat/public_html/administrator/components/com_easyblog/includes/easyblog.php:536)
  at EB::config()
     (/home/messiahdevformat/public_html/components/com_easyblog/router.php:36)
  at EasyBlogRouterBase::buildRoute(array('option' => 'com_easyblog', 'view' => 'latest', 'Itemid' => '229'))
     (/home/messiahdevformat/public_html/components/com_easyblog/router.php:1328)
  at EasyblogRouter->build(array('option' => 'com_easyblog', 'view' => 'latest', 'Itemid' => '229'))
     (/home/messiahdevformat/public_html/libraries/src/Router/SiteRouter.php:450)
  at Joomla\CMS\Router\SiteRouter->buildSefRoute(object(SiteRouter), object(Uri))
     (/home/messiahdevformat/public_html/libraries/src/Router/Router.php:446)
  at Joomla\CMS\Router\Router->processBuildRules(object(Uri))
     (/home/messiahdevformat/public_html/libraries/src/Router/Router.php:205)
  at Joomla\CMS\Router\Router->build('index.php?Itemid=229')
     (/home/messiahdevformat/public_html/libraries/src/Router/Route.php:150)
  at Joomla\CMS\Router\Route::link('site', 'index.php?Itemid=229', false, 0, false)
     (/home/messiahdevformat/public_html/libraries/src/Router/Route.php:99)
  at Joomla\CMS\Router\Route::_('index.php?Itemid=229', false, 0)
     (/home/messiahdevformat/public_html/libraries/gantry5/src/classes/Gantry/Framework/Menu.php:707)
  at Gantry\Framework\Menu->createMenuItem(array('yaml_path' => 'more/all-news-items'), object(MenuItem))
     (/home/messiahdevformat/public_html/libraries/gantry5/src/classes/Gantry/Framework/Menu.php:383)
  at Gantry\Framework\Menu->createMenuItems(array(object(MenuItem), object(MenuItem), object(MenuItem), object(MenuItem), object(MenuItem), object(MenuItem), object(MenuItem), object(MenuItem), object(MenuItem), object(MenuItem), object(MenuItem), object(stdClass), object(stdClass), object(stdClass), object(MenuItem), object(stdClass), object(stdClass), object(stdClass), object(stdClass), object(MenuItem), object(stdClass), object(stdClass), object(stdClass), object(stdClass), object(stdClass), object(stdClass), object(stdClass), object(MenuItem), object(stdClass), object(MenuItem), object(MenuItem), object(stdClass), object(MenuItem), object(MenuItem), object(stdClass), object(MenuItem), object(MenuItem), object(MenuItem), object(MenuItem), object(MenuItem), object(stdClass), object(MenuItem), object(MenuItem), object(MenuItem), object(MenuItem), object(MenuItem), object(MenuItem), object(MenuItem), object(stdClass), object(stdClass), object(stdClass), object(stdClass), object(MenuItem), object(MenuItem), object(stdClass), object(stdClass), object(stdClass), object(stdClass)), array())
     (/home/messiahdevformat/public_html/libraries/gantry5/src/classes/Gantry/Framework/Menu.php:777)
  at Gantry\Framework\Menu->getList(array('caching' => array('type' => 'menu'), 'enabled' => 1, 'menu' => 'mainmenu', 'base' => '/', 'startLevel' => '1', 'maxLevels' => '0', 'renderTitles' => '0', 'hoverExpand' => '1', 'mobileTarget' => '0', 'forceTarget' => '0', 'showAllChildren' => true, 'highlightAlias' => true, 'highlightParentAlias' => true), array())
     (/home/messiahdevformat/public_html/libraries/gantry5/src/classes/Gantry/Component/Menu/AbstractMenu.php:318)
  at Gantry\Component\Menu\AbstractMenu->instance(array('caching' => array('type' => 'menu'), 'enabled' => 1, 'menu' => 'mainmenu', 'base' => '/', 'startLevel' => '1', 'maxLevels' => '0', 'renderTitles' => '0', 'hoverExpand' => '1', 'mobileTarget' => '0', 'forceTarget' => '0', 'showAllChildren' => true, 'highlightAlias' => true, 'highlightParentAlias' => true))
     (/home/messiahdevformat/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:702)
  at Twig\Template->getAttribute(object(Menu), 'instance', array(array('caching' => array('type' => 'menu'), 'enabled' => 1, 'menu' => '', 'base' => '/', 'startLevel' => '1', 'maxLevels' => '0', 'renderTitles' => '0', 'hoverExpand' => '1', 'mobileTarget' => '0', 'forceTarget' => '0')), 'method')
     (/home/messiahdevformat/public_html/cache/gantry5/g5_chimera/twig/a3/a3fc247c8f3bd462ee8eac93a10a67ab65730b5f139c803f65c031895726cb32.php:32)
  at __TwigTemplate_17ee081321c26b8ee1aabb8e37fbdd5cc85a2fb1a6add443f263f24877d17098->doDisplay(array('segment' => object(stdClass), 'enabled' => 1, 'particle' => array('caching' => array('type' => 'menu'), 'enabled' => 1, 'menu' => '', 'base' => '/', 'startLevel' => '1', 'maxLevels' => '0', 'renderTitles' => '0', 'hoverExpand' => '1', 'mobileTarget' => '0', 'forceTarget' => '0'), 'prepare_layout' => true, 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform), 'gantry' => object(Gantry), 'in_particle' => 1, 'id' => 'menu-7332'), array())
     (/home/messiahdevformat/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:453)
  at Twig\Template->displayWithErrorHandling(array('segment' => object(stdClass), 'enabled' => 1, 'particle' => array('caching' => array('type' => 'menu'), 'enabled' => 1, 'menu' => '', 'base' => '/', 'startLevel' => '1', 'maxLevels' => '0', 'renderTitles' => '0', 'hoverExpand' => '1', 'mobileTarget' => '0', 'forceTarget' => '0'), 'prepare_layout' => true, 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform), 'gantry' => object(Gantry), 'in_particle' => 1, 'id' => 'menu-7332'), array())
     (/home/messiahdevformat/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:420)
  at Twig\Template->display(array('segment' => object(stdClass), 'enabled' => 1, 'particle' => array('caching' => array('type' => 'menu'), 'enabled' => 1, 'menu' => '', 'base' => '/', 'startLevel' => '1', 'maxLevels' => '0', 'renderTitles' => '0', 'hoverExpand' => '1', 'mobileTarget' => '0', 'forceTarget' => '0'), 'prepare_layout' => true, 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform), 'gantry' => object(Gantry), 'in_particle' => 1, 'id' => 'menu-7332'))
     (/home/messiahdevformat/public_html/cache/gantry5/g5_chimera/twig/c1/c1a23ca9c10782d35cf9e37bf713c9e45c1b11a91c129ac4809418db3d7ca42e.php:85)
  at __TwigTemplate_f9a7faaf864f6f2970bafc586ba10da18d688dc35d74a6e65ee851b4cc35c170->doDisplay(array('segment' => object(stdClass), 'enabled' => 1, 'particle' => array('caching' => array('type' => 'menu'), 'enabled' => 1, 'menu' => '', 'base' => '/', 'startLevel' => '1', 'maxLevels' => '0', 'renderTitles' => '0', 'hoverExpand' => '1', 'mobileTarget' => '0', 'forceTarget' => '0'), 'prepare_layout' => true, 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform), 'gantry' => object(Gantry), 'in_particle' => 1, 'id' => 'menu-7332'), array())
     (/home/messiahdevformat/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:453)
  at Twig\Template->displayWithErrorHandling(array('segment' => object(stdClass), 'enabled' => 1, 'particle' => array('caching' => array('type' => 'menu'), 'enabled' => 1, 'menu' => '', 'base' => '/', 'startLevel' => '1', 'maxLevels' => '0', 'renderTitles' => '0', 'hoverExpand' => '1', 'mobileTarget' => '0', 'forceTarget' => '0'), 'prepare_layout' => true, 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform), 'gantry' => object(Gantry)), array())
     (/home/messiahdevformat/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:420)
  at Twig\Template->display(array('segment' => object(stdClass), 'enabled' => 1, 'particle' => array('caching' => array('type' => 'menu'), 'enabled' => 1, 'menu' => '', 'base' => '/', 'startLevel' => '1', 'maxLevels' => '0', 'renderTitles' => '0', 'hoverExpand' => '1', 'mobileTarget' => '0', 'forceTarget' => '0'), 'prepare_layout' => true, 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform)))
     (/home/messiahdevformat/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:432)
  at Twig\Template->render(array('segment' => object(stdClass), 'enabled' => 1, 'particle' => array('caching' => array('type' => 'menu'), 'enabled' => 1, 'menu' => '', 'base' => '/', 'startLevel' => '1', 'maxLevels' => '0', 'renderTitles' => '0', 'hoverExpand' => '1', 'mobileTarget' => '0', 'forceTarget' => '0'), 'prepare_layout' => true, 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform)), array())
     (/home/messiahdevformat/public_html/libraries/gantry5/compat/vendor/twig/twig/src/TemplateWrapper.php:47)
  at Twig\TemplateWrapper->render(array('segment' => object(stdClass), 'enabled' => 1, 'particle' => array('caching' => array('type' => 'menu'), 'enabled' => 1, 'menu' => '', 'base' => '/', 'startLevel' => '1', 'maxLevels' => '0', 'renderTitles' => '0', 'hoverExpand' => '1', 'mobileTarget' => '0', 'forceTarget' => '0'), 'prepare_layout' => true, 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform)))
     (/home/messiahdevformat/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Environment.php:384)
  at Twig\Environment->render('@nucleus/content/particle.html.twig', array('segment' => object(stdClass), 'enabled' => 1, 'particle' => array('caching' => array('type' => 'menu'), 'enabled' => 1, 'menu' => '', 'base' => '/', 'startLevel' => '1', 'maxLevels' => '0', 'renderTitles' => '0', 'hoverExpand' => '1', 'mobileTarget' => '0', 'forceTarget' => '0'), 'prepare_layout' => true, 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform)))
     (/home/messiahdevformat/public_html/libraries/gantry5/src/classes/Gantry/Component/Theme/AbstractTheme.php:178)
  at Gantry\Component\Theme\AbstractTheme->render('@nucleus/content/particle.html.twig', array('segment' => object(stdClass), 'enabled' => 1, 'particle' => array('caching' => array('type' => 'menu'), 'enabled' => 1, 'menu' => '', 'base' => '/', 'startLevel' => '1', 'maxLevels' => '0', 'renderTitles' => '0', 'hoverExpand' => '1', 'mobileTarget' => '0', 'forceTarget' => '0'), 'prepare_layout' => true, 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform)))
     (/home/messiahdevformat/public_html/libraries/gantry5/src/classes/Gantry/Component/Theme/ThemeTrait.php:827)
  at Gantry\Framework\Theme->getContent(object(stdClass), array('prepare_layout' => true))
     (/home/messiahdevformat/public_html/libraries/gantry5/src/classes/Gantry/Component/Theme/ThemeTrait.php:720)
  at Gantry\Framework\Theme->renderContent(object(stdClass), array('prepare_layout' => true))
     (/home/messiahdevformat/public_html/libraries/gantry5/src/classes/Gantry/Component/Theme/ThemeTrait.php:645)
  at Gantry\Framework\Theme->prepareLayout(array(object(stdClass)), 0, 0)
     (/home/messiahdevformat/public_html/libraries/gantry5/src/classes/Gantry/Component/Theme/ThemeTrait.php:629)
  at Gantry\Framework\Theme->prepareLayout(array(object(stdClass), object(stdClass)), 0, 0)
     (/home/messiahdevformat/public_html/libraries/gantry5/src/classes/Gantry/Component/Theme/ThemeTrait.php:629)
  at Gantry\Framework\Theme->prepareLayout(array(object(stdClass)), 0, false)
     (/home/messiahdevformat/public_html/libraries/gantry5/src/classes/Gantry/Component/Theme/ThemeTrait.php:629)
  at Gantry\Framework\Theme->prepareLayout(array(object(stdClass), object(stdClass), object(stdClass), object(stdClass), object(stdClass), object(stdClass), object(stdClass), object(stdClass), object(stdClass), object(stdClass), object(stdClass), object(stdClass), object(stdClass), object(stdClass), object(stdClass), object(stdClass), object(stdClass), object(stdClass), object(stdClass)))
     (/home/messiahdevformat/public_html/libraries/gantry5/src/classes/Gantry/Component/Theme/ThemeTrait.php:470)
  at Gantry\Framework\Theme->segments()
     (/home/messiahdevformat/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:700)
  at Twig\Template->getAttribute(object(GantryTheme), 'segments', array(), 'method')
     (/home/messiahdevformat/public_html/cache/gantry5/g5_chimera/twig/a4/a4642f154871ea03676c20bed754c9b72301b4e04abc6c4a2b0fe86e83de0bd2.php:47)
  at __TwigTemplate_e136e864d0c74bcc7529152ecbd79d63a585a346b810e26d6471cd2da27c9b9c->doDisplay(array('errorcode' => 0, 'error' => 'Joomla\\CMS\\Table\\Table::getDatabase(): Return value must be of type Joomla\\Database\\DatabaseInterface, EasyBlogDbJoomla returned', 'debug' => true, 'backtrace' => '<h2 id="caption">Call Stack</h2><table class="table table-striped table-bordered" aria-describedby="caption">    <thead>        <tr>            <th scope="col">                <strong>#</strong>            </th>            <th scope="col">                <strong>Function</strong>            </th>            <th scope="col">                <strong>Location</strong>            </th>        </tr>    </thead>    <tbody>                    <tr>                <td>                    1                </td>                                <td>                    ()                </td>                                                <td>                    JROOT/libraries/src/Table/Table.php:586                </td>                            </tr>                    <tr>                <td>                    2                </td>                                <td>                    Joomla\\CMS\\Table\\Table->getDatabase()                </td>                                                <td>                    JROOT/libraries/src/Table/Table.php:769                </td>                            </tr>                    <tr>                <td>                    3                </td>                                <td>                    Joomla\\CMS\\Table\\Table->load()                </td>                                                <td>                    JROOT/administrator/components/com_easyblog/includes/easyblog.php:536                </td>                            </tr>                    <tr>                <td>                    4                </td>                                <td>                    EB::config()                </td>                                                <td>                    JROOT/components/com_easyblog/services/cron.php:16                </td>                            </tr>                    <tr>                <td>                    5                </td>                                <td>                    require_once()                </td>                                                <td>                    JROOT/administrator/components/com_easyblog/includes/easyblog.php:3436                </td>                            </tr>                    <tr>                <td>                    6                </td>                                <td>                    EB::loadServices()                </td>                                                <td>                    JROOT/components/com_easyblog/easyblog.php:34                </td>                            </tr>                    <tr>                <td>                    7                </td>                                <td>                    require_once()                </td>                                                <td>                    JROOT/libraries/src/Dispatcher/LegacyComponentDispatcher.php:71                </td>                            </tr>                    <tr>                <td>                    8                </td>                                <td>                    Joomla\\CMS\\Dispatcher\\LegacyComponentDispatcher::Joomla\\CMS\\Dispatcher\\{closure}()                </td>                                                <td>                    JROOT/libraries/src/Dispatcher/LegacyComponentDispatcher.php:73                </td>                            </tr>                    <tr>                <td>                    9                </td>                                <td>                    Joomla\\CMS\\Dispatcher\\LegacyComponentDispatcher->dispatch()                </td>                                                <td>                    JROOT/libraries/src/Component/ComponentHelper.php:361                </td>                            </tr>                    <tr>                <td>                    10                </td>                                <td>                    Joomla\\CMS\\Component\\ComponentHelper::renderComponent()                </td>                                                <td>                    JROOT/libraries/src/Application/SiteApplication.php:217                </td>                            </tr>                    <tr>                <td>                    11                </td>                                <td>                    Joomla\\CMS\\Application\\SiteApplication->dispatch()                </td>                                                <td>                    JROOT/libraries/src/Application/SiteApplication.php:271                </td>                            </tr>                    <tr>                <td>                    12                </td>                                <td>                    Joomla\\CMS\\Application\\SiteApplication->doExecute()                </td>                                                <td>                    JROOT/libraries/src/Application/CMSApplication.php:304                </td>                            </tr>                    <tr>                <td>                    13                </td>                                <td>                    Joomla\\CMS\\Application\\CMSApplication->execute()                </td>                                                <td>                    JROOT/includes/app.php:58                </td>                            </tr>                    <tr>                <td>                    14                </td>                                <td>                    require_once()                </td>                                                <td>                    JROOT/index.php:51                </td>                            </tr>            </tbody></table>', 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform), 'gantry' => object(Gantry)), array('content' => array(object(__TwigTemplate_1e36c7bb84270da24774b577fbba179af395b92698b30e14eecb6000c8d7e098), 'block_content'), 'page_offcanvas' => array(object(__TwigTemplate_e136e864d0c74bcc7529152ecbd79d63a585a346b810e26d6471cd2da27c9b9c), 'block_page_offcanvas'), 'page_layout' => array(object(__TwigTemplate_e136e864d0c74bcc7529152ecbd79d63a585a346b810e26d6471cd2da27c9b9c), 'block_page_layout'), 'page_top' => array(object(__TwigTemplate_e136e864d0c74bcc7529152ecbd79d63a585a346b810e26d6471cd2da27c9b9c), 'block_page_top'), 'page_bottom' => array(object(__TwigTemplate_e136e864d0c74bcc7529152ecbd79d63a585a346b810e26d6471cd2da27c9b9c), 'block_page_bottom'), 'body_top' => array(object(__TwigTemplate_e136e864d0c74bcc7529152ecbd79d63a585a346b810e26d6471cd2da27c9b9c), 'block_body_top'), 'body_bottom' => array(object(__TwigTemplate_e136e864d0c74bcc7529152ecbd79d63a585a346b810e26d6471cd2da27c9b9c), 'block_body_bottom'), 'page_head' => array(object(__TwigTemplate_1e36c7bb84270da24774b577fbba179af395b92698b30e14eecb6000c8d7e098), 'block_page_head'), 'page_footer' => array(object(__TwigTemplate_600600f71e39b62ce9852af2e008b8432be49642ba399d25d8d475fad1795b72), 'block_page_footer'), 'page' => array(object(__TwigTemplate_e136e864d0c74bcc7529152ecbd79d63a585a346b810e26d6471cd2da27c9b9c), 'block_page'), 'page_body' => array(object(__TwigTemplate_e136e864d0c74bcc7529152ecbd79d63a585a346b810e26d6471cd2da27c9b9c), 'block_page_body')))
     (/home/messiahdevformat/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:453)
  at Twig\Template->displayWithErrorHandling(array('errorcode' => 0, 'error' => 'Joomla\\CMS\\Table\\Table::getDatabase(): Return value must be of type Joomla\\Database\\DatabaseInterface, EasyBlogDbJoomla returned', 'debug' => true, 'backtrace' => '<h2 id="caption">Call Stack</h2><table class="table table-striped table-bordered" aria-describedby="caption">    <thead>        <tr>            <th scope="col">                <strong>#</strong>            </th>            <th scope="col">                <strong>Function</strong>            </th>            <th scope="col">                <strong>Location</strong>            </th>        </tr>    </thead>    <tbody>                    <tr>                <td>                    1                </td>                                <td>                    ()                </td>                                                <td>                    JROOT/libraries/src/Table/Table.php:586                </td>                            </tr>                    <tr>                <td>                    2                </td>                                <td>                    Joomla\\CMS\\Table\\Table->getDatabase()                </td>                                                <td>                    JROOT/libraries/src/Table/Table.php:769                </td>                            </tr>                    <tr>                <td>                    3                </td>                                <td>                    Joomla\\CMS\\Table\\Table->load()                </td>                                                <td>                    JROOT/administrator/components/com_easyblog/includes/easyblog.php:536                </td>                            </tr>                    <tr>                <td>                    4                </td>                                <td>                    EB::config()                </td>                                                <td>                    JROOT/components/com_easyblog/services/cron.php:16                </td>                            </tr>                    <tr>                <td>                    5                </td>                                <td>                    require_once()                </td>                                                <td>                    JROOT/administrator/components/com_easyblog/includes/easyblog.php:3436                </td>                            </tr>                    <tr>                <td>                    6                </td>                                <td>                    EB::loadServices()                </td>                                                <td>                    JROOT/components/com_easyblog/easyblog.php:34                </td>                            </tr>                    <tr>                <td>                    7                </td>                                <td>                    require_once()                </td>                                                <td>                    JROOT/libraries/src/Dispatcher/LegacyComponentDispatcher.php:71                </td>                            </tr>                    <tr>                <td>                    8                </td>                                <td>                    Joomla\\CMS\\Dispatcher\\LegacyComponentDispatcher::Joomla\\CMS\\Dispatcher\\{closure}()                </td>                                                <td>                    JROOT/libraries/src/Dispatcher/LegacyComponentDispatcher.php:73                </td>                            </tr>                    <tr>                <td>                    9                </td>                                <td>                    Joomla\\CMS\\Dispatcher\\LegacyComponentDispatcher->dispatch()                </td>                                                <td>                    JROOT/libraries/src/Component/ComponentHelper.php:361                </td>                            </tr>                    <tr>                <td>                    10                </td>                                <td>                    Joomla\\CMS\\Component\\ComponentHelper::renderComponent()                </td>                                                <td>                    JROOT/libraries/src/Application/SiteApplication.php:217                </td>                            </tr>                    <tr>                <td>                    11                </td>                                <td>                    Joomla\\CMS\\Application\\SiteApplication->dispatch()                </td>                                                <td>                    JROOT/libraries/src/Application/SiteApplication.php:271                </td>                            </tr>                    <tr>                <td>                    12                </td>                                <td>                    Joomla\\CMS\\Application\\SiteApplication->doExecute()                </td>                                                <td>                    JROOT/libraries/src/Application/CMSApplication.php:304                </td>                            </tr>                    <tr>                <td>                    13                </td>                                <td>                    Joomla\\CMS\\Application\\CMSApplication->execute()                </td>                                                <td>                    JROOT/includes/app.php:58                </td>                            </tr>                    <tr>                <td>                    14                </td>                                <td>                    require_once()                </td>                                                <td>                    JROOT/index.php:51                </td>                            </tr>            </tbody></table>', 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform), 'gantry' => object(Gantry)), array('content' => array(object(__TwigTemplate_1e36c7bb84270da24774b577fbba179af395b92698b30e14eecb6000c8d7e098), 'block_content'), 'page_offcanvas' => array(object(__TwigTemplate_e136e864d0c74bcc7529152ecbd79d63a585a346b810e26d6471cd2da27c9b9c), 'block_page_offcanvas'), 'page_layout' => array(object(__TwigTemplate_e136e864d0c74bcc7529152ecbd79d63a585a346b810e26d6471cd2da27c9b9c), 'block_page_layout'), 'page_top' => array(object(__TwigTemplate_e136e864d0c74bcc7529152ecbd79d63a585a346b810e26d6471cd2da27c9b9c), 'block_page_top'), 'page_bottom' => array(object(__TwigTemplate_e136e864d0c74bcc7529152ecbd79d63a585a346b810e26d6471cd2da27c9b9c), 'block_page_bottom'), 'body_top' => array(object(__TwigTemplate_e136e864d0c74bcc7529152ecbd79d63a585a346b810e26d6471cd2da27c9b9c), 'block_body_top'), 'body_bottom' => array(object(__TwigTemplate_e136e864d0c74bcc7529152ecbd79d63a585a346b810e26d6471cd2da27c9b9c), 'block_body_bottom'), 'page_head' => array(object(__TwigTemplate_1e36c7bb84270da24774b577fbba179af395b92698b30e14eecb6000c8d7e098), 'block_page_head'), 'page_footer' => array(object(__TwigTemplate_600600f71e39b62ce9852af2e008b8432be49642ba399d25d8d475fad1795b72), 'block_page_footer'), 'page' => array(object(__TwigTemplate_e136e864d0c74bcc7529152ecbd79d63a585a346b810e26d6471cd2da27c9b9c), 'block_page'), 'page_body' => array(object(__TwigTemplate_e136e864d0c74bcc7529152ecbd79d63a585a346b810e26d6471cd2da27c9b9c), 'block_page_body')))
     (/home/messiahdevformat/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:420)
  at Twig\Template->display(array('errorcode' => 0, 'error' => 'Joomla\\CMS\\Table\\Table::getDatabase(): Return value must be of type Joomla\\Database\\DatabaseInterface, EasyBlogDbJoomla returned', 'debug' => true, 'backtrace' => '<h2 id="caption">Call Stack</h2><table class="table table-striped table-bordered" aria-describedby="caption">    <thead>        <tr>            <th scope="col">                <strong>#</strong>            </th>            <th scope="col">                <strong>Function</strong>            </th>            <th scope="col">                <strong>Location</strong>            </th>        </tr>    </thead>    <tbody>                    <tr>                <td>                    1                </td>                                <td>                    ()                </td>                                                <td>                    JROOT/libraries/src/Table/Table.php:586                </td>                            </tr>                    <tr>                <td>                    2                </td>                                <td>                    Joomla\\CMS\\Table\\Table->getDatabase()                </td>                                                <td>                    JROOT/libraries/src/Table/Table.php:769                </td>                            </tr>                    <tr>                <td>                    3                </td>                                <td>                    Joomla\\CMS\\Table\\Table->load()                </td>                                                <td>                    JROOT/administrator/components/com_easyblog/includes/easyblog.php:536                </td>                            </tr>                    <tr>                <td>                    4                </td>                                <td>                    EB::config()                </td>                                                <td>                    JROOT/components/com_easyblog/services/cron.php:16                </td>                            </tr>                    <tr>                <td>                    5                </td>                                <td>                    require_once()                </td>                                                <td>                    JROOT/administrator/components/com_easyblog/includes/easyblog.php:3436                </td>                            </tr>                    <tr>                <td>                    6                </td>                                <td>                    EB::loadServices()                </td>                                                <td>                    JROOT/components/com_easyblog/easyblog.php:34                </td>                            </tr>                    <tr>                <td>                    7                </td>                                <td>                    require_once()                </td>                                                <td>                    JROOT/libraries/src/Dispatcher/LegacyComponentDispatcher.php:71                </td>                            </tr>                    <tr>                <td>                    8                </td>                                <td>                    Joomla\\CMS\\Dispatcher\\LegacyComponentDispatcher::Joomla\\CMS\\Dispatcher\\{closure}()                </td>                                                <td>                    JROOT/libraries/src/Dispatcher/LegacyComponentDispatcher.php:73                </td>                            </tr>                    <tr>                <td>                    9                </td>                                <td>                    Joomla\\CMS\\Dispatcher\\LegacyComponentDispatcher->dispatch()                </td>                                                <td>                    JROOT/libraries/src/Component/ComponentHelper.php:361                </td>                            </tr>                    <tr>                <td>                    10                </td>                                <td>                    Joomla\\CMS\\Component\\ComponentHelper::renderComponent()                </td>                                                <td>                    JROOT/libraries/src/Application/SiteApplication.php:217                </td>                            </tr>                    <tr>                <td>                    11                </td>                                <td>                    Joomla\\CMS\\Application\\SiteApplication->dispatch()                </td>                                                <td>                    JROOT/libraries/src/Application/SiteApplication.php:271                </td>                            </tr>                    <tr>                <td>                    12                </td>                                <td>                    Joomla\\CMS\\Application\\SiteApplication->doExecute()                </td>                                                <td>                    JROOT/libraries/src/Application/CMSApplication.php:304                </td>                            </tr>                    <tr>                <td>                    13                </td>                                <td>                    Joomla\\CMS\\Application\\CMSApplication->execute()                </td>                                                <td>                    JROOT/includes/app.php:58                </td>                            </tr>                    <tr>                <td>                    14                </td>                                <td>                    require_once()                </td>                                                <td>                    JROOT/index.php:51                </td>                            </tr>            </tbody></table>', 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform), 'gantry' => object(Gantry)), array('page_footer' => array(object(__TwigTemplate_600600f71e39b62ce9852af2e008b8432be49642ba399d25d8d475fad1795b72), 'block_page_footer'), 'page_head' => array(object(__TwigTemplate_1e36c7bb84270da24774b577fbba179af395b92698b30e14eecb6000c8d7e098), 'block_page_head'), 'content' => array(object(__TwigTemplate_1e36c7bb84270da24774b577fbba179af395b92698b30e14eecb6000c8d7e098), 'block_content')))
     (/home/messiahdevformat/public_html/cache/gantry5/g5_chimera/twig/6a/6a22b9a7b83cdb1cc600ee6f5797637bccf09f521137d7043b981cff35ac400f.php:35)
  at __TwigTemplate_600600f71e39b62ce9852af2e008b8432be49642ba399d25d8d475fad1795b72->doDisplay(array('errorcode' => 0, 'error' => 'Joomla\\CMS\\Table\\Table::getDatabase(): Return value must be of type Joomla\\Database\\DatabaseInterface, EasyBlogDbJoomla returned', 'debug' => true, 'backtrace' => '<h2 id="caption">Call Stack</h2><table class="table table-striped table-bordered" aria-describedby="caption">    <thead>        <tr>            <th scope="col">                <strong>#</strong>            </th>            <th scope="col">                <strong>Function</strong>            </th>            <th scope="col">                <strong>Location</strong>            </th>        </tr>    </thead>    <tbody>                    <tr>                <td>                    1                </td>                                <td>                    ()                </td>                                                <td>                    JROOT/libraries/src/Table/Table.php:586                </td>                            </tr>                    <tr>                <td>                    2                </td>                                <td>                    Joomla\\CMS\\Table\\Table->getDatabase()                </td>                                                <td>                    JROOT/libraries/src/Table/Table.php:769                </td>                            </tr>                    <tr>                <td>                    3                </td>                                <td>                    Joomla\\CMS\\Table\\Table->load()                </td>                                                <td>                    JROOT/administrator/components/com_easyblog/includes/easyblog.php:536                </td>                            </tr>                    <tr>                <td>                    4                </td>                                <td>                    EB::config()                </td>                                                <td>                    JROOT/components/com_easyblog/services/cron.php:16                </td>                            </tr>                    <tr>                <td>                    5                </td>                                <td>                    require_once()                </td>                                                <td>                    JROOT/administrator/components/com_easyblog/includes/easyblog.php:3436                </td>                            </tr>                    <tr>                <td>                    6                </td>                                <td>                    EB::loadServices()                </td>                                                <td>                    JROOT/components/com_easyblog/easyblog.php:34                </td>                            </tr>                    <tr>                <td>                    7                </td>                                <td>                    require_once()                </td>                                                <td>                    JROOT/libraries/src/Dispatcher/LegacyComponentDispatcher.php:71                </td>                            </tr>                    <tr>                <td>                    8                </td>                                <td>                    Joomla\\CMS\\Dispatcher\\LegacyComponentDispatcher::Joomla\\CMS\\Dispatcher\\{closure}()                </td>                                                <td>                    JROOT/libraries/src/Dispatcher/LegacyComponentDispatcher.php:73                </td>                            </tr>                    <tr>                <td>                    9                </td>                                <td>                    Joomla\\CMS\\Dispatcher\\LegacyComponentDispatcher->dispatch()                </td>                                                <td>                    JROOT/libraries/src/Component/ComponentHelper.php:361                </td>                            </tr>                    <tr>                <td>                    10                </td>                                <td>                    Joomla\\CMS\\Component\\ComponentHelper::renderComponent()                </td>                                                <td>                    JROOT/libraries/src/Application/SiteApplication.php:217                </td>                            </tr>                    <tr>                <td>                    11                </td>                                <td>                    Joomla\\CMS\\Application\\SiteApplication->dispatch()                </td>                                                <td>                    JROOT/libraries/src/Application/SiteApplication.php:271                </td>                            </tr>                    <tr>                <td>                    12                </td>                                <td>                    Joomla\\CMS\\Application\\SiteApplication->doExecute()                </td>                                                <td>                    JROOT/libraries/src/Application/CMSApplication.php:304                </td>                            </tr>                    <tr>                <td>                    13                </td>                                <td>                    Joomla\\CMS\\Application\\CMSApplication->execute()                </td>                                                <td>                    JROOT/includes/app.php:58                </td>                            </tr>                    <tr>                <td>                    14                </td>                                <td>                    require_once()                </td>                                                <td>                    JROOT/index.php:51                </td>                            </tr>            </tbody></table>', 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform), 'gantry' => object(Gantry)), array('page_footer' => array(object(__TwigTemplate_600600f71e39b62ce9852af2e008b8432be49642ba399d25d8d475fad1795b72), 'block_page_footer'), 'page_head' => array(object(__TwigTemplate_1e36c7bb84270da24774b577fbba179af395b92698b30e14eecb6000c8d7e098), 'block_page_head'), 'content' => array(object(__TwigTemplate_1e36c7bb84270da24774b577fbba179af395b92698b30e14eecb6000c8d7e098), 'block_content')))
     (/home/messiahdevformat/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:453)
  at Twig\Template->displayWithErrorHandling(array('errorcode' => 0, 'error' => 'Joomla\\CMS\\Table\\Table::getDatabase(): Return value must be of type Joomla\\Database\\DatabaseInterface, EasyBlogDbJoomla returned', 'debug' => true, 'backtrace' => '<h2 id="caption">Call Stack</h2><table class="table table-striped table-bordered" aria-describedby="caption">    <thead>        <tr>            <th scope="col">                <strong>#</strong>            </th>            <th scope="col">                <strong>Function</strong>            </th>            <th scope="col">                <strong>Location</strong>            </th>        </tr>    </thead>    <tbody>                    <tr>                <td>                    1                </td>                                <td>                    ()                </td>                                                <td>                    JROOT/libraries/src/Table/Table.php:586                </td>                            </tr>                    <tr>                <td>                    2                </td>                                <td>                    Joomla\\CMS\\Table\\Table->getDatabase()                </td>                                                <td>                    JROOT/libraries/src/Table/Table.php:769                </td>                            </tr>                    <tr>                <td>                    3                </td>                                <td>                    Joomla\\CMS\\Table\\Table->load()                </td>                                                <td>                    JROOT/administrator/components/com_easyblog/includes/easyblog.php:536                </td>                            </tr>                    <tr>                <td>                    4                </td>                                <td>                    EB::config()                </td>                                                <td>                    JROOT/components/com_easyblog/services/cron.php:16                </td>                            </tr>                    <tr>                <td>                    5                </td>                                <td>                    require_once()                </td>                                                <td>                    JROOT/administrator/components/com_easyblog/includes/easyblog.php:3436                </td>                            </tr>                    <tr>                <td>                    6                </td>                                <td>                    EB::loadServices()                </td>                                                <td>                    JROOT/components/com_easyblog/easyblog.php:34                </td>                            </tr>                    <tr>                <td>                    7                </td>                                <td>                    require_once()                </td>                                                <td>                    JROOT/libraries/src/Dispatcher/LegacyComponentDispatcher.php:71                </td>                            </tr>                    <tr>                <td>                    8                </td>                                <td>                    Joomla\\CMS\\Dispatcher\\LegacyComponentDispatcher::Joomla\\CMS\\Dispatcher\\{closure}()                </td>                                                <td>                    JROOT/libraries/src/Dispatcher/LegacyComponentDispatcher.php:73                </td>                            </tr>                    <tr>                <td>                    9                </td>                                <td>                    Joomla\\CMS\\Dispatcher\\LegacyComponentDispatcher->dispatch()                </td>                                                <td>                    JROOT/libraries/src/Component/ComponentHelper.php:361                </td>                            </tr>                    <tr>                <td>                    10                </td>                                <td>                    Joomla\\CMS\\Component\\ComponentHelper::renderComponent()                </td>                                                <td>                    JROOT/libraries/src/Application/SiteApplication.php:217                </td>                            </tr>                    <tr>                <td>                    11                </td>                                <td>                    Joomla\\CMS\\Application\\SiteApplication->dispatch()                </td>                                                <td>                    JROOT/libraries/src/Application/SiteApplication.php:271                </td>                            </tr>                    <tr>                <td>                    12                </td>                                <td>                    Joomla\\CMS\\Application\\SiteApplication->doExecute()                </td>                                                <td>                    JROOT/libraries/src/Application/CMSApplication.php:304                </td>                            </tr>                    <tr>                <td>                    13                </td>                                <td>                    Joomla\\CMS\\Application\\CMSApplication->execute()                </td>                                                <td>                    JROOT/includes/app.php:58                </td>                            </tr>                    <tr>                <td>                    14                </td>                                <td>                    require_once()                </td>                                                <td>                    JROOT/index.php:51                </td>                            </tr>            </tbody></table>', 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform), 'gantry' => object(Gantry)), array('page_footer' => array(object(__TwigTemplate_600600f71e39b62ce9852af2e008b8432be49642ba399d25d8d475fad1795b72), 'block_page_footer'), 'page_head' => array(object(__TwigTemplate_1e36c7bb84270da24774b577fbba179af395b92698b30e14eecb6000c8d7e098), 'block_page_head'), 'content' => array(object(__TwigTemplate_1e36c7bb84270da24774b577fbba179af395b92698b30e14eecb6000c8d7e098), 'block_content')))
     (/home/messiahdevformat/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:420)
  at Twig\Template->display(array('errorcode' => 0, 'error' => 'Joomla\\CMS\\Table\\Table::getDatabase(): Return value must be of type Joomla\\Database\\DatabaseInterface, EasyBlogDbJoomla returned', 'debug' => true, 'backtrace' => '<h2 id="caption">Call Stack</h2><table class="table table-striped table-bordered" aria-describedby="caption">    <thead>        <tr>            <th scope="col">                <strong>#</strong>            </th>            <th scope="col">                <strong>Function</strong>            </th>            <th scope="col">                <strong>Location</strong>            </th>        </tr>    </thead>    <tbody>                    <tr>                <td>                    1                </td>                                <td>                    ()                </td>                                                <td>                    JROOT/libraries/src/Table/Table.php:586                </td>                            </tr>                    <tr>                <td>                    2                </td>                                <td>                    Joomla\\CMS\\Table\\Table->getDatabase()                </td>                                                <td>                    JROOT/libraries/src/Table/Table.php:769                </td>                            </tr>                    <tr>                <td>                    3                </td>                                <td>                    Joomla\\CMS\\Table\\Table->load()                </td>                                                <td>                    JROOT/administrator/components/com_easyblog/includes/easyblog.php:536                </td>                            </tr>                    <tr>                <td>                    4                </td>                                <td>                    EB::config()                </td>                                                <td>                    JROOT/components/com_easyblog/services/cron.php:16                </td>                            </tr>                    <tr>                <td>                    5                </td>                                <td>                    require_once()                </td>                                                <td>                    JROOT/administrator/components/com_easyblog/includes/easyblog.php:3436                </td>                            </tr>                    <tr>                <td>                    6                </td>                                <td>                    EB::loadServices()                </td>                                                <td>                    JROOT/components/com_easyblog/easyblog.php:34                </td>                            </tr>                    <tr>                <td>                    7                </td>                                <td>                    require_once()                </td>                                                <td>                    JROOT/libraries/src/Dispatcher/LegacyComponentDispatcher.php:71                </td>                            </tr>                    <tr>                <td>                    8                </td>                                <td>                    Joomla\\CMS\\Dispatcher\\LegacyComponentDispatcher::Joomla\\CMS\\Dispatcher\\{closure}()                </td>                                                <td>                    JROOT/libraries/src/Dispatcher/LegacyComponentDispatcher.php:73                </td>                            </tr>                    <tr>                <td>                    9                </td>                                <td>                    Joomla\\CMS\\Dispatcher\\LegacyComponentDispatcher->dispatch()                </td>                                                <td>                    JROOT/libraries/src/Component/ComponentHelper.php:361                </td>                            </tr>                    <tr>                <td>                    10                </td>                                <td>                    Joomla\\CMS\\Component\\ComponentHelper::renderComponent()                </td>                                                <td>                    JROOT/libraries/src/Application/SiteApplication.php:217                </td>                            </tr>                    <tr>                <td>                    11                </td>                                <td>                    Joomla\\CMS\\Application\\SiteApplication->dispatch()                </td>                                                <td>                    JROOT/libraries/src/Application/SiteApplication.php:271                </td>                            </tr>                    <tr>                <td>                    12                </td>                                <td>                    Joomla\\CMS\\Application\\SiteApplication->doExecute()                </td>                                                <td>                    JROOT/libraries/src/Application/CMSApplication.php:304                </td>                            </tr>                    <tr>                <td>                    13                </td>                                <td>                    Joomla\\CMS\\Application\\CMSApplication->execute()                </td>                                                <td>                    JROOT/includes/app.php:58                </td>                            </tr>                    <tr>                <td>                    14                </td>                                <td>                    require_once()                </td>                                                <td>                    JROOT/index.php:51                </td>                            </tr>            </tbody></table>', 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform), 'gantry' => object(Gantry)), array('page_head' => array(object(__TwigTemplate_1e36c7bb84270da24774b577fbba179af395b92698b30e14eecb6000c8d7e098), 'block_page_head'), 'content' => array(object(__TwigTemplate_1e36c7bb84270da24774b577fbba179af395b92698b30e14eecb6000c8d7e098), 'block_content')))
     (/home/messiahdevformat/public_html/cache/gantry5/g5_chimera/twig/ec/ec83c5782b155cbe068a27a8005fb2f31813ebf3697bc8324cacba30e0643bfd.php:36)
  at __TwigTemplate_1e36c7bb84270da24774b577fbba179af395b92698b30e14eecb6000c8d7e098->doDisplay(array('errorcode' => 0, 'error' => 'Joomla\\CMS\\Table\\Table::getDatabase(): Return value must be of type Joomla\\Database\\DatabaseInterface, EasyBlogDbJoomla returned', 'debug' => true, 'backtrace' => '<h2 id="caption">Call Stack</h2><table class="table table-striped table-bordered" aria-describedby="caption">    <thead>        <tr>            <th scope="col">                <strong>#</strong>            </th>            <th scope="col">                <strong>Function</strong>            </th>            <th scope="col">                <strong>Location</strong>            </th>        </tr>    </thead>    <tbody>                    <tr>                <td>                    1                </td>                                <td>                    ()                </td>                                                <td>                    JROOT/libraries/src/Table/Table.php:586                </td>                            </tr>                    <tr>                <td>                    2                </td>                                <td>                    Joomla\\CMS\\Table\\Table->getDatabase()                </td>                                                <td>                    JROOT/libraries/src/Table/Table.php:769                </td>                            </tr>                    <tr>                <td>                    3                </td>                                <td>                    Joomla\\CMS\\Table\\Table->load()                </td>                                                <td>                    JROOT/administrator/components/com_easyblog/includes/easyblog.php:536                </td>                            </tr>                    <tr>                <td>                    4                </td>                                <td>                    EB::config()                </td>                                                <td>                    JROOT/components/com_easyblog/services/cron.php:16                </td>                            </tr>                    <tr>                <td>                    5                </td>                                <td>                    require_once()                </td>                                                <td>                    JROOT/administrator/components/com_easyblog/includes/easyblog.php:3436                </td>                            </tr>                    <tr>                <td>                    6                </td>                                <td>                    EB::loadServices()                </td>                                                <td>                    JROOT/components/com_easyblog/easyblog.php:34                </td>                            </tr>                    <tr>                <td>                    7                </td>                                <td>                    require_once()                </td>                                                <td>                    JROOT/libraries/src/Dispatcher/LegacyComponentDispatcher.php:71                </td>                            </tr>                    <tr>                <td>                    8                </td>                                <td>                    Joomla\\CMS\\Dispatcher\\LegacyComponentDispatcher::Joomla\\CMS\\Dispatcher\\{closure}()                </td>                                                <td>                    JROOT/libraries/src/Dispatcher/LegacyComponentDispatcher.php:73                </td>                            </tr>                    <tr>                <td>                    9                </td>                                <td>                    Joomla\\CMS\\Dispatcher\\LegacyComponentDispatcher->dispatch()                </td>                                                <td>                    JROOT/libraries/src/Component/ComponentHelper.php:361                </td>                            </tr>                    <tr>                <td>                    10                </td>                                <td>                    Joomla\\CMS\\Component\\ComponentHelper::renderComponent()                </td>                                                <td>                    JROOT/libraries/src/Application/SiteApplication.php:217                </td>                            </tr>                    <tr>                <td>                    11                </td>                                <td>                    Joomla\\CMS\\Application\\SiteApplication->dispatch()                </td>                                                <td>                    JROOT/libraries/src/Application/SiteApplication.php:271                </td>                            </tr>                    <tr>                <td>                    12                </td>                                <td>                    Joomla\\CMS\\Application\\SiteApplication->doExecute()                </td>                                                <td>                    JROOT/libraries/src/Application/CMSApplication.php:304                </td>                            </tr>                    <tr>                <td>                    13                </td>                                <td>                    Joomla\\CMS\\Application\\CMSApplication->execute()                </td>                                                <td>                    JROOT/includes/app.php:58                </td>                            </tr>                    <tr>                <td>                    14                </td>                                <td>                    require_once()                </td>                                                <td>                    JROOT/index.php:51                </td>                            </tr>            </tbody></table>', 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform), 'gantry' => object(Gantry)), array('page_head' => array(object(__TwigTemplate_1e36c7bb84270da24774b577fbba179af395b92698b30e14eecb6000c8d7e098), 'block_page_head'), 'content' => array(object(__TwigTemplate_1e36c7bb84270da24774b577fbba179af395b92698b30e14eecb6000c8d7e098), 'block_content')))
     (/home/messiahdevformat/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:453)
  at Twig\Template->displayWithErrorHandling(array('errorcode' => 0, 'error' => 'Joomla\\CMS\\Table\\Table::getDatabase(): Return value must be of type Joomla\\Database\\DatabaseInterface, EasyBlogDbJoomla returned', 'debug' => true, 'backtrace' => '<h2 id="caption">Call Stack</h2><table class="table table-striped table-bordered" aria-describedby="caption">    <thead>        <tr>            <th scope="col">                <strong>#</strong>            </th>            <th scope="col">                <strong>Function</strong>            </th>            <th scope="col">                <strong>Location</strong>            </th>        </tr>    </thead>    <tbody>                    <tr>                <td>                    1                </td>                                <td>                    ()                </td>                                                <td>                    JROOT/libraries/src/Table/Table.php:586                </td>                            </tr>                    <tr>                <td>                    2                </td>                                <td>                    Joomla\\CMS\\Table\\Table->getDatabase()                </td>                                                <td>                    JROOT/libraries/src/Table/Table.php:769                </td>                            </tr>                    <tr>                <td>                    3                </td>                                <td>                    Joomla\\CMS\\Table\\Table->load()                </td>                                                <td>                    JROOT/administrator/components/com_easyblog/includes/easyblog.php:536                </td>                            </tr>                    <tr>                <td>                    4                </td>                                <td>                    EB::config()                </td>                                                <td>                    JROOT/components/com_easyblog/services/cron.php:16                </td>                            </tr>                    <tr>                <td>                    5                </td>                                <td>                    require_once()                </td>                                                <td>                    JROOT/administrator/components/com_easyblog/includes/easyblog.php:3436                </td>                            </tr>                    <tr>                <td>                    6                </td>                                <td>                    EB::loadServices()                </td>                                                <td>                    JROOT/components/com_easyblog/easyblog.php:34                </td>                            </tr>                    <tr>                <td>                    7                </td>                                <td>                    require_once()                </td>                                                <td>                    JROOT/libraries/src/Dispatcher/LegacyComponentDispatcher.php:71                </td>                            </tr>                    <tr>                <td>                    8                </td>                                <td>                    Joomla\\CMS\\Dispatcher\\LegacyComponentDispatcher::Joomla\\CMS\\Dispatcher\\{closure}()                </td>                                                <td>                    JROOT/libraries/src/Dispatcher/LegacyComponentDispatcher.php:73                </td>                            </tr>                    <tr>                <td>                    9                </td>                                <td>                    Joomla\\CMS\\Dispatcher\\LegacyComponentDispatcher->dispatch()                </td>                                                <td>                    JROOT/libraries/src/Component/ComponentHelper.php:361                </td>                            </tr>                    <tr>                <td>                    10                </td>                                <td>                    Joomla\\CMS\\Component\\ComponentHelper::renderComponent()                </td>                                                <td>                    JROOT/libraries/src/Application/SiteApplication.php:217                </td>                            </tr>                    <tr>                <td>                    11                </td>                                <td>                    Joomla\\CMS\\Application\\SiteApplication->dispatch()                </td>                                                <td>                    JROOT/libraries/src/Application/SiteApplication.php:271                </td>                            </tr>                    <tr>                <td>                    12                </td>                                <td>                    Joomla\\CMS\\Application\\SiteApplication->doExecute()                </td>                                                <td>                    JROOT/libraries/src/Application/CMSApplication.php:304                </td>                            </tr>                    <tr>                <td>                    13                </td>                                <td>                    Joomla\\CMS\\Application\\CMSApplication->execute()                </td>                                                <td>                    JROOT/includes/app.php:58                </td>                            </tr>                    <tr>                <td>                    14                </td>                                <td>                    require_once()                </td>                                                <td>                    JROOT/index.php:51                </td>                            </tr>            </tbody></table>', 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform), 'gantry' => object(Gantry)), array('page_head' => array(object(__TwigTemplate_1e36c7bb84270da24774b577fbba179af395b92698b30e14eecb6000c8d7e098), 'block_page_head'), 'content' => array(object(__TwigTemplate_1e36c7bb84270da24774b577fbba179af395b92698b30e14eecb6000c8d7e098), 'block_content')))
     (/home/messiahdevformat/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:420)
  at Twig\Template->display(array('errorcode' => 0, 'error' => 'Joomla\\CMS\\Table\\Table::getDatabase(): Return value must be of type Joomla\\Database\\DatabaseInterface, EasyBlogDbJoomla returned', 'debug' => true, 'backtrace' => '<h2 id="caption">Call Stack</h2><table class="table table-striped table-bordered" aria-describedby="caption">    <thead>        <tr>            <th scope="col">                <strong>#</strong>            </th>            <th scope="col">                <strong>Function</strong>            </th>            <th scope="col">                <strong>Location</strong>            </th>        </tr>    </thead>    <tbody>                    <tr>                <td>                    1                </td>                                <td>                    ()                </td>                                                <td>                    JROOT/libraries/src/Table/Table.php:586                </td>                            </tr>                    <tr>                <td>                    2                </td>                                <td>                    Joomla\\CMS\\Table\\Table->getDatabase()                </td>                                                <td>                    JROOT/libraries/src/Table/Table.php:769                </td>                            </tr>                    <tr>                <td>                    3                </td>                                <td>                    Joomla\\CMS\\Table\\Table->load()                </td>                                                <td>                    JROOT/administrator/components/com_easyblog/includes/easyblog.php:536                </td>                            </tr>                    <tr>                <td>                    4                </td>                                <td>                    EB::config()                </td>                                                <td>                    JROOT/components/com_easyblog/services/cron.php:16                </td>                            </tr>                    <tr>                <td>                    5                </td>                                <td>                    require_once()                </td>                                                <td>                    JROOT/administrator/components/com_easyblog/includes/easyblog.php:3436                </td>                            </tr>                    <tr>                <td>                    6                </td>                                <td>                    EB::loadServices()                </td>                                                <td>                    JROOT/components/com_easyblog/easyblog.php:34                </td>                            </tr>                    <tr>                <td>                    7                </td>                                <td>                    require_once()                </td>                                                <td>                    JROOT/libraries/src/Dispatcher/LegacyComponentDispatcher.php:71                </td>                            </tr>                    <tr>                <td>                    8                </td>                                <td>                    Joomla\\CMS\\Dispatcher\\LegacyComponentDispatcher::Joomla\\CMS\\Dispatcher\\{closure}()                </td>                                                <td>                    JROOT/libraries/src/Dispatcher/LegacyComponentDispatcher.php:73                </td>                            </tr>                    <tr>                <td>                    9                </td>                                <td>                    Joomla\\CMS\\Dispatcher\\LegacyComponentDispatcher->dispatch()                </td>                                                <td>                    JROOT/libraries/src/Component/ComponentHelper.php:361                </td>                            </tr>                    <tr>                <td>                    10                </td>                                <td>                    Joomla\\CMS\\Component\\ComponentHelper::renderComponent()                </td>                                                <td>                    JROOT/libraries/src/Application/SiteApplication.php:217                </td>                            </tr>                    <tr>                <td>                    11                </td>                                <td>                    Joomla\\CMS\\Application\\SiteApplication->dispatch()                </td>                                                <td>                    JROOT/libraries/src/Application/SiteApplication.php:271                </td>                            </tr>                    <tr>                <td>                    12                </td>                                <td>                    Joomla\\CMS\\Application\\SiteApplication->doExecute()                </td>                                                <td>                    JROOT/libraries/src/Application/CMSApplication.php:304                </td>                            </tr>                    <tr>                <td>                    13                </td>                                <td>                    Joomla\\CMS\\Application\\CMSApplication->execute()                </td>                                                <td>                    JROOT/includes/app.php:58                </td>                            </tr>                    <tr>                <td>                    14                </td>                                <td>                    require_once()                </td>                                                <td>                    JROOT/index.php:51                </td>                            </tr>            </tbody></table>', 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform)))
     (/home/messiahdevformat/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:432)
  at Twig\Template->render(array('errorcode' => 0, 'error' => 'Joomla\\CMS\\Table\\Table::getDatabase(): Return value must be of type Joomla\\Database\\DatabaseInterface, EasyBlogDbJoomla returned', 'debug' => true, 'backtrace' => '<h2 id="caption">Call Stack</h2><table class="table table-striped table-bordered" aria-describedby="caption">    <thead>        <tr>            <th scope="col">                <strong>#</strong>            </th>            <th scope="col">                <strong>Function</strong>            </th>            <th scope="col">                <strong>Location</strong>            </th>        </tr>    </thead>    <tbody>                    <tr>                <td>                    1                </td>                                <td>                    ()                </td>                                                <td>                    JROOT/libraries/src/Table/Table.php:586                </td>                            </tr>                    <tr>                <td>                    2                </td>                                <td>                    Joomla\\CMS\\Table\\Table->getDatabase()                </td>                                                <td>                    JROOT/libraries/src/Table/Table.php:769                </td>                            </tr>                    <tr>                <td>                    3                </td>                                <td>                    Joomla\\CMS\\Table\\Table->load()                </td>                                                <td>                    JROOT/administrator/components/com_easyblog/includes/easyblog.php:536                </td>                            </tr>                    <tr>                <td>                    4                </td>                                <td>                    EB::config()                </td>                                                <td>                    JROOT/components/com_easyblog/services/cron.php:16                </td>                            </tr>                    <tr>                <td>                    5                </td>                                <td>                    require_once()                </td>                                                <td>                    JROOT/administrator/components/com_easyblog/includes/easyblog.php:3436                </td>                            </tr>                    <tr>                <td>                    6                </td>                                <td>                    EB::loadServices()                </td>                                                <td>                    JROOT/components/com_easyblog/easyblog.php:34                </td>                            </tr>                    <tr>                <td>                    7                </td>                                <td>                    require_once()                </td>                                                <td>                    JROOT/libraries/src/Dispatcher/LegacyComponentDispatcher.php:71                </td>                            </tr>                    <tr>                <td>                    8                </td>                                <td>                    Joomla\\CMS\\Dispatcher\\LegacyComponentDispatcher::Joomla\\CMS\\Dispatcher\\{closure}()                </td>                                                <td>                    JROOT/libraries/src/Dispatcher/LegacyComponentDispatcher.php:73                </td>                            </tr>                    <tr>                <td>                    9                </td>                                <td>                    Joomla\\CMS\\Dispatcher\\LegacyComponentDispatcher->dispatch()                </td>                                                <td>                    JROOT/libraries/src/Component/ComponentHelper.php:361                </td>                            </tr>                    <tr>                <td>                    10                </td>                                <td>                    Joomla\\CMS\\Component\\ComponentHelper::renderComponent()                </td>                                                <td>                    JROOT/libraries/src/Application/SiteApplication.php:217                </td>                            </tr>                    <tr>                <td>                    11                </td>                                <td>                    Joomla\\CMS\\Application\\SiteApplication->dispatch()                </td>                                                <td>                    JROOT/libraries/src/Application/SiteApplication.php:271                </td>                            </tr>                    <tr>                <td>                    12                </td>                                <td>                    Joomla\\CMS\\Application\\SiteApplication->doExecute()                </td>                                                <td>                    JROOT/libraries/src/Application/CMSApplication.php:304                </td>                            </tr>                    <tr>                <td>                    13                </td>                                <td>                    Joomla\\CMS\\Application\\CMSApplication->execute()                </td>                                                <td>                    JROOT/includes/app.php:58                </td>                            </tr>                    <tr>                <td>                    14                </td>                                <td>                    require_once()                </td>                                                <td>                    JROOT/index.php:51                </td>                            </tr>            </tbody></table>', 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform)), array())
     (/home/messiahdevformat/public_html/libraries/gantry5/compat/vendor/twig/twig/src/TemplateWrapper.php:47)
  at Twig\TemplateWrapper->render(array('errorcode' => 0, 'error' => 'Joomla\\CMS\\Table\\Table::getDatabase(): Return value must be of type Joomla\\Database\\DatabaseInterface, EasyBlogDbJoomla returned', 'debug' => true, 'backtrace' => '<h2 id="caption">Call Stack</h2><table class="table table-striped table-bordered" aria-describedby="caption">    <thead>        <tr>            <th scope="col">                <strong>#</strong>            </th>            <th scope="col">                <strong>Function</strong>            </th>            <th scope="col">                <strong>Location</strong>            </th>        </tr>    </thead>    <tbody>                    <tr>                <td>                    1                </td>                                <td>                    ()                </td>                                                <td>                    JROOT/libraries/src/Table/Table.php:586                </td>                            </tr>                    <tr>                <td>                    2                </td>                                <td>                    Joomla\\CMS\\Table\\Table->getDatabase()                </td>                                                <td>                    JROOT/libraries/src/Table/Table.php:769                </td>                            </tr>                    <tr>                <td>                    3                </td>                                <td>                    Joomla\\CMS\\Table\\Table->load()                </td>                                                <td>                    JROOT/administrator/components/com_easyblog/includes/easyblog.php:536                </td>                            </tr>                    <tr>                <td>                    4                </td>                                <td>                    EB::config()                </td>                                                <td>                    JROOT/components/com_easyblog/services/cron.php:16                </td>                            </tr>                    <tr>                <td>                    5                </td>                                <td>                    require_once()                </td>                                                <td>                    JROOT/administrator/components/com_easyblog/includes/easyblog.php:3436                </td>                            </tr>                    <tr>                <td>                    6                </td>                                <td>                    EB::loadServices()                </td>                                                <td>                    JROOT/components/com_easyblog/easyblog.php:34                </td>                            </tr>                    <tr>                <td>                    7                </td>                                <td>                    require_once()                </td>                                                <td>                    JROOT/libraries/src/Dispatcher/LegacyComponentDispatcher.php:71                </td>                            </tr>                    <tr>                <td>                    8                </td>                                <td>                    Joomla\\CMS\\Dispatcher\\LegacyComponentDispatcher::Joomla\\CMS\\Dispatcher\\{closure}()                </td>                                                <td>                    JROOT/libraries/src/Dispatcher/LegacyComponentDispatcher.php:73                </td>                            </tr>                    <tr>                <td>                    9                </td>                                <td>                    Joomla\\CMS\\Dispatcher\\LegacyComponentDispatcher->dispatch()                </td>                                                <td>                    JROOT/libraries/src/Component/ComponentHelper.php:361                </td>                            </tr>                    <tr>                <td>                    10                </td>                                <td>                    Joomla\\CMS\\Component\\ComponentHelper::renderComponent()                </td>                                                <td>                    JROOT/libraries/src/Application/SiteApplication.php:217                </td>                            </tr>                    <tr>                <td>                    11                </td>                                <td>                    Joomla\\CMS\\Application\\SiteApplication->dispatch()                </td>                                                <td>                    JROOT/libraries/src/Application/SiteApplication.php:271                </td>                            </tr>                    <tr>                <td>                    12                </td>                                <td>                    Joomla\\CMS\\Application\\SiteApplication->doExecute()                </td>                                                <td>                    JROOT/libraries/src/Application/CMSApplication.php:304                </td>                            </tr>                    <tr>                <td>                    13                </td>                                <td>                    Joomla\\CMS\\Application\\CMSApplication->execute()                </td>                                                <td>                    JROOT/includes/app.php:58                </td>                            </tr>                    <tr>                <td>                    14                </td>                                <td>                    require_once()                </td>                                                <td>                    JROOT/index.php:51                </td>                            </tr>            </tbody></table>', 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform)))
     (/home/messiahdevformat/public_html/libraries/gantry5/compat/vendor/twig/twig/src/Environment.php:384)
  at Twig\Environment->render('error.html.twig', array('errorcode' => 0, 'error' => 'Joomla\\CMS\\Table\\Table::getDatabase(): Return value must be of type Joomla\\Database\\DatabaseInterface, EasyBlogDbJoomla returned', 'debug' => true, 'backtrace' => '<h2 id="caption">Call Stack</h2><table class="table table-striped table-bordered" aria-describedby="caption">    <thead>        <tr>            <th scope="col">                <strong>#</strong>            </th>            <th scope="col">                <strong>Function</strong>            </th>            <th scope="col">                <strong>Location</strong>            </th>        </tr>    </thead>    <tbody>                    <tr>                <td>                    1                </td>                                <td>                    ()                </td>                                                <td>                    JROOT/libraries/src/Table/Table.php:586                </td>                            </tr>                    <tr>                <td>                    2                </td>                                <td>                    Joomla\\CMS\\Table\\Table->getDatabase()                </td>                                                <td>                    JROOT/libraries/src/Table/Table.php:769                </td>                            </tr>                    <tr>                <td>                    3                </td>                                <td>                    Joomla\\CMS\\Table\\Table->load()                </td>                                                <td>                    JROOT/administrator/components/com_easyblog/includes/easyblog.php:536                </td>                            </tr>                    <tr>                <td>                    4                </td>                                <td>                    EB::config()                </td>                                                <td>                    JROOT/components/com_easyblog/services/cron.php:16                </td>                            </tr>                    <tr>                <td>                    5                </td>                                <td>                    require_once()                </td>                                                <td>                    JROOT/administrator/components/com_easyblog/includes/easyblog.php:3436                </td>                            </tr>                    <tr>                <td>                    6                </td>                                <td>                    EB::loadServices()                </td>                                                <td>                    JROOT/components/com_easyblog/easyblog.php:34                </td>                            </tr>                    <tr>                <td>                    7                </td>                                <td>                    require_once()                </td>                                                <td>                    JROOT/libraries/src/Dispatcher/LegacyComponentDispatcher.php:71                </td>                            </tr>                    <tr>                <td>                    8                </td>                                <td>                    Joomla\\CMS\\Dispatcher\\LegacyComponentDispatcher::Joomla\\CMS\\Dispatcher\\{closure}()                </td>                                                <td>                    JROOT/libraries/src/Dispatcher/LegacyComponentDispatcher.php:73                </td>                            </tr>                    <tr>                <td>                    9                </td>                                <td>                    Joomla\\CMS\\Dispatcher\\LegacyComponentDispatcher->dispatch()                </td>                                                <td>                    JROOT/libraries/src/Component/ComponentHelper.php:361                </td>                            </tr>                    <tr>                <td>                    10                </td>                                <td>                    Joomla\\CMS\\Component\\ComponentHelper::renderComponent()                </td>                                                <td>                    JROOT/libraries/src/Application/SiteApplication.php:217                </td>                            </tr>                    <tr>                <td>                    11                </td>                                <td>                    Joomla\\CMS\\Application\\SiteApplication->dispatch()                </td>                                                <td>                    JROOT/libraries/src/Application/SiteApplication.php:271                </td>                            </tr>                    <tr>                <td>                    12                </td>                                <td>                    Joomla\\CMS\\Application\\SiteApplication->doExecute()                </td>                                                <td>                    JROOT/libraries/src/Application/CMSApplication.php:304                </td>                            </tr>                    <tr>                <td>                    13                </td>                                <td>                    Joomla\\CMS\\Application\\CMSApplication->execute()                </td>                                                <td>                    JROOT/includes/app.php:58                </td>                            </tr>                    <tr>                <td>                    14                </td>                                <td>                    require_once()                </td>                                                <td>                    JROOT/index.php:51                </td>                            </tr>            </tbody></table>', 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform)))
     (/home/messiahdevformat/public_html/libraries/gantry5/src/classes/Gantry/Component/Theme/AbstractTheme.php:178)
  at Gantry\Component\Theme\AbstractTheme->render('error.html.twig', array('errorcode' => 0, 'error' => 'Joomla\\CMS\\Table\\Table::getDatabase(): Return value must be of type Joomla\\Database\\DatabaseInterface, EasyBlogDbJoomla returned', 'debug' => true, 'backtrace' => '<h2 id="caption">Call Stack</h2><table class="table table-striped table-bordered" aria-describedby="caption">    <thead>        <tr>            <th scope="col">                <strong>#</strong>            </th>            <th scope="col">                <strong>Function</strong>            </th>            <th scope="col">                <strong>Location</strong>            </th>        </tr>    </thead>    <tbody>                    <tr>                <td>                    1                </td>                                <td>                    ()                </td>                                                <td>                    JROOT/libraries/src/Table/Table.php:586                </td>                            </tr>                    <tr>                <td>                    2                </td>                                <td>                    Joomla\\CMS\\Table\\Table->getDatabase()                </td>                                                <td>                    JROOT/libraries/src/Table/Table.php:769                </td>                            </tr>                    <tr>                <td>                    3                </td>                                <td>                    Joomla\\CMS\\Table\\Table->load()                </td>                                                <td>                    JROOT/administrator/components/com_easyblog/includes/easyblog.php:536                </td>                            </tr>                    <tr>                <td>                    4                </td>                                <td>                    EB::config()                </td>                                                <td>                    JROOT/components/com_easyblog/services/cron.php:16                </td>                            </tr>                    <tr>                <td>                    5                </td>                                <td>                    require_once()                </td>                                                <td>                    JROOT/administrator/components/com_easyblog/includes/easyblog.php:3436                </td>                            </tr>                    <tr>                <td>                    6                </td>                                <td>                    EB::loadServices()                </td>                                                <td>                    JROOT/components/com_easyblog/easyblog.php:34                </td>                            </tr>                    <tr>                <td>                    7                </td>                                <td>                    require_once()                </td>                                                <td>                    JROOT/libraries/src/Dispatcher/LegacyComponentDispatcher.php:71                </td>                            </tr>                    <tr>                <td>                    8                </td>                                <td>                    Joomla\\CMS\\Dispatcher\\LegacyComponentDispatcher::Joomla\\CMS\\Dispatcher\\{closure}()                </td>                                                <td>                    JROOT/libraries/src/Dispatcher/LegacyComponentDispatcher.php:73                </td>                            </tr>                    <tr>                <td>                    9                </td>                                <td>                    Joomla\\CMS\\Dispatcher\\LegacyComponentDispatcher->dispatch()                </td>                                                <td>                    JROOT/libraries/src/Component/ComponentHelper.php:361                </td>                            </tr>                    <tr>                <td>                    10                </td>                                <td>                    Joomla\\CMS\\Component\\ComponentHelper::renderComponent()                </td>                                                <td>                    JROOT/libraries/src/Application/SiteApplication.php:217                </td>                            </tr>                    <tr>                <td>                    11                </td>                                <td>                    Joomla\\CMS\\Application\\SiteApplication->dispatch()                </td>                                                <td>                    JROOT/libraries/src/Application/SiteApplication.php:271                </td>                            </tr>                    <tr>                <td>                    12                </td>                                <td>                    Joomla\\CMS\\Application\\SiteApplication->doExecute()                </td>                                                <td>                    JROOT/libraries/src/Application/CMSApplication.php:304                </td>                            </tr>                    <tr>                <td>                    13                </td>                                <td>                    Joomla\\CMS\\Application\\CMSApplication->execute()                </td>                                                <td>                    JROOT/includes/app.php:58                </td>                            </tr>                    <tr>                <td>                    14                </td>                                <td>                    require_once()                </td>                                                <td>                    JROOT/index.php:51                </td>                            </tr>            </tbody></table>', 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform)))
     (/home/messiahdevformat/public_html/templates/g5_chimera/error.php:46)
  at require('/home/messiahdevformat/public_html/templates/g5_chimera/error.php')
     (/home/messiahdevformat/public_html/libraries/src/Document/HtmlDocument.php:731)
  at Joomla\CMS\Document\HtmlDocument->_loadTemplate('/home/messiahdevformat/public_html/templates/g5_chimera', 'error.php')
     (/home/messiahdevformat/public_html/libraries/src/Document/HtmlDocument.php:785)
  at Joomla\CMS\Document\HtmlDocument->_fetchTemplate(array('template' => 'g5_chimera', 'directory' => '/home/messiahdevformat/public_html/templates', 'debug' => true, 'csp_nonce' => null, 'templateInherits' => '', 'params' => object(Registry), 'file' => 'error.php'))
     (/home/messiahdevformat/public_html/libraries/src/Document/HtmlDocument.php:622)
  at Joomla\CMS\Document\HtmlDocument->parse(array('template' => 'g5_chimera', 'directory' => '/home/messiahdevformat/public_html/templates', 'debug' => true, 'csp_nonce' => null, 'templateInherits' => '', 'params' => object(Registry), 'file' => 'error.php'))
     (/home/messiahdevformat/public_html/libraries/src/Document/HtmlDocument.php:640)
  at Joomla\CMS\Document\HtmlDocument->render(false, array('template' => 'g5_chimera', 'directory' => '/home/messiahdevformat/public_html/templates', 'debug' => true, 'csp_nonce' => null, 'templateInherits' => '', 'params' => object(Registry), 'file' => 'error.php'))
     (/home/messiahdevformat/public_html/libraries/src/Document/ErrorDocument.php:139)
  at Joomla\CMS\Document\ErrorDocument->render(false, array('template' => 'g5_chimera', 'directory' => '/home/messiahdevformat/public_html/templates', 'debug' => true, 'csp_nonce' => null, 'templateInherits' => '', 'params' => object(Registry), 'file' => 'error.php'))
     (/home/messiahdevformat/public_html/libraries/src/Error/Renderer/HtmlRenderer.php:70)
  at Joomla\CMS\Error\Renderer\HtmlRenderer->render(object(TypeError))
     (/home/messiahdevformat/public_html/libraries/src/Exception/ExceptionHandler.php:139)
  at Joomla\CMS\Exception\ExceptionHandler::render(object(TypeError))
     (/home/messiahdevformat/public_html/libraries/src/Exception/ExceptionHandler.php:73)
  at Joomla\CMS\Exception\ExceptionHandler::handleException(object(TypeError))
     (/home/messiahdevformat/public_html/libraries/src/Application/CMSApplication.php:334)
  at Joomla\CMS\Application\CMSApplication->execute()
     (/home/messiahdevformat/public_html/includes/app.php:58)
  at require_once('/home/messiahdevformat/public_html/includes/app.php')
     (/home/messiahdevformat/public_html/index.php:51)                
[1/2] TypeError
TypeError:
Joomla\CMS\Table\Table::getDatabase(): Return value must be of type Joomla\Database\DatabaseInterface, EasyBlogDbJoomla returned

  at /home/messiahdevformat/public_html/libraries/src/Table/Table.php:586
  at Joomla\CMS\Table\Table->getDatabase()
     (/home/messiahdevformat/public_html/libraries/src/Table/Table.php:769)
  at Joomla\CMS\Table\Table->load('config')
     (/home/messiahdevformat/public_html/administrator/components/com_easyblog/includes/easyblog.php:536)
  at EB::config()
     (/home/messiahdevformat/public_html/components/com_easyblog/services/cron.php:16)
  at require_once('/home/messiahdevformat/public_html/components/com_easyblog/services/cron.php')
     (/home/messiahdevformat/public_html/administrator/components/com_easyblog/includes/easyblog.php:3436)
  at EB::loadServices()
     (/home/messiahdevformat/public_html/components/com_easyblog/easyblog.php:34)
  at require_once('/home/messiahdevformat/public_html/components/com_easyblog/easyblog.php')
     (/home/messiahdevformat/public_html/libraries/src/Dispatcher/LegacyComponentDispatcher.php:71)
  at Joomla\CMS\Dispatcher\LegacyComponentDispatcher::Joomla\CMS\Dispatcher\{closure}('/home/messiahdevformat/public_html/components/com_easyblog/easyblog.php')
     (/home/messiahdevformat/public_html/libraries/src/Dispatcher/LegacyComponentDispatcher.php:73)
  at Joomla\CMS\Dispatcher\LegacyComponentDispatcher->dispatch()
     (/home/messiahdevformat/public_html/libraries/src/Component/ComponentHelper.php:361)
  at Joomla\CMS\Component\ComponentHelper::renderComponent('com_easyblog')
     (/home/messiahdevformat/public_html/libraries/src/Application/SiteApplication.php:217)
  at Joomla\CMS\Application\SiteApplication->dispatch()
     (/home/messiahdevformat/public_html/libraries/src/Application/SiteApplication.php:271)
  at Joomla\CMS\Application\SiteApplication->doExecute()
     (/home/messiahdevformat/public_html/libraries/src/Application/CMSApplication.php:304)
  at Joomla\CMS\Application\CMSApplication->execute()
     (/home/messiahdevformat/public_html/includes/app.php:58)
  at require_once('/home/messiahdevformat/public_html/includes/app.php')
     (/home/messiahdevformat/public_html/index.php:51)