Error ParseError

HTTP 500 Whoops, looks like something went wrong.

syntax error, unexpected end of file

Exceptions 2

ParseError

  1.                     <?php echo $doc->getBuffer('modules''404', array('style' => 'sp_xhtml')); ?>
  2.                 </div>
  3.             </div>
  4.         </div>
  5.     </body>
  6. </html>
  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.     /**
  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.      *
  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.         }
  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.      *
  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. }
  1.             // Reset the document object in the factory, this gives us a clean slate and lets everything render properly
  2.             Factory::$document $renderer->getDocument();
  3.             Factory::getApplication()->loadDocument(Factory::$document);
  4.             $data $renderer->render($error);
  5.             // If nothing was rendered, just use the message from the Exception
  6.             if (empty($data)) {
  7.                 $data $error->getMessage();
  8.             }
  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.      *
  1.             );
  2.             // Trigger the onError event.
  3.             $this->triggerEvent('onError'$event);
  4.             ExceptionHandler::handleException($event->getError());
  5.         }
  6.         // Trigger the onBeforeRespond event.
  7.         $this->getDispatcher()->dispatch('onBeforeRespond');
CMSApplication->execute() in /var/www/vhosts/coopluppolo.it/httpdocs/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('/var/www/vhosts/coopluppolo.it/httpdocs/includes/app.php') in /var/www/vhosts/coopluppolo.it/httpdocs/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';

Error

Class 'Joomla\Plugin\System\Httpheaders\Extension\Httpheaders' not found

  1.     public function register(Container $container): void
  2.     {
  3.         $container->set(
  4.             PluginInterface::class,
  5.             function (Container $container) {
  6.                 $plugin     = new Httpheaders(
  7.                     $container->get(DispatcherInterface::class),
  8.                     (array) PluginHelper::getPlugin('system''httpheaders'),
  9.                     Factory::getApplication()
  10.                 );
  11.                 $plugin->setDatabase($container->get(DatabaseInterface::class));
  1.             }
  2.             return $this->instance;
  3.         }
  4.         return $callable($this->container);
  5.     }
  6.     /**
  7.      * Get the factory
  8.      *
  1.             }
  2.             throw new KeyNotFoundException(sprintf("Resource '%s' has not been registered with the container."$resourceName));
  3.         }
  4.         return $this->resources[$key]->getInstance();
  5.     }
  6.     /**
  7.      * Check if specified resource exists.
  8.      *
  1.                     'container'     => $container,
  2.                 ]
  3.             )
  4.         );
  5.         $extension $container->get($type);
  6.         if ($extension instanceof BootableExtensionInterface) {
  7.             $extension->boot($container);
  8.         }
  1.         $plugin str_starts_with($plugin'plg_') ? substr($plugin4) : $plugin;
  2.         // Path to look for services
  3.         $path JPATH_SITE '/plugins/' $type '/' $plugin;
  4.         return $this->loadExtension(PluginInterface::class, $plugin ':' $type$path);
  5.     }
  6.     /**
  7.      * Loads the extension.
  8.      *
  1.             return;
  2.         }
  3.         $plugins[$hash] = true;
  4.         $plugin Factory::getApplication()->bootPlugin($plugin->name$plugin->type);
  5.         if ($dispatcher && $plugin instanceof DispatcherAwareInterface) {
  6.             $plugin->setDispatcher($dispatcher);
  7.         }
  1.             $plugins = static::load();
  2.             // Get the specified plugin(s).
  3.             for ($i 0$t = \count($plugins); $i $t$i++) {
  4.                 if ($plugins[$i]->type === $type && ($plugin === null || $plugins[$i]->name === $plugin)) {
  5.                     static::import($plugins[$i], $autocreate$dispatcher);
  6.                     $results true;
  7.                 }
  8.             }
  9.             // Bail out early if we're not using default args
  1.         // Load the behaviour plugins
  2.         PluginHelper::importPlugin('behaviour');
  3.         // Trigger the onAfterInitialise event.
  4.         PluginHelper::importPlugin('system');
  5.         $this->triggerEvent('onAfterInitialise');
  6.     }
  7.     /**
  8.      * Checks if HTTPS is forced in the client configuration.
  1.                 $options['language'] = 'en-GB';
  2.             }
  3.         }
  4.         // Finish initialisation
  5.         parent::initialiseApp($options);
  6.     }
  7.     /**
  8.      * Load the library language files for the application
  9.      *
  1.      * @since   3.2
  2.      */
  3.     protected function doExecute()
  4.     {
  5.         // Initialise the application
  6.         $this->initialiseApp();
  7.         // Mark afterInitialise in the profiler.
  8.         JDEBUG $this->profiler->mark('afterInitialise') : null;
  9.         // Route the application
  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 /var/www/vhosts/coopluppolo.it/httpdocs/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('/var/www/vhosts/coopluppolo.it/httpdocs/includes/app.php') in /var/www/vhosts/coopluppolo.it/httpdocs/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] ParseError
