Exception

HTTP 500 Whoops, looks like something went wrong.

Artículo no encontrado

Exception

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);
ArticleModel->getItem() in /home/www/tdcred.com/plugins/gsd/content/content.php (line 55)
  1.         {
  2.             $model JModelLegacy::getInstance('Article''ContentModel');
  3.         }
  4.         // Make sure we have a valid item data
  5.         if (!is_object($model) || !$item $model->getItem())
  6.         {
  7.             return;
  8.         }
  9.         // Image
  1.             $this->log('View ' $view ' is not supported');
  2.             return;
  3.         }
  4.         // Yeah. Let's call the method. 
  5.         $payload $this->$method();
  6.         // We need a valid array
  7.         if (!is_array($payload))
  8.         {  
  9.             $this->log('Invalid Payload Array');
  1.         {
  2.             return;
  3.         }
  4.         // Let's check if the plugin supports the current component's view.
  5.         if (!$payload $this->getPayload())
  6.         {
  7.             return;
  8.         }
  9.         // Now, let's see if we have valid snippets for the active page. If not abort.
PluginBase->onGSDBeforeRender(array(' <script type="application/ld+json" data-type="gsd"> { "@context": "https://schema.org", "@type": "WebSite", "url": "https://www.tdcred.com/", "name": "tdcred.com"} </script>', null, null, null, '', ' <script type="application/ld+json" data-type="gsd"> { "@context": "https://schema.org", "@type": "BreadcrumbList", "itemListElement": [ { "@type": "ListItem", "position": 1, "name": "Inicio", "item": "https://www.tdcred.com/" }, { "@type": "ListItem", "position": 2, "name": "No se encontró la página", "item": "https://www.tdcred.com/component/content/article/club-atletico-capilla-del-monte" } ]} </script>')) in /home/www/tdcred.com/libraries/src/Plugin/CMSPlugin.php (line 284)
  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.                 if ($event->isStopped())
  2.                 {
  3.                     return $event;
  4.                 }
  5.                 $listener($event);
  6.             }
  7.         }
  8.         return $event;
  9.     }
Dispatcher->dispatch('onGSDBeforeRender', object(Event)) in /home/www/tdcred.com/libraries/src/Application/EventAware.php (line 111)
  1.             $event     = new $className($eventName$args);
  2.         } else {
  3.             throw new \InvalidArgumentException('The arguments must either be an event or an array');
  4.         }
  5.         $result $dispatcher->dispatch($eventName$event);
  6.         // @todo - There are still test cases where the result isn't defined, temporarily leave the isset check in place
  7.         return !isset($result['result']) || \is_null($result['result']) ? [] : $result['result'];
  8.     }
  9. }
