Article not found (500 Whoops, looks like something went wrong.)

Article not found

Exceptions 2

Exception

  1.                 $db->setQuery($query);
  2.                 $data $db->loadObject();
  3.                 if (empty($data)) {
  4.                     throw new \Exception(Text::_('COM_CONTENT_ERROR_ARTICLE_NOT_FOUND'), 404);
  5.                 }
  6.                 // Check for published state if filter set.
  7.                 if ((is_numeric($published) || is_numeric($archived)) && ($data->state != $published && $data->state != $archived)) {
  8.                     throw new \Exception(Text::_('COM_CONTENT_ERROR_ARTICLE_NOT_FOUND'), 404);
  1.             return $this->article;
  2.         }
  3.         $model = new JArticleModel;
  4.         $this->article $model->getItem($this->request->id);
  5.         return $this->article;
  6.     }
  7.     protected function isArticle(): bool
  1.         if (empty($this->selection))
  2.         {
  3.             return false;
  4.         }
  5.         $item $this->getArticle();
  6.         $publish_state $item->state;
  7.         $now JFactory::getDate()->format('Y-m-d H:i:s');
  1.             return $cache->set(true);
  2.         }
  3.         $class->beforePass();
  4.         $pass $class->pass();
  5.         if ($rule->exclude ?? false)
  6.         {
  7.             $pass = ! $pass;
  8.         }
  1.             if ( ! empty($enabled_types) && ! in_array($rule->type$enabled_types))
  2.             {
  3.                 continue;
  4.             }
  5.             $pass_rule $this->passRule($rule);
  6.             // Break if not passed and matching method is ALL
  7.             if ( ! $pass_rule && $group->match_all)
  8.             {
  9.                 $pass false;
  1.         $pass true;
  2.         foreach ($this->condition->groups as $group)
  3.         {
  4.             $pass_group $this->passGroup($group$enabled_types);
  5.             // Break if not passed and matching method is ALL
  6.             if ( ! $pass_group && $this->condition->match_all)
  7.             {
  8.                 $pass false;
  1.     {
  2.         $conditions = [];
  3.         return (new Api_Conditions($article))
  4.             ->setConditionByExtensionItem('com_advancedmodules'$module->id)
  5.             ->pass($conditions);
  6.     }
  7. }
  1.             {
  2.                 $filtered_modules[] = $module;
  3.                 continue;
  4.             }
  5.             if ( ! self::pass($module))
  6.             {
  7.                 continue;
  8.             }
  9.             self::setExtraParams($module);
Helper::prepareModuleList(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), 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/japantouring/public_html/plugins/system/advancedmodules/advancedmodules.php (line 124)
  1.             if (RL_Document::isAdmin())
  2.             {
  3.                 return;
  4.             }
  5.             Helper::prepareModuleList($modules);
  6.         }
  7.         public function onRenderModule(&$module)
  8.         {
  9.             if (RL_Document::isAdmin())
PlgSystemAdvancedModules->onPrepareModuleList(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), object(stdClass), object(stdClass), object(stdClass), object(stdClass), object(stdClass), object(stdClass), object(stdClass), object(stdClass), object(stdClass), object(stdClass), object(stdClass), object(stdClass)), null) in /home/japantouring/public_html/libraries/src/Plugin/CMSPlugin.php (line 289)
  1.                 }
  2.                 // Convert to indexed array for unpacking.
  3.                 $arguments array_values($arguments);
  4.                 $result $this->{$methodName}(...$arguments);
  5.                 // Ignore null results
  6.                 if ($result === null) {
  7.                     return;
  8.                 }
  1.             foreach ($this->listeners[$event->getName()] as $listener) {
  2.                 if ($event->isStopped()) {
  3.                     return $event;
  4.                 }
  5.                 $listener($event);
  6.             }
  7.         }
  8.         return $event;
  9.     }