ParseError:
syntax error, unexpected end of file

  at /var/www/vhosts/coopluppolo.it/httpdocs/templates/copiaonepagefunzionante/error.php:103
  at Joomla\CMS\Document\HtmlDocument->_loadTemplate()
     (/var/www/vhosts/coopluppolo.it/httpdocs/libraries/src/Document/HtmlDocument.php:796)
  at Joomla\CMS\Document\HtmlDocument->_fetchTemplate()
     (/var/www/vhosts/coopluppolo.it/httpdocs/libraries/src/Document/HtmlDocument.php:613)
  at Joomla\CMS\Document\HtmlDocument->parse()
     (/var/www/vhosts/coopluppolo.it/httpdocs/libraries/src/Document/HtmlDocument.php:631)
  at Joomla\CMS\Document\HtmlDocument->render()
     (/var/www/vhosts/coopluppolo.it/httpdocs/libraries/src/Document/ErrorDocument.php:139)
  at Joomla\CMS\Document\ErrorDocument->render()
     (/var/www/vhosts/coopluppolo.it/httpdocs/libraries/src/Error/Renderer/HtmlRenderer.php:78)
  at Joomla\CMS\Error\Renderer\HtmlRenderer->render()
     (/var/www/vhosts/coopluppolo.it/httpdocs/libraries/src/Exception/ExceptionHandler.php:126)
  at Joomla\CMS\Exception\ExceptionHandler::render()
     (/var/www/vhosts/coopluppolo.it/httpdocs/libraries/src/Exception/ExceptionHandler.php:72)
  at Joomla\CMS\Exception\ExceptionHandler::handleException()
     (/var/www/vhosts/coopluppolo.it/httpdocs/libraries/src/Application/CMSApplication.php:322)
  at Joomla\CMS\Application\CMSApplication->execute()
     (/var/www/vhosts/coopluppolo.it/httpdocs/includes/app.php:61)
  at require_once('/var/www/vhosts/coopluppolo.it/httpdocs/includes/app.php')
     (/var/www/vhosts/coopluppolo.it/httpdocs/index.php:32)                
[1/2] Error
Error:
Class 'Joomla\Plugin\System\Httpheaders\Extension\Httpheaders' not found

  at /var/www/vhosts/coopluppolo.it/httpdocs/plugins/system/httpheaders/services/provider.php:37
  at class@anonymous/var/www/vhosts/coopluppolo.it/httpdocs/plugins/system/httpheaders/services/provider.php:22$1fe->{closure}()
     (/var/www/vhosts/coopluppolo.it/httpdocs/libraries/vendor/joomla/di/src/ContainerResource.php:182)
  at Joomla\DI\ContainerResource->getInstance()
     (/var/www/vhosts/coopluppolo.it/httpdocs/libraries/vendor/joomla/di/src/Container.php:96)
  at Joomla\DI\Container->get()
     (/var/www/vhosts/coopluppolo.it/httpdocs/libraries/src/Extension/ExtensionManagerTrait.php:177)
  at Joomla\CMS\Application\CMSApplication->loadExtension()
     (/var/www/vhosts/coopluppolo.it/httpdocs/libraries/src/Extension/ExtensionManagerTrait.php:99)
  at Joomla\CMS\Application\CMSApplication->bootPlugin()
     (/var/www/vhosts/coopluppolo.it/httpdocs/libraries/src/Plugin/PluginHelper.php:232)
  at Joomla\CMS\Plugin\PluginHelper::import()
     (/var/www/vhosts/coopluppolo.it/httpdocs/libraries/src/Plugin/PluginHelper.php:192)
  at Joomla\CMS\Plugin\PluginHelper::importPlugin()
     (/var/www/vhosts/coopluppolo.it/httpdocs/libraries/src/Application/CMSApplication.php:744)
  at Joomla\CMS\Application\CMSApplication->initialiseApp()
     (/var/www/vhosts/coopluppolo.it/httpdocs/libraries/src/Application/SiteApplication.php:635)
  at Joomla\CMS\Application\SiteApplication->initialiseApp()
     (/var/www/vhosts/coopluppolo.it/httpdocs/libraries/src/Application/SiteApplication.php:226)
  at Joomla\CMS\Application\SiteApplication->doExecute()
     (/var/www/vhosts/coopluppolo.it/httpdocs/libraries/src/Application/CMSApplication.php:293)
  at Joomla\CMS\Application\CMSApplication->execute()
     (/var/www/vhosts/coopluppolo.it/httpdocs/includes/app.php:61)
  at require_once('/var/www/vhosts/coopluppolo.it/httpdocs/includes/app.php')
     (/var/www/vhosts/coopluppolo.it/httpdocs/index.php:32)