WebApplication->triggerEvent('onGSDBeforeRender', array(array(' <script type="application/ld+json" data-type="gsd"> { "@context": "https://schema.org", "@type": "WebSite", "url": "https://www.tdcred.com/", "name": "tdcred.com"} </script>', null, null, null, '', ' <script type="application/ld+json" data-type="gsd"> { "@context": "https://schema.org", "@type": "BreadcrumbList", "itemListElement": [ { "@type": "ListItem", "position": 1, "name": "Inicio", "item": "https://www.tdcred.com/" }, { "@type": "ListItem", "position": 2, "name": "No se encontró la página", "item": "https://www.tdcred.com/component/content/article/club-atletico-capilla-del-monte" } ]} </script>'))) in /home/www/tdcred.com/administrator/components/com_gsd/GSD/Helper.php (line 451)
  1.     public static function event($name$arguments = [])
  2.     {
  3.         \JPluginHelper::importPlugin('gsd');
  4.         \JPluginHelper::importPlugin('system');
  5.         return \JFactory::getApplication()->triggerEvent($name$arguments);
  6.     }
  7.     /**
  8.      *  Get list with all available plugins
  9.      *
Helper::event('onGSDBeforeRender', array(array(' <script type="application/ld+json" data-type="gsd"> { "@context": "https://schema.org", "@type": "WebSite", "url": "https://www.tdcred.com/", "name": "tdcred.com"} </script>', null, null, null, '', ' <script type="application/ld+json" data-type="gsd"> { "@context": "https://schema.org", "@type": "BreadcrumbList", "itemListElement": [ { "@type": "ListItem", "position": 1, "name": "Inicio", "item": "https://www.tdcred.com/" }, { "@type": "ListItem", "position": 2, "name": "No se encontró la página", "item": "https://www.tdcred.com/component/content/article/club-atletico-capilla-del-monte" } ]} </script>'))) in /home/www/tdcred.com/plugins/system/gsd/gsd.php (line 85)
  1.             $this->getCustomCode(),
  2.             $this->getJSONBreadcrumbs()
  3.         ];
  4.         // Load and trigger plugins
  5.         Helper::event('onGSDBeforeRender', array(&$data));
  6.         // Convert data array to string
  7.         $markup implode("\n"array_filter($data));
  8.         // Return if markup is empty
plgSystemGSD->init() in /home/www/tdcred.com/plugins/system/gsd/gsd.php (line 54)
  1.      *
  2.      *  @return void
  3.      */
  4.     public function onBeforeCompileHead()
  5.     {        
  6.         $this->init();
  7.     }
  8.     /**
  9.      *  Adds Google Structured Markup to the document in JSON Format
  10.      *
plgSystemGSD->onBeforeCompileHead() in /home/www/tdcred.com/libraries/src/Plugin/CMSPlugin.php (line 284)
  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.                 if ($event->isStopped())
  2.                 {
  3.                     return $event;
  4.                 }
  5.                 $listener($event);
  6.             }
  7.         }
  8.         return $event;
  9.     }
Dispatcher->dispatch('onBeforeCompileHead', object(Event)) in /home/www/tdcred.com/libraries/src/Application/EventAware.php (line 111)
  1.             $event     = new $className($eventName$args);
  2.         } else {
  3.             throw new \InvalidArgumentException('The arguments must either be an event or an array');
  4.         }
  5.         $result $dispatcher->dispatch($eventName$event);
  6.         // @todo - There are still test cases where the result isn't defined, temporarily leave the isset check in place
  7.         return !isset($result['result']) || \is_null($result['result']) ? [] : $result['result'];
  8.     }
  9. }
WebApplication->triggerEvent('onBeforeCompileHead') in /home/www/tdcred.com/libraries/src/Document/Renderer/Html/MetasRenderer.php (line 61)
  1.                 $asset->onAttachCallback($this->_doc);
  2.             }
  3.         }
  4.         // Trigger the onBeforeCompileHead event
  5.         $app->triggerEvent('onBeforeCompileHead');
  6.         // Add Script Options as inline asset
  7.         $scriptOptions $this->_doc->getScriptOptions();
  8.         if ($scriptOptions) {
MetasRenderer->render(null, array(), null) in /home/www/tdcred.com/libraries/src/Document/HtmlDocument.php (line 566)
  1.             $cbuffer[$hash] = $tmpdata;
  2.             $cache->store($cbuffer'cbuffer_' $type);
  3.         } else {
  4.             $this->setBuffer($renderer->render($name$attribsnull), $type$name$title);
  5.         }
  6.         return parent::$_buffer[$type][$name][$title];
  7.     }
HtmlDocument->getBuffer('metas', null, array()) in /home/www/tdcred.com/libraries/src/Document/HtmlDocument.php (line 853)
  1.         $replace = [];
  2.         $with    = [];
  3.         foreach ($this->_template_tags as $jdoc => $args) {
  4.             $replace[] = $jdoc;
  5.             $with[]    = $this->getBuffer($args['type'], $args['name'], $args['attribs']);
  6.         }
  7.         return str_replace($replace$with$this->_template);
  8.     }
  9. }
HtmlDocument->_renderTemplate() in /home/www/tdcred.com/libraries/src/Document/HtmlDocument.php (line 638)
  1.         if (\array_key_exists('csp_nonce'$params) && $params['csp_nonce'] !== null) {
  2.             $this->cspNonce $params['csp_nonce'];
  3.         }
  4.         $data $this->_renderTemplate();
  5.         parent::render($caching$params);
  6.         return $data;
  7.     }
HtmlDocument->render(false, array('template' => 'nuron', 'file' => 'index.php', 'directory' => '/home/www/tdcred.com/templates', 'debug' => true, 'csp_nonce' => null, 'templateInherits' => '', 'params' => object(Registry))) in /home/www/tdcred.com/plugins/system/forseo/platform/helpers/errorpages/j4renderer.php (line 100)
  1.                 'file'             => 'index.php',
  2.                 'directory'        => JPATH_THEMES,
  3.                 'debug'            => JDEBUG,
  4.                 'csp_nonce'        => $this->app->get('csp_nonce'),
  5.                 'templateInherits' => $template->parent,
  6.                 'params'           => $template->params,
  7.             ]
  8.         );
  9.         $this->app->setBody($data);
J4renderer->renderDocument(object(Rule), object(Exception), array('/canales/amarillo/la-falda-y-capilla-del-monte-incluidas-en-operativos-especiales-de-testeos' => 'La Falda y Capilla del Monte incluidas en operativos especiales de testeos', '/canales/azul19/capilla-del-monte-renuncias-potenciales-de-funcionarios' => 'Capilla del Monte - Renuncias potenciales de funcionarios', '/canales/amarillo/capilla-del-monte-balance-positivo-de-una-rigida-cuarentena' => 'Capilla del Monte: balance positivo de una rígida cuarentena', '/canales/amarillo/donde-se-vota-para-intendente-en-capilla-del-monte-villa-giardino-y-valle-hermoso' => 'Donde se vota para Intendente en Capilla del Monte, Villa Giardino y Valle Hermoso')) in /home/www/tdcred.com/plugins/system/forseo/platform/helpers/errorpages/renderer.php (line 103)
  1.         $this->renderDocument(
  2.             $rule,
  3.             $error,
  4.             $this->getSuggested(
  5.                 $rule,
  6.                 $page
  7.             )
  8.         );
  9.     }
  1.         $renderer $this->factory->getA(
  2.             'Weeblr\Forseo\Platform\Helpers\Errorpages\\' $platformType 'renderer'
  3.         );
  4.         $renderer->render(
  5.             $applicableRule,
  6.             $error,
  7.             $page
  8.         );
  9.         die();
  1.         {
  2.             $this->factory->getA(Helper\Errorpage::class)
  3.                           ->render(
  4.                               $rules,
  5.                               $error,
  6.                               $this->currentPage
  7.                           );
  8.         }
  9.     }
  10.     /**
Pagedatacollector->onError(object(Exception))
  1.                 {
  2.                     $params[0] = call_user_func_array($callbackRecord['callback'], $params);
  3.                 }
  4.                 else
  5.                 {
  6.                     call_user_func_array($callbackRecord['callback'], $params);
  7.                 }
  8.             }
  9.         }
  10.         $newValue null;
  1.         {
  2.             return Factory::get()->getThe('platform')->executeHook($filter$params);
  3.         }
  4.         else
  5.         {
  6.             Factory::get()->getThe('platform')->executeHook($filter$params);
  7.         }
  8.     }
  9.     /**
  10.      * Whether a given hook has callbacks registered.
  1.      *
  2.      * @return mixed|null
  3.      */
  4.     public function run(...$args)
  5.     {
  6.         $this->execute(false$args);
  7.     }
  8.     /**
  9.      * Execute all callbacks registered for a hook id
  10.      * in order of priority, only on first call.
  1.                  *
  2.                  * @return void
  3.                  *
  4.                  */
  5.                 $this->factory->getThe('hook')->run(
  6.                     'forseo_on_404_error',
  7.                     $error
  8.                 );
  9.                 // die to end processing for now. Display custom 404 error page in the future.
  10.                 // remember to run Replacers, Analytics and any other relevant rules.
  11.                 // can only be done if we have a real Document so not on default CMS rendering.