Dispatcher->dispatch('onPrepareModuleList', object(PrepareModuleListEvent)) in /home/japantouring/public_html/libraries/src/Helper/ModuleHelper.php (line 379)
  1.         $dispatcher Factory::getApplication()->getDispatcher();
  2.         $modules    = [];
  3.         $modules $dispatcher->dispatch('onPrepareModuleList', new Module\PrepareModuleListEvent('onPrepareModuleList', [
  4.             'modules' => &$modules// @todo: Remove reference in Joomla 6, see PrepareModuleListEvent::__constructor()
  5.         ]))->getArgument('modules'$modules);
  6.         // If the onPrepareModuleList event returns an array of modules, then ignore the default module list creation
  7.         if (!$modules) {
  8.             $modules = static::getModuleList();
  1.     public static function &getModules($position)
  2.     {
  3.         $position strtolower($position);
  4.         $result   = [];
  5.         $input    Factory::getApplication()->getInput();
  6.         $modules  = &static::load();
  7.         $total    \count($modules);
  8.         for ($i 0$i $total$i++) {
  9.             if ($modules[$i]->position === $position) {
  10.                 $result[] = &$modules[$i];
  1.     {
  2.         if ((isset(parent::$_buffer['modules'][$positionName])) && (parent::$_buffer['modules'][$positionName] === false)) {
  3.             return 0;
  4.         }
  5.         $modules ModuleHelper::getModules($positionName);
  6.         if (!$withContentOnly) {
  7.             return \count($modules);
  8.         }
HtmlDocument->countModules('menu') in /home/japantouring/public_html/templates/cassiopeia/error.php (line 135)
  1.                         <div class="site-description"><?php echo htmlspecialchars($this->params->get('siteDescription')); ?></div>
  2.                     <?php endif; ?>
  3.                 </div>
  4.             </div>
  5.         <?php endif; ?>
  6.         <?php if ($this->countModules('menu') || $this->countModules('search')) : ?>
  7.             <div class="grid-child container-nav">
  8.                 <?php if ($this->countModules('menu')) : ?>
  9.                     <jdoc:include type="modules" name="menu" style="none" />
  10.                 <?php endif; ?>
  11.                 <?php if ($this->countModules('search')) : ?>
require('/home/japantouring/public_html/templates/cassiopeia/error.php') in /home/japantouring/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/japantouring/public_html/templates/cassiopeia', 'error.php') in /home/japantouring/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' => 'cassiopeia_japantouring', 'directory' => '/home/japantouring/public_html/templates', 'debug' => true, 'csp_nonce' => null, 'templateInherits' => 'cassiopeia', 'params' => object(Registry), 'file' => 'error.php')) in /home/japantouring/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' => 'cassiopeia_japantouring', 'directory' => '/home/japantouring/public_html/templates', 'debug' => true, 'csp_nonce' => null, 'templateInherits' => 'cassiopeia', 'params' => object(Registry), 'file' => 'error.php')) in /home/japantouring/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' => 'cassiopeia_japantouring', 'directory' => '/home/japantouring/public_html/templates', 'debug' => true, 'csp_nonce' => null, 'templateInherits' => 'cassiopeia', 'params' => object(Registry), 'file' => 'error.php')) in /home/japantouring/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' => 'cassiopeia_japantouring', 'directory' => '/home/japantouring/public_html/templates', 'debug' => true, 'csp_nonce' => null, 'templateInherits' => 'cassiopeia', 'params' => object(Registry), 'file' => 'error.php')) in /home/japantouring/public_html/libraries/src/Error/Renderer/HtmlRenderer.php (line 78)
  1.                 'template'         => $template->template,
  2.                 'directory'        => JPATH_THEMES,
  3.                 'debug'            => JDEBUG,
  4.                 'csp_nonce'        => $app->get('csp_nonce'),
  5.                 'templateInherits' => $template->parent,
  6.                 'params'           => $template->params,
  7.             ]
  8.         );
  9.     }
  10. }
HtmlRenderer->render(object(Exception)) in /home/japantouring/public_html/libraries/src/Exception/ExceptionHandler.php (line 136)
  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(Exception)) in /home/japantouring/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(Exception)) in /home/japantouring/public_html/libraries/src/Application/CMSApplication.php (line 336)
  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/japantouring/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/japantouring/public_html/includes/app.php') in /home/japantouring/public_html/index.php (line 32)
  1.  * define() is used rather than "const" to not error for PHP 5.2 and lower
  2.  */
  3. define('_JEXEC'1);
  4. // Run the application - All executable code should be triggered through this file
  5. require_once dirname(__FILE__) . '/includes/app.php';

