Illuminate \ View \ ViewException
(E_ERROR)
16
Illuminate\View\ViewException
…/vendor/illuminate/view/FileViewFinder.php137
15
Illuminate\View\Engines\CompilerEngine
handleViewException
…/vendor/illuminate/view/Engines/PhpEngine.php60
14
InvalidArgumentException
…/vendor/illuminate/view/FileViewFinder.php137
13
Illuminate\View\FileViewFinder
findInPaths
…/vendor/illuminate/view/FileViewFinder.php79
12
Illuminate\View\FileViewFinder
find
…/vendor/illuminate/view/Factory.php138
11
Illuminate\View\Factory
make
…/storage/framework/views/cc60c1bf9d3face41c934d673e0e4ca77e0f5098.php4
10
require
…/vendor/illuminate/filesystem/Filesystem.php107
9
Illuminate\Filesystem\Filesystem
Illuminate\Filesystem\{closure}
…/vendor/illuminate/filesystem/Filesystem.php108
8
Illuminate\Filesystem\Filesystem
getRequire
…/vendor/illuminate/view/Engines/PhpEngine.php58
7
Illuminate\View\Engines\PhpEngine
evaluatePath
…/vendor/illuminate/view/Engines/CompilerEngine.php61
6
Illuminate\View\Engines\CompilerEngine
get
…/vendor/illuminate/view/View.php139
5
Illuminate\View\View
getContents
…/vendor/illuminate/view/View.php122
4
Illuminate\View\View
renderContents
…/vendor/illuminate/view/View.php91
3
Illuminate\View\View
render
…/index.php17
2
include
/home/uleb-demo/releases/uleb.lademo.be/1679922458/web/wp/wp-includes/template-loader.php106
1
require_once
/home/uleb-demo/releases/uleb.lademo.be/1679922458/web/wp/wp-blog-header.php19
0
require
/home/uleb-demo/releases/uleb.lademo.be/1679922458/web/index.php6
/home/uleb-demo/releases/uleb.lademo.be/1679922458/web/app/themes/cherrypulp/vendor/illuminate/view/FileViewFinder.php
/**
* Find the given view in the list of paths.
*
* @param string $name
* @param array $paths
* @return string
*
* @throws \InvalidArgumentException
*/
protected function findInPaths($name, $paths)
{
foreach ((array) $paths as $path) {
foreach ($this->getPossibleViewFiles($name) as $file) {
if ($this->files->exists($viewPath = $path.'/'.$file)) {
return $viewPath;
}
}
}
throw new InvalidArgumentException("View [{$name}] not found.");
}
/**
* Get an array of possible view files.
*
* @param string $name
* @return array
*/
protected function getPossibleViewFiles($name)
{
return array_map(function ($extension) use ($name) {
return str_replace('.', '/', $name).'.'.$extension;
}, $this->extensions);
}
/**
* Add a location to the finder.
*
* @param string $location
* @return void
Arguments
"View [partials.archives] not found. (View: /home/uleb-demo/releases/uleb.lademo.be/1679922458/web/app/themes/cherrypulp/resources/views/index.blade.php)"
/home/uleb-demo/releases/uleb.lademo.be/1679922458/web/app/themes/cherrypulp/vendor/illuminate/view/Engines/PhpEngine.php
/**
* Get the evaluated contents of the view at the given path.
*
* @param string $path
* @param array $data
* @return string
*/
protected function evaluatePath($path, $data)
{
$obLevel = ob_get_level();
ob_start();
// We'll evaluate the contents of the view inside a try/catch block so we can
// flush out any stray output that might get out before an error occurs or
// an exception is thrown. This prevents any partial views from leaking.
try {
$this->files->getRequire($path, $data);
} catch (Throwable $e) {
$this->handleViewException($e, $obLevel);
}
return ltrim(ob_get_clean());
}
/**
* Handle a view exception.
*
* @param \Throwable $e
* @param int $obLevel
* @return void
*
* @throws \Throwable
*/
protected function handleViewException(Throwable $e, $obLevel)
{
while (ob_get_level() > $obLevel) {
ob_end_clean();
}
/home/uleb-demo/releases/uleb.lademo.be/1679922458/web/app/themes/cherrypulp/vendor/illuminate/view/FileViewFinder.php
/**
* Find the given view in the list of paths.
*
* @param string $name
* @param array $paths
* @return string
*
* @throws \InvalidArgumentException
*/
protected function findInPaths($name, $paths)
{
foreach ((array) $paths as $path) {
foreach ($this->getPossibleViewFiles($name) as $file) {
if ($this->files->exists($viewPath = $path.'/'.$file)) {
return $viewPath;
}
}
}
throw new InvalidArgumentException("View [{$name}] not found.");
}
/**
* Get an array of possible view files.
*
* @param string $name
* @return array
*/
protected function getPossibleViewFiles($name)
{
return array_map(function ($extension) use ($name) {
return str_replace('.', '/', $name).'.'.$extension;
}, $this->extensions);
}
/**
* Add a location to the finder.
*
* @param string $location
* @return void
Arguments
"View [partials.archives] not found."
Exception message:
View [partials.archives] not found.
/home/uleb-demo/releases/uleb.lademo.be/1679922458/web/app/themes/cherrypulp/vendor/illuminate/view/FileViewFinder.php
}
}
/**
* Get the fully qualified location of the view.
*
* @param string $name
* @return string
*/
public function find($name)
{
if (isset($this->views[$name])) {
return $this->views[$name];
}
if ($this->hasHintInformation($name = trim($name))) {
return $this->views[$name] = $this->findNamespacedView($name);
}
return $this->views[$name] = $this->findInPaths($name, $this->paths);
}
/**
* Get the path to a template with a named path.
*
* @param string $name
* @return string
*/
protected function findNamespacedView($name)
{
[$namespace, $view] = $this->parseNamespaceSegments($name);
return $this->findInPaths($view, $this->hints[$namespace]);
}
/**
* Get the segments of a template with a named path.
*
* @param string $name
* @return array
/home/uleb-demo/releases/uleb.lademo.be/1679922458/web/app/themes/cherrypulp/vendor/illuminate/view/Factory.php
{
$data = array_merge($mergeData, $this->parseData($data));
return tap($this->viewInstance($path, $path, $data), function ($view) {
$this->callCreator($view);
});
}
/**
* Get the evaluated view contents for the given view.
*
* @param string $view
* @param \Illuminate\Contracts\Support\Arrayable|array $data
* @param array $mergeData
* @return \Illuminate\Contracts\View\View
*/
public function make($view, $data = [], $mergeData = [])
{
$path = $this->finder->find(
$view = $this->normalizeName($view)
);
// Next, we will create the view instance and call the view creator for the view
// which can set any data, etc. Then we will return the view instance back to
// the caller for rendering or performing other view manipulations on this.
$data = array_merge($mergeData, $this->parseData($data));
return tap($this->viewInstance($view, $path, $data), function ($view) {
$this->callCreator($view);
});
}
/**
* Get the first view that actually exists from the given list.
*
* @param array $views
* @param \Illuminate\Contracts\Support\Arrayable|array $data
* @param array $mergeData
* @return \Illuminate\Contracts\View\View
*
/home/uleb-demo/releases/uleb.lademo.be/1679922458/web/app/themes/cherrypulp/storage/framework/views/cc60c1bf9d3face41c934d673e0e4ca77e0f5098.php
<?php $__env->startSection('content'); ?>
<?php if(is_archive()): ?>
<?php echo $__env->make('partials.archives', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php endif; ?>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.app', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/uleb-demo/releases/uleb.lademo.be/1679922458/web/app/themes/cherrypulp/resources/views/index.blade.php ENDPATH**/ ?>
/home/uleb-demo/releases/uleb.lademo.be/1679922458/web/app/themes/cherrypulp/vendor/illuminate/filesystem/Filesystem.php
/**
* Get the returned value of a file.
*
* @param string $path
* @param array $data
* @return mixed
*
* @throws \Illuminate\Contracts\Filesystem\FileNotFoundException
*/
public function getRequire($path, array $data = [])
{
if ($this->isFile($path)) {
$__path = $path;
$__data = $data;
return (static function () use ($__path, $__data) {
extract($__data, EXTR_SKIP);
return require $__path;
})();
}
throw new FileNotFoundException("File does not exist at path {$path}.");
}
/**
* Require the given file once.
*
* @param string $path
* @param array $data
* @return mixed
*
* @throws \Illuminate\Contracts\Filesystem\FileNotFoundException
*/
public function requireOnce($path, array $data = [])
{
if ($this->isFile($path)) {
$__path = $path;
$__data = $data;
Arguments
"/home/uleb-demo/releases/uleb.lademo.be/1679922458/web/app/themes/cherrypulp/storage/framework/views/cc60c1bf9d3face41c934d673e0e4ca77e0f5098.php"
/home/uleb-demo/releases/uleb.lademo.be/1679922458/web/app/themes/cherrypulp/vendor/illuminate/filesystem/Filesystem.php
/**
* Get the returned value of a file.
*
* @param string $path
* @param array $data
* @return mixed
*
* @throws \Illuminate\Contracts\Filesystem\FileNotFoundException
*/
public function getRequire($path, array $data = [])
{
if ($this->isFile($path)) {
$__path = $path;
$__data = $data;
return (static function () use ($__path, $__data) {
extract($__data, EXTR_SKIP);
return require $__path;
})();
}
throw new FileNotFoundException("File does not exist at path {$path}.");
}
/**
* Require the given file once.
*
* @param string $path
* @param array $data
* @return mixed
*
* @throws \Illuminate\Contracts\Filesystem\FileNotFoundException
*/
public function requireOnce($path, array $data = [])
{
if ($this->isFile($path)) {
$__path = $path;
$__data = $data;
/home/uleb-demo/releases/uleb.lademo.be/1679922458/web/app/themes/cherrypulp/vendor/illuminate/view/Engines/PhpEngine.php
}
/**
* Get the evaluated contents of the view at the given path.
*
* @param string $path
* @param array $data
* @return string
*/
protected function evaluatePath($path, $data)
{
$obLevel = ob_get_level();
ob_start();
// We'll evaluate the contents of the view inside a try/catch block so we can
// flush out any stray output that might get out before an error occurs or
// an exception is thrown. This prevents any partial views from leaking.
try {
$this->files->getRequire($path, $data);
} catch (Throwable $e) {
$this->handleViewException($e, $obLevel);
}
return ltrim(ob_get_clean());
}
/**
* Handle a view exception.
*
* @param \Throwable $e
* @param int $obLevel
* @return void
*
* @throws \Throwable
*/
protected function handleViewException(Throwable $e, $obLevel)
{
while (ob_get_level() > $obLevel) {
ob_end_clean();
/home/uleb-demo/releases/uleb.lademo.be/1679922458/web/app/themes/cherrypulp/vendor/illuminate/view/Engines/CompilerEngine.php
*
* @param string $path
* @param array $data
* @return string
*/
public function get($path, array $data = [])
{
$this->lastCompiled[] = $path;
// If this given view has expired, which means it has simply been edited since
// it was last compiled, we will re-compile the views so we can evaluate a
// fresh copy of the view. We'll pass the compiler the path of the view.
if ($this->compiler->isExpired($path)) {
$this->compiler->compile($path);
}
// Once we have the path to the compiled file, we will evaluate the paths with
// typical PHP just like any other templates. We also keep a stack of views
// which have been rendered for right exception messages to be generated.
$results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
array_pop($this->lastCompiled);
return $results;
}
/**
* Handle a view exception.
*
* @param \Throwable $e
* @param int $obLevel
* @return void
*
* @throws \Throwable
*/
protected function handleViewException(Throwable $e, $obLevel)
{
$e = new ViewException($this->getMessage($e), 0, 1, $e->getFile(), $e->getLine(), $e);
parent::handleViewException($e, $obLevel);
/home/uleb-demo/releases/uleb.lademo.be/1679922458/web/app/themes/cherrypulp/vendor/illuminate/view/View.php
$this->factory->callComposer($this);
$contents = $this->getContents();
// Once we've finished rendering the view, we'll decrement the render count
// so that each sections get flushed out next time a view is created and
// no old sections are staying around in the memory of an environment.
$this->factory->decrementRender();
return $contents;
}
/**
* Get the evaluated contents of the view.
*
* @return string
*/
protected function getContents()
{
return $this->engine->get($this->path, $this->gatherData());
}
/**
* Get the data bound to the view instance.
*
* @return array
*/
public function gatherData()
{
$data = array_merge($this->factory->getShared(), $this->data);
foreach ($data as $key => $value) {
if ($value instanceof Renderable) {
$data[$key] = $value->render();
}
}
return $data;
}
/home/uleb-demo/releases/uleb.lademo.be/1679922458/web/app/themes/cherrypulp/vendor/illuminate/view/View.php
throw $e;
}
}
/**
* Get the contents of the view instance.
*
* @return string
*/
protected function renderContents()
{
// We will keep track of the amount of views being rendered so we can flush
// the section after the complete rendering operation is done. This will
// clear out the sections for any separate views that may be rendered.
$this->factory->incrementRender();
$this->factory->callComposer($this);
$contents = $this->getContents();
// Once we've finished rendering the view, we'll decrement the render count
// so that each sections get flushed out next time a view is created and
// no old sections are staying around in the memory of an environment.
$this->factory->decrementRender();
return $contents;
}
/**
* Get the evaluated contents of the view.
*
* @return string
*/
protected function getContents()
{
return $this->engine->get($this->path, $this->gatherData());
}
/**
/home/uleb-demo/releases/uleb.lademo.be/1679922458/web/app/themes/cherrypulp/vendor/illuminate/view/View.php
$this->view = $view;
$this->path = $path;
$this->engine = $engine;
$this->factory = $factory;
$this->data = $data instanceof Arrayable ? $data->toArray() : (array) $data;
}
/**
* Get the string contents of the view.
*
* @param callable|null $callback
* @return string
*
* @throws \Throwable
*/
public function render(callable $callback = null)
{
try {
$contents = $this->renderContents();
$response = isset($callback) ? $callback($this, $contents) : null;
// Once we have the contents of the view, we will flush the sections if we are
// done rendering all views so that there is nothing left hanging over when
// another view gets rendered in the future by the application developer.
$this->factory->flushStateIfDoneRendering();
return ! is_null($response) ? $response : $contents;
} catch (Throwable $e) {
$this->factory->flushState();
throw $e;
}
}
/**
* Get the contents of the view instance.
*
* @return string
/home/uleb-demo/releases/uleb.lademo.be/1679922458/web/app/themes/cherrypulp/index.php
<!doctype html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<?php wp_body_open(); ?>
<?php do_action('get_header'); ?>
<div class="app" role="main">
<?php echo \Roots\view(\Roots\app('sage.view'), \Roots\app('sage.data'))->render(); ?>
</div>
<?php do_action('get_footer'); ?>
<?php wp_footer(); ?>
</body>
</html>
/home/uleb-demo/releases/uleb.lademo.be/1679922458/web/wp/wp-includes/template-loader.php
}
break;
}
}
if ( ! $template ) {
$template = get_index_template();
}
/**
* Filters the path of the current template before including it.
*
* @since 3.0.0
*
* @param string $template The path of the template to include.
*/
$template = apply_filters( 'template_include', $template );
if ( $template ) {
include $template;
} elseif ( current_user_can( 'switch_themes' ) ) {
$theme = wp_get_theme();
if ( $theme->errors() ) {
wp_die( $theme->errors() );
}
}
return;
}
Arguments
"/home/uleb-demo/releases/uleb.lademo.be/1679922458/web/app/themes/cherrypulp/index.php"
/home/uleb-demo/releases/uleb.lademo.be/1679922458/web/wp/wp-blog-header.php
<?php
/**
* Loads the WordPress environment and template.
*
* @package WordPress
*/
if ( ! isset( $wp_did_header ) ) {
$wp_did_header = true;
// Load the WordPress library.
require_once __DIR__ . '/wp-load.php';
// Set up the WordPress query.
wp();
// Load the theme template.
require_once ABSPATH . WPINC . '/template-loader.php';
}
Arguments
"/home/uleb-demo/releases/uleb.lademo.be/1679922458/web/wp/wp-includes/template-loader.php"
/home/uleb-demo/releases/uleb.lademo.be/1679922458/web/index.php
<?php
/**
* WordPress View Bootstrapper
*/
define('WP_USE_THEMES', true);
require __DIR__ . '/wp/wp-blog-header.php';
Arguments
"/home/uleb-demo/releases/uleb.lademo.be/1679922458/web/wp/wp-blog-header.php"
Environment & details:
empty
empty
empty
empty
empty
Key | Value |
SERVER_SOFTWARE | "nginx/1.20.1"
|
REQUEST_URI | "/events-categories/ca/"
|
USER | "uleb-demo"
|
HOME | "/home/uleb-demo"
|
HTTP_CONNECTION | "Keep-Alive"
|
HTTP_HOST | "uleb.lademo.be"
|
HTTP_ACCEPT_ENCODING | "br,gzip"
|
HTTP_ACCEPT_LANGUAGE | "en-US,en;q=0.5"
|
HTTP_ACCEPT | "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"
|
HTTP_USER_AGENT | "CCBot/2.0 (https://commoncrawl.org/faq/)"
|
REDIRECT_STATUS | "200"
|
HTTPS | "on"
|
SERVER_NAME | "uleb.lademo.be"
|
SERVER_PORT | "443"
|
SERVER_ADDR | "164.92.148.120"
|
REMOTE_PORT | "41744"
|
REMOTE_ADDR | "34.229.131.158"
|
GATEWAY_INTERFACE | "CGI/1.1"
|
SERVER_PROTOCOL | "HTTP/1.1"
|
DOCUMENT_ROOT | "/home/uleb-demo/uleb.lademo.be/web"
|
DOCUMENT_URI | "/index.php"
|
SCRIPT_NAME | "/index.php"
|
SCRIPT_FILENAME | "/home/uleb-demo/uleb.lademo.be/web/index.php"
|
CONTENT_LENGTH | "" |
CONTENT_TYPE | "" |
REQUEST_METHOD | "GET"
|
QUERY_STRING | "" |
FCGI_ROLE | "RESPONDER"
|
PHP_SELF | "/index.php"
|
REQUEST_TIME_FLOAT | 1686432565.3625
|
REQUEST_TIME | 1686432565
|
DB_NAME | "uleb_demo"
|
DB_USER | "uleb_demo"
|
DB_PASSWORD | "********************"
|
DB_HOST | "localhost"
|
WP_ENV | "development"
|
WP_HOME | "https://uleb.lademo.be"
|
WP_SITEURL | "https://uleb.lademo.be/wp"
|
WP_TITLE | "A website made with love"
|
WP_USER | "private"
|
WP_PASSWORD | "strong_password"
|
WP_EMAIL | "private@cherrypulp.com"
|
AUTH_KEY | "****************************************************************"
|
SECURE_AUTH_KEY | "****************************************************************"
|
LOGGED_IN_KEY | "****************************************************************"
|
NONCE_KEY | "****************************************************************"
|
AUTH_SALT | "****************************************************************"
|
SECURE_AUTH_SALT | "****************************************************************"
|
LOGGED_IN_SALT | "****************************************************************"
|
NONCE_SALT | "****************************************************************"
|
THEME_NAME | "cherrypulp"
|
APP_SUB_DOMAIN | "uleb"
|
APP_NAME | "uleb"
|
DLAB_NETWORK | "cherrylab"
|
DLAB_DOMAIN | "cherrylab.test"
|
Key | Value |
DB_NAME | "uleb_demo"
|
DB_USER | "uleb_demo"
|
DB_PASSWORD | "********************"
|
DB_HOST | "localhost"
|
WP_ENV | "development"
|
WP_HOME | "https://uleb.lademo.be"
|
WP_SITEURL | "https://uleb.lademo.be/wp"
|
WP_TITLE | "A website made with love"
|
WP_USER | "private"
|
WP_PASSWORD | "strong_password"
|
WP_EMAIL | "private@cherrypulp.com"
|
AUTH_KEY | "****************************************************************"
|
SECURE_AUTH_KEY | "****************************************************************"
|
LOGGED_IN_KEY | "****************************************************************"
|
NONCE_KEY | "****************************************************************"
|
AUTH_SALT | "****************************************************************"
|
SECURE_AUTH_SALT | "****************************************************************"
|
LOGGED_IN_SALT | "****************************************************************"
|
NONCE_SALT | "****************************************************************"
|
THEME_NAME | "cherrypulp"
|
APP_SUB_DOMAIN | "uleb"
|
APP_NAME | "uleb"
|
DLAB_NETWORK | "cherrylab"
|
DLAB_DOMAIN | "cherrylab.test"
|
0. Whoops\Handler\PrettyPageHandler