Error->errorHandler(object(Exception))
call_user_func_array(array(object(Error), 'errorHandler'), array(object(Exception))) in /home/www/tdcred.com/plugins/system/forseo/platform/errorhandlerj4.php (line 82)
  1.     public function handleError(PlatformEvent\ErrorEvent $event)
  2.     {
  3.         // pass on to 4SEO: if handled, it won't return.
  4.         call_user_func_array(
  5.             $this->appHandler,
  6.             [$event->getError()]
  7.         );
  8.     }
  9. }
  1.                 if ($event->isStopped())
  2.                 {
  3.                     return $event;
  4.                 }
  5.                 $listener($event);
  6.             }
  7.         }
  8.         return $event;
  9.     }
Dispatcher->dispatch('onError', object(ErrorEvent)) in /home/www/tdcred.com/libraries/src/Application/EventAware.php (line 111)
  1.             $event     = new $className($eventName$args);
  2.         } else {
  3.             throw new \InvalidArgumentException('The arguments must either be an event or an array');
  4.         }
  5.         $result $dispatcher->dispatch($eventName$event);
  6.         // @todo - There are still test cases where the result isn't defined, temporarily leave the isset check in place
  7.         return !isset($result['result']) || \is_null($result['result']) ? [] : $result['result'];
  8.     }
  9. }