Exception

Article not found

  1.                 $db->setQuery($query);
  2.                 $data $db->loadObject();
  3.                 if (empty($data)) {
  4.                     throw new \Exception(Text::_('COM_CONTENT_ERROR_ARTICLE_NOT_FOUND'), 404);
  5.                 }
  6.                 // Check for published state if filter set.
  7.                 if ((is_numeric($published) || is_numeric($archived)) && ($data->state != $published && $data->state != $archived)) {
  8.                     throw new \Exception(Text::_('COM_CONTENT_ERROR_ARTICLE_NOT_FOUND'), 404);
  1.             $method 'get' ucfirst($property);
  2.             // Does the method exist?
  3.             if (method_exists($this->_models[$model], $method)) {
  4.                 // The method exists, let's call it and return what we get
  5.                 return $this->_models[$model]->$method();
  6.             }
  7.         }
  8.         return $this->legacyGet($property$default);
  9.     }
  1.         }
  2.         $app  Factory::getApplication();
  3.         $user $this->getCurrentUser();
  4.         $this->item  $this->get('Item');
  5.         $this->print $app->getInput()->getBool('print'false);
  6.         $this->state $this->get('State');
  7.         $this->user  $user;
  8.         // Check for errors.
  1.                 $cache->get($view'display');
  2.             } catch (CacheExceptionInterface $exception) {
  3.                 $view->display();
  4.             }
  5.         } else {
  6.             $view->display();
  7.         }
  8.         return $this;
  9.     }
BaseController->display(true, array('catid' => 'INT', 'id' => 'INT', 'cid' => 'ARRAY', 'year' => 'INT', 'month' => 'INT', 'limit' => 'UINT', 'limitstart' => 'UINT', 'showall' => 'INT', 'return' => 'BASE64', 'filter' => 'STRING', 'filter_order' => 'CMD', 'filter_order_Dir' => 'CMD', 'filter-search' => 'STRING', 'print' => 'BOOLEAN', 'lang' => 'CMD', 'Itemid' => 'INT')) in /home/japantouring/public_html/components/com_content/src/Controller/DisplayController.php (line 122)
  1.                     $model->hit();
  2.                 }
  3.             }
  4.         }
  5.         parent::display($cachable$safeurlparams);
  6.         return $this;
  7.     }
  8. }
  1.         }
  2.         // Record the actual task being fired
  3.         $this->doTask $doTask;
  4.         return $this->$doTask();
  5.     }
  6.     /**
  7.      * Method to get a model object, loading it if required.
  8.      *
  1.             $config['name'] = strtolower($this->input->get('controller'));
  2.         }
  3.         // Execute the task for this component
  4.         $controller $this->getController($controllerucfirst($this->app->getName()), $config);
  5.         $controller->execute($task);
  6.         $controller->redirect();
  7.     }
  8.     /**
  9.      * Get a controller from the component
  1.                 return;
  2.             }
  3.         }
  4.         parent::dispatch();
  5.     }
  6. }
  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_content') in /home/japantouring/public_html/libraries/src/Application/SiteApplication.php (line 218)
  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.              */
  2.             $this->checkUserRequireReset('com_users''profile''edit''com_users/profile.save,com_users/profile.apply,com_users/user.logout');
  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/japantouring/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/japantouring/public_html/includes/app.php') in /home/japantouring/public_html/index.php (line 32)
  1.  * define() is used rather than "const" to not error for PHP 5.2 and lower
  2.  */
  3. define('_JEXEC'1);
  4. // Run the application - All executable code should be triggered through this file
  5. require_once dirname(__FILE__) . '/includes/app.php';

Stack Traces 2

[2/2] Exception
Exception:
Article not found

  at /home/japantouring/public_html/components/com_content/src/Model/ArticleModel.php:218
  at Joomla\Component\Content\Site\Model\ArticleModel->getItem(85)
     (/home/japantouring/public_html/administrator/components/com_conditions/src/Condition/Content/Content.php:31)
  at RegularLabs\Component\Conditions\Administrator\Condition\Content\Content->getArticle()
     (/home/japantouring/public_html/administrator/components/com_conditions/src/Condition/Content/Article/Status.php:36)
  at RegularLabs\Component\Conditions\Administrator\Condition\Content\Article\Status->pass()
     (/home/japantouring/public_html/administrator/components/com_conditions/src/Api/Conditions.php:187)
  at RegularLabs\Component\Conditions\Administrator\Api\Conditions->passRule(object(stdClass))
     (/home/japantouring/public_html/administrator/components/com_conditions/src/Api/Conditions.php:142)
  at RegularLabs\Component\Conditions\Administrator\Api\Conditions->passGroup(object(stdClass), array())
     (/home/japantouring/public_html/administrator/components/com_conditions/src/Api/Conditions.php:59)
  at RegularLabs\Component\Conditions\Administrator\Api\Conditions->pass(array())
     (/home/japantouring/public_html/plugins/system/advancedmodules/src/Helper.php:389)
  at RegularLabs\Plugin\System\AdvancedModules\Helper::pass(object(stdClass))
     (/home/japantouring/public_html/plugins/system/advancedmodules/src/Helper.php:70)
  at RegularLabs\Plugin\System\AdvancedModules\Helper::prepareModuleList(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), 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/japantouring/public_html/plugins/system/advancedmodules/advancedmodules.php:124)
  at PlgSystemAdvancedModules->onPrepareModuleList(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), object(stdClass), object(stdClass), object(stdClass), object(stdClass), object(stdClass), object(stdClass), object(stdClass), object(stdClass), object(stdClass), object(stdClass), object(stdClass), object(stdClass)), null)
     (/home/japantouring/public_html/libraries/src/Plugin/CMSPlugin.php:289)
  at Joomla\CMS\Plugin\CMSPlugin->Joomla\CMS\Plugin\{closure}(object(PrepareModuleListEvent))
     (/home/japantouring/public_html/libraries/vendor/joomla/event/src/Dispatcher.php:454)
  at Joomla\Event\Dispatcher->dispatch('onPrepareModuleList', object(PrepareModuleListEvent))
     (/home/japantouring/public_html/libraries/src/Helper/ModuleHelper.php:379)
  at Joomla\CMS\Helper\ModuleHelper::load()
     (/home/japantouring/public_html/libraries/src/Helper/ModuleHelper.php:89)
  at Joomla\CMS\Helper\ModuleHelper::getModules('menu')
     (/home/japantouring/public_html/libraries/src/Document/HtmlDocument.php:669)
  at Joomla\CMS\Document\HtmlDocument->countModules('menu')
     (/home/japantouring/public_html/templates/cassiopeia/error.php:135)
  at require('/home/japantouring/public_html/templates/cassiopeia/error.php')
     (/home/japantouring/public_html/libraries/src/Document/HtmlDocument.php:731)
  at Joomla\CMS\Document\HtmlDocument->_loadTemplate('/home/japantouring/public_html/templates/cassiopeia', 'error.php')
     (/home/japantouring/public_html/libraries/src/Document/HtmlDocument.php:785)
  at Joomla\CMS\Document\HtmlDocument->_fetchTemplate(array('template' => 'cassiopeia_japantouring', 'directory' => '/home/japantouring/public_html/templates', 'debug' => true, 'csp_nonce' => null, 'templateInherits' => 'cassiopeia', 'params' => object(Registry), 'file' => 'error.php'))
     (/home/japantouring/public_html/libraries/src/Document/HtmlDocument.php:622)
  at Joomla\CMS\Document\HtmlDocument->parse(array('template' => 'cassiopeia_japantouring', 'directory' => '/home/japantouring/public_html/templates', 'debug' => true, 'csp_nonce' => null, 'templateInherits' => 'cassiopeia', 'params' => object(Registry), 'file' => 'error.php'))
     (/home/japantouring/public_html/libraries/src/Document/HtmlDocument.php:640)
  at Joomla\CMS\Document\HtmlDocument->render(false, array('template' => 'cassiopeia_japantouring', 'directory' => '/home/japantouring/public_html/templates', 'debug' => true, 'csp_nonce' => null, 'templateInherits' => 'cassiopeia', 'params' => object(Registry), 'file' => 'error.php'))
     (/home/japantouring/public_html/libraries/src/Document/ErrorDocument.php:139)
  at Joomla\CMS\Document\ErrorDocument->render(false, array('template' => 'cassiopeia_japantouring', 'directory' => '/home/japantouring/public_html/templates', 'debug' => true, 'csp_nonce' => null, 'templateInherits' => 'cassiopeia', 'params' => object(Registry), 'file' => 'error.php'))
     (/home/japantouring/public_html/libraries/src/Error/Renderer/HtmlRenderer.php:78)
  at Joomla\CMS\Error\Renderer\HtmlRenderer->render(object(Exception))
     (/home/japantouring/public_html/libraries/src/Exception/ExceptionHandler.php:136)
  at Joomla\CMS\Exception\ExceptionHandler::render(object(Exception))
     (/home/japantouring/public_html/libraries/src/Exception/ExceptionHandler.php:73)
  at Joomla\CMS\Exception\ExceptionHandler::handleException(object(Exception))
     (/home/japantouring/public_html/libraries/src/Application/CMSApplication.php:336)
  at Joomla\CMS\Application\CMSApplication->execute()
     (/home/japantouring/public_html/includes/app.php:58)
  at require_once('/home/japantouring/public_html/includes/app.php')
     (/home/japantouring/public_html/index.php:32)                