WebApplication->triggerEvent('onError', object(ErrorEvent)) in /home/www/tdcred.com/libraries/src/Application/CMSApplication.php (line 320)
  1.                     'application' => $this,
  2.                 ]
  3.             );
  4.             // Trigger the onError event.
  5.             $this->triggerEvent('onError'$event);
  6.             ExceptionHandler::handleException($event->getError());
  7.         }
  8.         // Trigger the onBeforeRespond event.
CMSApplication->execute() in /home/www/tdcred.com/includes/app.php (line 61)
  1. // Set the application as global app
  2. \Joomla\CMS\Factory::$application $app;
  3. // Execute the application.
  4. $app->execute();
require_once('/home/www/tdcred.com/includes/app.php') in /home/www/tdcred.com/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 Trace

Exception
Exception:
Artículo no encontrado

  at /home/www/tdcred.com/components/com_content/src/Model/ArticleModel.php:218
  at Joomla\Component\Content\Site\Model\ArticleModel->getItem()
     (/home/www/tdcred.com/plugins/gsd/content/content.php:55)
  at plgGSDContent->viewArticle()
     (/home/www/tdcred.com/administrator/components/com_gsd/GSD/PluginBase.php:395)
  at GSD\PluginBase->getPayload()
     (/home/www/tdcred.com/administrator/components/com_gsd/GSD/PluginBase.php:225)
  at GSD\PluginBase->onGSDBeforeRender(array('
<script type="application/ld+json" data-type="gsd">
{    "@context": "https://schema.org",    "@type": "WebSite",    "url": "https://www.tdcred.com/",    "name": "tdcred.com"}
</script>', null, null, null, '', '
<script type="application/ld+json" data-type="gsd">
{    "@context": "https://schema.org",    "@type": "BreadcrumbList",    "itemListElement": [        {            "@type": "ListItem",            "position": 1,            "name": "Inicio",            "item": "https://www.tdcred.com/"        },        {            "@type": "ListItem",            "position": 2,            "name": "No se encontró la página",            "item": "https://www.tdcred.com/component/content/article/club-atletico-capilla-del-monte"        }    ]}
</script>'))
     (/home/www/tdcred.com/libraries/src/Plugin/CMSPlugin.php:284)
  at Joomla\CMS\Plugin\CMSPlugin->Joomla\CMS\Plugin\{closure}(object(Event))
     (/home/www/tdcred.com/libraries/vendor/joomla/event/src/Dispatcher.php:486)
  at Joomla\Event\Dispatcher->dispatch('onGSDBeforeRender', object(Event))
     (/home/www/tdcred.com/libraries/src/Application/EventAware.php:111)
  at Joomla\CMS\Application\WebApplication->triggerEvent('onGSDBeforeRender', array(array('
<script type="application/ld+json" data-type="gsd">
{    "@context": "https://schema.org",    "@type": "WebSite",    "url": "https://www.tdcred.com/",    "name": "tdcred.com"}
</script>', null, null, null, '', '
<script type="application/ld+json" data-type="gsd">
{    "@context": "https://schema.org",    "@type": "BreadcrumbList",    "itemListElement": [        {            "@type": "ListItem",            "position": 1,            "name": "Inicio",            "item": "https://www.tdcred.com/"        },        {            "@type": "ListItem",            "position": 2,            "name": "No se encontró la página",            "item": "https://www.tdcred.com/component/content/article/club-atletico-capilla-del-monte"        }    ]}
</script>')))
     (/home/www/tdcred.com/administrator/components/com_gsd/GSD/Helper.php:451)
  at GSD\Helper::event('onGSDBeforeRender', array(array('
<script type="application/ld+json" data-type="gsd">
{    "@context": "https://schema.org",    "@type": "WebSite",    "url": "https://www.tdcred.com/",    "name": "tdcred.com"}
</script>', null, null, null, '', '
<script type="application/ld+json" data-type="gsd">
{    "@context": "https://schema.org",    "@type": "BreadcrumbList",    "itemListElement": [        {            "@type": "ListItem",            "position": 1,            "name": "Inicio",            "item": "https://www.tdcred.com/"        },        {            "@type": "ListItem",            "position": 2,            "name": "No se encontró la página",            "item": "https://www.tdcred.com/component/content/article/club-atletico-capilla-del-monte"        }    ]}
</script>')))
     (/home/www/tdcred.com/plugins/system/gsd/gsd.php:85)
  at plgSystemGSD->init()
     (/home/www/tdcred.com/plugins/system/gsd/gsd.php:54)
  at plgSystemGSD->onBeforeCompileHead()
     (/home/www/tdcred.com/libraries/src/Plugin/CMSPlugin.php:284)
  at Joomla\CMS\Plugin\CMSPlugin->Joomla\CMS\Plugin\{closure}(object(Event))
     (/home/www/tdcred.com/libraries/vendor/joomla/event/src/Dispatcher.php:486)
  at Joomla\Event\Dispatcher->dispatch('onBeforeCompileHead', object(Event))
     (/home/www/tdcred.com/libraries/src/Application/EventAware.php:111)
  at Joomla\CMS\Application\WebApplication->triggerEvent('onBeforeCompileHead')
     (/home/www/tdcred.com/libraries/src/Document/Renderer/Html/MetasRenderer.php:61)
  at Joomla\CMS\Document\Renderer\Html\MetasRenderer->render(null, array(), null)
     (/home/www/tdcred.com/libraries/src/Document/HtmlDocument.php:566)
  at Joomla\CMS\Document\HtmlDocument->getBuffer('metas', null, array())
     (/home/www/tdcred.com/libraries/src/Document/HtmlDocument.php:853)
  at Joomla\CMS\Document\HtmlDocument->_renderTemplate()
     (/home/www/tdcred.com/libraries/src/Document/HtmlDocument.php:638)
  at Joomla\CMS\Document\HtmlDocument->render(false, array('template' => 'nuron', 'file' => 'index.php', 'directory' => '/home/www/tdcred.com/templates', 'debug' => true, 'csp_nonce' => null, 'templateInherits' => '', 'params' => object(Registry)))
     (/home/www/tdcred.com/plugins/system/forseo/platform/helpers/errorpages/j4renderer.php:100)
  at Weeblr\Forseo\Platform\Helpers\Errorpages\J4renderer->renderDocument(object(Rule), object(Exception), array('/canales/amarillo/la-falda-y-capilla-del-monte-incluidas-en-operativos-especiales-de-testeos' => 'La Falda y Capilla del Monte incluidas en operativos especiales de testeos', '/canales/azul19/capilla-del-monte-renuncias-potenciales-de-funcionarios' => 'Capilla del Monte - Renuncias potenciales de funcionarios', '/canales/amarillo/capilla-del-monte-balance-positivo-de-una-rigida-cuarentena' => 'Capilla del Monte: balance positivo de una rígida cuarentena', '/canales/amarillo/donde-se-vota-para-intendente-en-capilla-del-monte-villa-giardino-y-valle-hermoso' => 'Donde se vota para Intendente en Capilla del Monte, Villa Giardino y Valle Hermoso'))
     (/home/www/tdcred.com/plugins/system/forseo/platform/helpers/errorpages/renderer.php:103)
  at Weeblr\Forseo\Platform\Helpers\Errorpages\Renderer->render(object(Rule), object(Exception), object(Page))
     (/home/www/tdcred.com/plugins/system/forseo/vendor/weeblr/forseo/helper/errorpage.php:62)
  at Weeblr\Forseo\Helper\Errorpage->render(array(object(Rule), object(Rule)), object(Exception), object(Page))
     (/home/www/tdcred.com/plugins/system/forseo/vendor/weeblr/forseo/controller/pagedatacollector.php:928)
  at Weeblr\Forseo\Controller\Pagedatacollector->onError(object(Exception))
  at call_user_func_array(array(object(Pagedatacollector), 'onError'), array(object(Exception)))
     (/home/www/tdcred.com/plugins/system/forseo/vendor/weeblr/wblib/v2/packages/platform/joomla/platform.php:1911)
  at Weeblr\Wblib\Forseo\Platform\JoomlaPlatform->executeHook(false, array(object(Exception)))
     (/home/www/tdcred.com/plugins/system/forseo/vendor/weeblr/wblib/v2/packages/system/hook.php:173)
  at Weeblr\Wblib\Forseo\System\Hook->execute(false, array('forseo_on_404_error', object(Exception)))
     (/home/www/tdcred.com/plugins/system/forseo/vendor/weeblr/wblib/v2/packages/system/hook.php:116)
  at Weeblr\Wblib\Forseo\System\Hook->run('forseo_on_404_error', object(Exception))
     (/home/www/tdcred.com/plugins/system/forseo/vendor/weeblr/forseo/controller/error.php:141)
  at Weeblr\Forseo\Controller\Error->errorHandler(object(Exception))
  at call_user_func_array(array(object(Error), 'errorHandler'), array(object(Exception)))
     (/home/www/tdcred.com/plugins/system/forseo/platform/errorhandlerj4.php:82)
  at Weeblr\Forseo\Platform\Errorhandlerj4->handleError(object(ErrorEvent))
     (/home/www/tdcred.com/libraries/vendor/joomla/event/src/Dispatcher.php:486)
  at Joomla\Event\Dispatcher->dispatch('onError', object(ErrorEvent))
     (/home/www/tdcred.com/libraries/src/Application/EventAware.php:111)
  at Joomla\CMS\Application\WebApplication->triggerEvent('onError', object(ErrorEvent))
     (/home/www/tdcred.com/libraries/src/Application/CMSApplication.php:320)
  at Joomla\CMS\Application\CMSApplication->execute()
     (/home/www/tdcred.com/includes/app.php:61)
  at require_once('/home/www/tdcred.com/includes/app.php')
     (/home/www/tdcred.com/index.php:32)