[1/2] Exception
Exception:
Article not found

  at /home/japantouring/public_html/components/com_content/src/Model/ArticleModel.php:218
  at Joomla\Component\Content\Site\Model\ArticleModel->getItem()
     (/home/japantouring/public_html/libraries/src/MVC/View/AbstractView.php:159)
  at Joomla\CMS\MVC\View\AbstractView->get('Item')
     (/home/japantouring/public_html/components/com_content/src/View/Article/HtmlView.php:110)
  at Joomla\Component\Content\Site\View\Article\HtmlView->display()
     (/home/japantouring/public_html/libraries/src/MVC/Controller/BaseController.php:697)
  at Joomla\CMS\MVC\Controller\BaseController->display(true, array('catid' => 'INT', 'id' => 'INT', 'cid' => 'ARRAY', 'year' => 'INT', 'month' => 'INT', 'limit' => 'UINT', 'limitstart' => 'UINT', 'showall' => 'INT', 'return' => 'BASE64', 'filter' => 'STRING', 'filter_order' => 'CMD', 'filter_order_Dir' => 'CMD', 'filter-search' => 'STRING', 'print' => 'BOOLEAN', 'lang' => 'CMD', 'Itemid' => 'INT'))
     (/home/japantouring/public_html/components/com_content/src/Controller/DisplayController.php:122)
  at Joomla\Component\Content\Site\Controller\DisplayController->display()
     (/home/japantouring/public_html/libraries/src/MVC/Controller/BaseController.php:730)
  at Joomla\CMS\MVC\Controller\BaseController->execute('display')
     (/home/japantouring/public_html/libraries/src/Dispatcher/ComponentDispatcher.php:143)
  at Joomla\CMS\Dispatcher\ComponentDispatcher->dispatch()
     (/home/japantouring/public_html/components/com_content/src/Dispatcher/Dispatcher.php:56)
  at Joomla\Component\Content\Site\Dispatcher\Dispatcher->dispatch()
     (/home/japantouring/public_html/libraries/src/Component/ComponentHelper.php:361)
  at Joomla\CMS\Component\ComponentHelper::renderComponent('com_content')
     (/home/japantouring/public_html/libraries/src/Application/SiteApplication.php:218)
  at Joomla\CMS\Application\SiteApplication->dispatch()
     (/home/japantouring/public_html/libraries/src/Application/SiteApplication.php:261)
  at Joomla\CMS\Application\SiteApplication->doExecute()
     (/home/japantouring/public_html/libraries/src/Application/CMSApplication.php:306)
  at Joomla\CMS\Application\CMSApplication->execute()
     (/home/japantouring/public_html/includes/app.php:58)
  at require_once('/home/japantouring/public_html/includes/app.php')
     (/home/japantouring/public_html/index.php:32)