Symfony Exception

'HEADLESS_IMAGE_OLD_URL' has not been defined. Use `Roots\WPConfig\Config::define('HEADLESS_IMAGE_OLD_URL', ...)`. (View: /var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/resources/views/blocks/logo-grid.blade.php) (View: /var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/resources/views/blocks/logo-grid.blade.php) (View: /var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/resources/views/blocks/logo-grid.blade.php)

Exceptions 4

Illuminate\View\ ViewException

Show exception properties
Illuminate\View\ViewException {#1836
  #severity: E_ERROR
}
  1.      */
  2.     public static function get($key)
  3.     {
  4.         if (!array_key_exists($keyself::$configMap)) {
  5.             $class self::class;
  6.             throw new UndefinedConfigKeyException("'$key' has not been defined. Use `$class::define('$key', ...)`.");
  7.         }
  8.         
  9.         return self::$configMap[$key];
  10.     }
  11.     
  1.         // flush out any stray output that might get out before an error occurs or
  2.         // an exception is thrown. This prevents any partial views from leaking.
  3.         try {
  4.             $this->files->getRequire($path$data);
  5.         } catch (Throwable $e) {
  6.             $this->handleViewException($e$obLevel);
  7.         }
  8.         return ltrim(ob_get_clean());
  9.     }
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1. <body <?php body_class(); ?>>
  2. <?php wp_body_open(); ?>
  3. <div id="app">
  4.     <?php echo view(app('sage.view'), app('sage.data'))->render(); ?>
  5. </div>
  6. <?php wp_footer(); ?>
  7. </body>
  8. </html>
include('/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/index.php') in /var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/wp/wp-includes/template-loader.php (line 106)
  1.      *
  2.      * @param string $template The path of the template to include.
  3.      */
  4.     $template apply_filters'template_include'$template );
  5.     if ( $template ) {
  6.         include $template;
  7.     } elseif ( current_user_can'switch_themes' ) ) {
  8.         $theme wp_get_theme();
  9.         if ( $theme->errors() ) {
  10.             wp_die$theme->errors() );
  11.         }
require_once('/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/wp/wp-includes/template-loader.php') in /var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/wp/wp-blog-header.php (line 19)
  1.     // Set up the WordPress query.
  2.     wp();
  3.     // Load the theme template.
  4.     require_once ABSPATH WPINC '/template-loader.php';
  5. }
require('/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/wp/wp-blog-header.php') in /var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/index.php (line 6)
  1. <?php
  2. /**
  3.  * WordPress View Bootstrapper
  4.  */
  5. define('WP_USE_THEMES'true);
  6. require __DIR__ '/wp/wp-blog-header.php';

Illuminate\View\ ViewException

'HEADLESS_IMAGE_OLD_URL' has not been defined. Use `Roots\WPConfig\Config::define('HEADLESS_IMAGE_OLD_URL', ...)`. (View: /var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/resources/views/blocks/logo-grid.blade.php) (View: /var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/resources/views/blocks/logo-grid.blade.php)

  1.      */
  2.     public static function get($key)
  3.     {
  4.         if (!array_key_exists($keyself::$configMap)) {
  5.             $class self::class;
  6.             throw new UndefinedConfigKeyException("'$key' has not been defined. Use `$class::define('$key', ...)`.");
  7.         }
  8.         
  9.         return self::$configMap[$key];
  10.     }
  11.     
  1.         // flush out any stray output that might get out before an error occurs or
  2.         // an exception is thrown. This prevents any partial views from leaking.
  3.         try {
  4.             $this->files->getRequire($path$data);
  5.         } catch (Throwable $e) {
  6.             $this->handleViewException($e$obLevel);
  7.         }
  8.         return ltrim(ob_get_clean());
  9.     }
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1. <?php $__env->startSection('content'); ?>
  2.   <?php while(have_posts()): ?>
  3.     <?php (the_post()); ?>
  4.     <?php echo $__env->first(['partials.content-single-' get_post_type(), 'partials.content-single'], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>
  5.   <?php endwhile; ?>
  6. <?php $__env->stopSection(); ?>
  7. <?php echo $__env->make('layouts.app'\Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?><?php /**PATH /var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/resources/views/single-service_cpt.blade.php ENDPATH**/ ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1. <body <?php body_class(); ?>>
  2. <?php wp_body_open(); ?>
  3. <div id="app">
  4.     <?php echo view(app('sage.view'), app('sage.data'))->render(); ?>
  5. </div>
  6. <?php wp_footer(); ?>
  7. </body>
  8. </html>
include('/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/index.php') in /var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/wp/wp-includes/template-loader.php (line 106)
  1.      *
  2.      * @param string $template The path of the template to include.
  3.      */
  4.     $template apply_filters'template_include'$template );
  5.     if ( $template ) {
  6.         include $template;
  7.     } elseif ( current_user_can'switch_themes' ) ) {
  8.         $theme wp_get_theme();
  9.         if ( $theme->errors() ) {
  10.             wp_die$theme->errors() );
  11.         }
require_once('/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/wp/wp-includes/template-loader.php') in /var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/wp/wp-blog-header.php (line 19)
  1.     // Set up the WordPress query.
  2.     wp();
  3.     // Load the theme template.
  4.     require_once ABSPATH WPINC '/template-loader.php';
  5. }
require('/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/wp/wp-blog-header.php') in /var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/index.php (line 6)
  1. <?php
  2. /**
  3.  * WordPress View Bootstrapper
  4.  */
  5. define('WP_USE_THEMES'true);
  6. require __DIR__ '/wp/wp-blog-header.php';

Illuminate\View\ ViewException

'HEADLESS_IMAGE_OLD_URL' has not been defined. Use `Roots\WPConfig\Config::define('HEADLESS_IMAGE_OLD_URL', ...)`. (View: /var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/resources/views/blocks/logo-grid.blade.php)

  1.      */
  2.     public static function get($key)
  3.     {
  4.         if (!array_key_exists($keyself::$configMap)) {
  5.             $class self::class;
  6.             throw new UndefinedConfigKeyException("'$key' has not been defined. Use `$class::define('$key', ...)`.");
  7.         }
  8.         
  9.         return self::$configMap[$key];
  10.     }
  11.     
  1.         // flush out any stray output that might get out before an error occurs or
  2.         // an exception is thrown. This prevents any partial views from leaking.
  3.         try {
  4.             $this->files->getRequire($path$data);
  5.         } catch (Throwable $e) {
  6.             $this->handleViewException($e$obLevel);
  7.         }
  8.         return ltrim(ob_get_clean());
  9.     }
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1.             );
  2.             $view view()->exists($preview) ? $preview $view;
  3.         }
  4.         return view($view$with$this->with())->render();
  5.     }
  6. }
  1.         $this->classes $this->getClasses();
  2.         $this->style $this->getStyle();
  3.         $this->inlineStyle $this->getInlineStyle();
  4.         return $this->view($this->view, ['block' => $this]);
  5.     }
  6.     /**
  7.      * Assets enqueued when rendering the block.
  8.      *
  1.                 $preview false,
  2.                 $post_id 0,
  3.                 $wp_block false,
  4.                 $context false
  5.             ) {
  6.                 echo $this->render($block$content$preview$post_id$wp_block$context);
  7.             },
  8.         ]);
  9.         if ($this->example !== false) {
  10.             if (method_exists($this'example') && is_array($example $this->example())) {
  1.     // Setup postdata allowing get_field() to work.
  2.     acf_setup_meta$block['data'], $block['id'], true );
  3.     // Call render_callback.
  4.     if ( is_callable$block['render_callback'] ) ) {
  5.         call_user_func$block['render_callback'], $block$content$is_preview$post_id$wp_block$context );
  6.         // Or include template.
  7.     } elseif ( $block['render_template'] ) {
  8.         do_action'acf_block_render_template'$block$content$is_preview$post_id$wp_block$context );
  9.     }
  1.         } else {
  2.             echo acf_get_empty_block_form_html$attributes['name'] ); //phpcs:ignore -- escaped in function.
  3.         }
  4.     } else {
  5.         // Capture block render output.
  6.         acf_render_block$attributes$content$is_preview$post_id$wp_block$context );
  7.         if ( $is_preview && ! $is_ajax_render ) {
  8.             /**
  9.              * If we're in preloaded preview, we need to get the validation state for a preview too.
  10.              * Because the block render resets meta once it's finished to not pollute $post_id, we need to redo that process here.
  1.     if ( empty( $attributes['name'] ) && ! empty( $wp_block->name ) ) {
  2.         $attributes['name'] = $wp_block->name;
  3.     }
  4.     // Return rendered block HTML.
  5.     return acf_rendered_block$attributes$content$is_preview$post_id$wp_block );
  6. }
  7. /**
  8.  * Returns the rendered block HTML.
  9.  *
  1.             $global_post $post;
  2.             $parent      WP_Block_Supports::$block_to_render;
  3.             WP_Block_Supports::$block_to_render $this->parsed_block;
  4.             $block_content = (string) call_user_func$this->block_type->render_callback$this->attributes$block_content$this );
  5.             WP_Block_Supports::$block_to_render $parent;
  6.             $post $global_post;
  7.         }
  1.      */
  2.     $context apply_filters'render_block_context'$context$parsed_block$parent_block );
  3.     $block = new WP_Block$parsed_block$context );
  4.     return $block->render();
  5. }
  6. /**
  7.  * Parses blocks out of a content string.
  8.  *
  1. function do_blocks$content ) {
  2.     $blocks parse_blocks$content );
  3.     $output '';
  4.     foreach ( $blocks as $block ) {
  5.         $output .= render_block$block );
  6.     }
  7.     // If there are blocks in this content, we shouldn't run wpautop() on it later.
  8.     $priority has_filter'the_content''wpautop' );
  9.     if ( false !== $priority && doing_filter'the_content' ) && has_blocks$content ) ) {
  1.                 // Avoid the array_slice() if possible.
  2.                 if ( === $the_['accepted_args'] ) {
  3.                     $value call_user_func$the_['function'] );
  4.                 } elseif ( $the_['accepted_args'] >= $num_args ) {
  5.                     $value call_user_func_array$the_['function'], $args );
  6.                 } else {
  7.                     $value call_user_func_array$the_['function'], array_slice$args0$the_['accepted_args'] ) );
  8.                 }
  9.             }
  10.         } while ( false !== next$this->iterations$nesting_level ] ) );
  1.     }
  2.     // Pass the value to WP_Hook.
  3.     array_unshift$args$value );
  4.     $filtered $wp_filter$hook_name ]->apply_filters$value$args );
  5.     array_pop$wp_current_filter );
  6.     return $filtered;
  7. }
  1.      *
  2.      * @since 0.71
  3.      *
  4.      * @param string $content Content of the current post.
  5.      */
  6.     $content apply_filters'the_content'$content );
  7.     $content str_replace']]>'']]&gt;'$content );
  8.     echo $content;
  9. }
  10. /**
  1. <article <?php (post_class('h-entry')); ?>>
  2.   <?php echo $__env->make('partials.hero-service_cpt'\Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>
  3.   <div class="e-content">
  4.     <?php (the_content()); ?>
  5.   </div>
  6. </article>
  7. <?php /**PATH /var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/resources/views/partials/content-single-service_cpt.blade.php ENDPATH**/ ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1. <?php $__env->startSection('content'); ?>
  2.   <?php while(have_posts()): ?>
  3.     <?php (the_post()); ?>
  4.     <?php echo $__env->first(['partials.content-single-' get_post_type(), 'partials.content-single'], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>
  5.   <?php endwhile; ?>
  6. <?php $__env->stopSection(); ?>
  7. <?php echo $__env->make('layouts.app'\Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?><?php /**PATH /var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/resources/views/single-service_cpt.blade.php ENDPATH**/ ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1. <body <?php body_class(); ?>>
  2. <?php wp_body_open(); ?>
  3. <div id="app">
  4.     <?php echo view(app('sage.view'), app('sage.data'))->render(); ?>
  5. </div>
  6. <?php wp_footer(); ?>
  7. </body>
  8. </html>
include('/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/index.php') in /var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/wp/wp-includes/template-loader.php (line 106)
  1.      *
  2.      * @param string $template The path of the template to include.
  3.      */
  4.     $template apply_filters'template_include'$template );
  5.     if ( $template ) {
  6.         include $template;
  7.     } elseif ( current_user_can'switch_themes' ) ) {
  8.         $theme wp_get_theme();
  9.         if ( $theme->errors() ) {
  10.             wp_die$theme->errors() );
  11.         }
require_once('/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/wp/wp-includes/template-loader.php') in /var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/wp/wp-blog-header.php (line 19)
  1.     // Set up the WordPress query.
  2.     wp();
  3.     // Load the theme template.
  4.     require_once ABSPATH WPINC '/template-loader.php';
  5. }
require('/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/wp/wp-blog-header.php') in /var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/index.php (line 6)
  1. <?php
  2. /**
  3.  * WordPress View Bootstrapper
  4.  */
  5. define('WP_USE_THEMES'true);
  6. require __DIR__ '/wp/wp-blog-header.php';

Roots\WPConfig\Exceptions\ UndefinedConfigKeyException

'HEADLESS_IMAGE_OLD_URL' has not been defined. Use `Roots\WPConfig\Config::define('HEADLESS_IMAGE_OLD_URL', ...)`.

  1.      */
  2.     public static function get($key)
  3.     {
  4.         if (!array_key_exists($keyself::$configMap)) {
  5.             $class self::class;
  6.             throw new UndefinedConfigKeyException("'$key' has not been defined. Use `$class::define('$key', ...)`.");
  7.         }
  8.         
  9.         return self::$configMap[$key];
  10.     }
  11.     
  1.     // Check if the image is an SVG
  2.     if (pathinfo($imagePATHINFO_EXTENSION) === 'svg') {
  3.         return $image;
  4.     }
  5.     $old_url Config::get('HEADLESS_IMAGE_OLD_URL');
  6.     $bucket Config::get('HEADLESS_IMAGE_BUCKET');
  7.     $endpoint Config::get('HEADLESS_IMAGE_URL');
  8.     // Only run if all required environment variables are set
  9.     if ($old_url && $bucket && $endpoint) {
  1.                     <?php if(!empty($logo_grid)): ?>
  2.                         <?php $__currentLoopData $logo_grid$__env->addLoop($__currentLoopData); foreach($__currentLoopData as $slide): $__env->incrementLoopIndices(); $loop $__env->getLastLoop(); ?>
  3.                             <div class="lg:min-w-[120px] flex justify-center">
  4.                                 <?php if(!empty($slide['link']) && $slide['link'] == true && $slide['url']): ?>
  5.                                     <a href="<?php echo e($slide['url']); ?>" target="_blank">
  6.                                         <img src="<?php echo alterImageURL($slide['logo']['url'], $width '240'$height '240'$fit 'contain'); ?>" alt="<?php echo e($slide['logo']['alt']); ?>">
  7.                                     </a>
  8.                                 <?php elseif( $slide['logo'] ): ?>
  9.                                     <img src="<?php echo alterImageURL($slide['logo']['url'], $width '240'$height '240'$fit 'contain'); ?>" alt="<?php echo e($slide['logo']['alt']); ?>">
  10.                                 <?php endif; ?>
  11.                             </div>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1.             );
  2.             $view view()->exists($preview) ? $preview $view;
  3.         }
  4.         return view($view$with$this->with())->render();
  5.     }
  6. }
  1.         $this->classes $this->getClasses();
  2.         $this->style $this->getStyle();
  3.         $this->inlineStyle $this->getInlineStyle();
  4.         return $this->view($this->view, ['block' => $this]);
  5.     }
  6.     /**
  7.      * Assets enqueued when rendering the block.
  8.      *
  1.                 $preview false,
  2.                 $post_id 0,
  3.                 $wp_block false,
  4.                 $context false
  5.             ) {
  6.                 echo $this->render($block$content$preview$post_id$wp_block$context);
  7.             },
  8.         ]);
  9.         if ($this->example !== false) {
  10.             if (method_exists($this'example') && is_array($example $this->example())) {
  1.     // Setup postdata allowing get_field() to work.
  2.     acf_setup_meta$block['data'], $block['id'], true );
  3.     // Call render_callback.
  4.     if ( is_callable$block['render_callback'] ) ) {
  5.         call_user_func$block['render_callback'], $block$content$is_preview$post_id$wp_block$context );
  6.         // Or include template.
  7.     } elseif ( $block['render_template'] ) {
  8.         do_action'acf_block_render_template'$block$content$is_preview$post_id$wp_block$context );
  9.     }
  1.         } else {
  2.             echo acf_get_empty_block_form_html$attributes['name'] ); //phpcs:ignore -- escaped in function.
  3.         }
  4.     } else {
  5.         // Capture block render output.
  6.         acf_render_block$attributes$content$is_preview$post_id$wp_block$context );
  7.         if ( $is_preview && ! $is_ajax_render ) {
  8.             /**
  9.              * If we're in preloaded preview, we need to get the validation state for a preview too.
  10.              * Because the block render resets meta once it's finished to not pollute $post_id, we need to redo that process here.
  1.     if ( empty( $attributes['name'] ) && ! empty( $wp_block->name ) ) {
  2.         $attributes['name'] = $wp_block->name;
  3.     }
  4.     // Return rendered block HTML.
  5.     return acf_rendered_block$attributes$content$is_preview$post_id$wp_block );
  6. }
  7. /**
  8.  * Returns the rendered block HTML.
  9.  *
  1.             $global_post $post;
  2.             $parent      WP_Block_Supports::$block_to_render;
  3.             WP_Block_Supports::$block_to_render $this->parsed_block;
  4.             $block_content = (string) call_user_func$this->block_type->render_callback$this->attributes$block_content$this );
  5.             WP_Block_Supports::$block_to_render $parent;
  6.             $post $global_post;
  7.         }
  1.      */
  2.     $context apply_filters'render_block_context'$context$parsed_block$parent_block );
  3.     $block = new WP_Block$parsed_block$context );
  4.     return $block->render();
  5. }
  6. /**
  7.  * Parses blocks out of a content string.
  8.  *
  1. function do_blocks$content ) {
  2.     $blocks parse_blocks$content );
  3.     $output '';
  4.     foreach ( $blocks as $block ) {
  5.         $output .= render_block$block );
  6.     }
  7.     // If there are blocks in this content, we shouldn't run wpautop() on it later.
  8.     $priority has_filter'the_content''wpautop' );
  9.     if ( false !== $priority && doing_filter'the_content' ) && has_blocks$content ) ) {
  1.                 // Avoid the array_slice() if possible.
  2.                 if ( === $the_['accepted_args'] ) {
  3.                     $value call_user_func$the_['function'] );
  4.                 } elseif ( $the_['accepted_args'] >= $num_args ) {
  5.                     $value call_user_func_array$the_['function'], $args );
  6.                 } else {
  7.                     $value call_user_func_array$the_['function'], array_slice$args0$the_['accepted_args'] ) );
  8.                 }
  9.             }
  10.         } while ( false !== next$this->iterations$nesting_level ] ) );
  1.     }
  2.     // Pass the value to WP_Hook.
  3.     array_unshift$args$value );
  4.     $filtered $wp_filter$hook_name ]->apply_filters$value$args );
  5.     array_pop$wp_current_filter );
  6.     return $filtered;
  7. }
  1.      *
  2.      * @since 0.71
  3.      *
  4.      * @param string $content Content of the current post.
  5.      */
  6.     $content apply_filters'the_content'$content );
  7.     $content str_replace']]>'']]&gt;'$content );
  8.     echo $content;
  9. }
  10. /**
  1. <article <?php (post_class('h-entry')); ?>>
  2.   <?php echo $__env->make('partials.hero-service_cpt'\Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>
  3.   <div class="e-content">
  4.     <?php (the_content()); ?>
  5.   </div>
  6. </article>
  7. <?php /**PATH /var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/resources/views/partials/content-single-service_cpt.blade.php ENDPATH**/ ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1. <?php $__env->startSection('content'); ?>
  2.   <?php while(have_posts()): ?>
  3.     <?php (the_post()); ?>
  4.     <?php echo $__env->first(['partials.content-single-' get_post_type(), 'partials.content-single'], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>
  5.   <?php endwhile; ?>
  6. <?php $__env->stopSection(); ?>
  7. <?php echo $__env->make('layouts.app'\Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?><?php /**PATH /var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/resources/views/single-service_cpt.blade.php ENDPATH**/ ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1. <body <?php body_class(); ?>>
  2. <?php wp_body_open(); ?>
  3. <div id="app">
  4.     <?php echo view(app('sage.view'), app('sage.data'))->render(); ?>
  5. </div>
  6. <?php wp_footer(); ?>
  7. </body>
  8. </html>
include('/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/index.php') in /var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/wp/wp-includes/template-loader.php (line 106)
  1.      *
  2.      * @param string $template The path of the template to include.
  3.      */
  4.     $template apply_filters'template_include'$template );
  5.     if ( $template ) {
  6.         include $template;
  7.     } elseif ( current_user_can'switch_themes' ) ) {
  8.         $theme wp_get_theme();
  9.         if ( $theme->errors() ) {
  10.             wp_die$theme->errors() );
  11.         }
require_once('/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/wp/wp-includes/template-loader.php') in /var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/wp/wp-blog-header.php (line 19)
  1.     // Set up the WordPress query.
  2.     wp();
  3.     // Load the theme template.
  4.     require_once ABSPATH WPINC '/template-loader.php';
  5. }
require('/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/wp/wp-blog-header.php') in /var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/index.php (line 6)
  1. <?php
  2. /**
  3.  * WordPress View Bootstrapper
  4.  */
  5. define('WP_USE_THEMES'true);
  6. require __DIR__ '/wp/wp-blog-header.php';

Stack Traces 4

[4/4] ViewException
Illuminate\View\ViewException:
'HEADLESS_IMAGE_OLD_URL' has not been defined. Use `Roots\WPConfig\Config::define('HEADLESS_IMAGE_OLD_URL', ...)`. (View: /var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/resources/views/blocks/logo-grid.blade.php) (View: /var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/resources/views/blocks/logo-grid.blade.php) (View: /var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/resources/views/blocks/logo-grid.blade.php)

  at /var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/vendor/roots/wp-config/src/Config.php:38
  at Illuminate\View\Engines\CompilerEngine->handleViewException()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/illuminate/view/Engines/PhpEngine.php:60)
  at Illuminate\View\Engines\PhpEngine->evaluatePath()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/illuminate/view/Engines/CompilerEngine.php:72)
  at Illuminate\View\Engines\CompilerEngine->get()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/illuminate/view/View.php:207)
  at Illuminate\View\View->getContents()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/illuminate/view/View.php:190)
  at Illuminate\View\View->renderContents()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/illuminate/view/View.php:159)
  at Illuminate\View\View->render()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/index.php:14)
  at include('/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/index.php')
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/wp/wp-includes/template-loader.php:106)
  at require_once('/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/wp/wp-includes/template-loader.php')
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/wp/wp-blog-header.php:19)
  at require('/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/wp/wp-blog-header.php')
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/index.php:6)                
[3/4] ViewException
Illuminate\View\ViewException:
'HEADLESS_IMAGE_OLD_URL' has not been defined. Use `Roots\WPConfig\Config::define('HEADLESS_IMAGE_OLD_URL', ...)`. (View: /var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/resources/views/blocks/logo-grid.blade.php) (View: /var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/resources/views/blocks/logo-grid.blade.php)

  at /var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/vendor/roots/wp-config/src/Config.php:38
  at Illuminate\View\Engines\CompilerEngine->handleViewException()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/illuminate/view/Engines/PhpEngine.php:60)
  at Illuminate\View\Engines\PhpEngine->evaluatePath()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/illuminate/view/Engines/CompilerEngine.php:72)
  at Illuminate\View\Engines\CompilerEngine->get()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/illuminate/view/View.php:207)
  at Illuminate\View\View->getContents()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/illuminate/view/View.php:190)
  at Illuminate\View\View->renderContents()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/illuminate/view/View.php:159)
  at Illuminate\View\View->render()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/cache/acorn/framework/views/5b29c1e391fa9b0eecb541c863dd71d1.php:4)
  at require('/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/cache/acorn/framework/views/5b29c1e391fa9b0eecb541c863dd71d1.php')
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/illuminate/filesystem/Filesystem.php:123)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/illuminate/filesystem/Filesystem.php:124)
  at Illuminate\Filesystem\Filesystem->getRequire()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/illuminate/view/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/illuminate/view/Engines/CompilerEngine.php:72)
  at Illuminate\View\Engines\CompilerEngine->get()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/illuminate/view/View.php:207)
  at Illuminate\View\View->getContents()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/illuminate/view/View.php:190)
  at Illuminate\View\View->renderContents()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/illuminate/view/View.php:159)
  at Illuminate\View\View->render()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/index.php:14)
  at include('/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/index.php')
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/wp/wp-includes/template-loader.php:106)
  at require_once('/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/wp/wp-includes/template-loader.php')
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/wp/wp-blog-header.php:19)
  at require('/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/wp/wp-blog-header.php')
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/index.php:6)                
[2/4] ViewException
Illuminate\View\ViewException:
'HEADLESS_IMAGE_OLD_URL' has not been defined. Use `Roots\WPConfig\Config::define('HEADLESS_IMAGE_OLD_URL', ...)`. (View: /var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/resources/views/blocks/logo-grid.blade.php)

  at /var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/vendor/roots/wp-config/src/Config.php:38
  at Illuminate\View\Engines\CompilerEngine->handleViewException()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/illuminate/view/Engines/PhpEngine.php:60)
  at Illuminate\View\Engines\PhpEngine->evaluatePath()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/illuminate/view/Engines/CompilerEngine.php:72)
  at Illuminate\View\Engines\CompilerEngine->get()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/illuminate/view/View.php:207)
  at Illuminate\View\View->getContents()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/illuminate/view/View.php:190)
  at Illuminate\View\View->renderContents()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/illuminate/view/View.php:159)
  at Illuminate\View\View->render()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/log1x/acf-composer/src/Concerns/InteractsWithBlade.php:33)
  at Log1x\AcfComposer\Block->view()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/log1x/acf-composer/src/Block.php:647)
  at Log1x\AcfComposer\Block->render()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/log1x/acf-composer/src/Block.php:553)
  at Log1x\AcfComposer\Block->Log1x\AcfComposer\{closure}()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/plugins/advanced-custom-fields-pro/pro/blocks.php:708)
  at acf_render_block()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/plugins/advanced-custom-fields-pro/pro/blocks.php:610)
  at acf_rendered_block()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/plugins/advanced-custom-fields-pro/pro/blocks.php:533)
  at acf_render_block_callback()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/wp/wp-includes/class-wp-block.php:463)
  at WP_Block->render()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/wp/wp-includes/blocks.php:1705)
  at render_block()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/wp/wp-includes/blocks.php:1743)
  at do_blocks()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/wp/wp-includes/class-wp-hook.php:324)
  at WP_Hook->apply_filters()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/wp/wp-includes/plugin.php:205)
  at apply_filters()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/wp/wp-includes/post-template.php:256)
  at the_content()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/cache/acorn/framework/views/a3442167acdbc37e4cfdc133e1b1de6d.php:5)
  at require('/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/cache/acorn/framework/views/a3442167acdbc37e4cfdc133e1b1de6d.php')
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/illuminate/filesystem/Filesystem.php:123)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/illuminate/filesystem/Filesystem.php:124)
  at Illuminate\Filesystem\Filesystem->getRequire()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/illuminate/view/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/illuminate/view/Engines/CompilerEngine.php:72)
  at Illuminate\View\Engines\CompilerEngine->get()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/illuminate/view/View.php:207)
  at Illuminate\View\View->getContents()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/illuminate/view/View.php:190)
  at Illuminate\View\View->renderContents()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/illuminate/view/View.php:159)
  at Illuminate\View\View->render()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/cache/acorn/framework/views/5b29c1e391fa9b0eecb541c863dd71d1.php:4)
  at require('/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/cache/acorn/framework/views/5b29c1e391fa9b0eecb541c863dd71d1.php')
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/illuminate/filesystem/Filesystem.php:123)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/illuminate/filesystem/Filesystem.php:124)
  at Illuminate\Filesystem\Filesystem->getRequire()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/illuminate/view/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/illuminate/view/Engines/CompilerEngine.php:72)
  at Illuminate\View\Engines\CompilerEngine->get()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/illuminate/view/View.php:207)
  at Illuminate\View\View->getContents()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/illuminate/view/View.php:190)
  at Illuminate\View\View->renderContents()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/illuminate/view/View.php:159)
  at Illuminate\View\View->render()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/index.php:14)
  at include('/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/index.php')
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/wp/wp-includes/template-loader.php:106)
  at require_once('/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/wp/wp-includes/template-loader.php')
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/wp/wp-blog-header.php:19)
  at require('/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/wp/wp-blog-header.php')
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/index.php:6)                
[1/4] UndefinedConfigKeyException
Roots\WPConfig\Exceptions\UndefinedConfigKeyException:
'HEADLESS_IMAGE_OLD_URL' has not been defined. Use `Roots\WPConfig\Config::define('HEADLESS_IMAGE_OLD_URL', ...)`.

  at /var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/vendor/roots/wp-config/src/Config.php:38
  at Roots\WPConfig\Config::get()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/app/media.php:23)
  at alterImageURL()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/cache/acorn/framework/views/5df7a8f2e122c5337f0e73981ce01f43.php:18)
  at require('/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/cache/acorn/framework/views/5df7a8f2e122c5337f0e73981ce01f43.php')
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/illuminate/filesystem/Filesystem.php:123)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/illuminate/filesystem/Filesystem.php:124)
  at Illuminate\Filesystem\Filesystem->getRequire()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/illuminate/view/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/illuminate/view/Engines/CompilerEngine.php:72)
  at Illuminate\View\Engines\CompilerEngine->get()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/illuminate/view/View.php:207)
  at Illuminate\View\View->getContents()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/illuminate/view/View.php:190)
  at Illuminate\View\View->renderContents()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/illuminate/view/View.php:159)
  at Illuminate\View\View->render()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/log1x/acf-composer/src/Concerns/InteractsWithBlade.php:33)
  at Log1x\AcfComposer\Block->view()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/log1x/acf-composer/src/Block.php:647)
  at Log1x\AcfComposer\Block->render()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/log1x/acf-composer/src/Block.php:553)
  at Log1x\AcfComposer\Block->Log1x\AcfComposer\{closure}()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/plugins/advanced-custom-fields-pro/pro/blocks.php:708)
  at acf_render_block()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/plugins/advanced-custom-fields-pro/pro/blocks.php:610)
  at acf_rendered_block()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/plugins/advanced-custom-fields-pro/pro/blocks.php:533)
  at acf_render_block_callback()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/wp/wp-includes/class-wp-block.php:463)
  at WP_Block->render()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/wp/wp-includes/blocks.php:1705)
  at render_block()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/wp/wp-includes/blocks.php:1743)
  at do_blocks()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/wp/wp-includes/class-wp-hook.php:324)
  at WP_Hook->apply_filters()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/wp/wp-includes/plugin.php:205)
  at apply_filters()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/wp/wp-includes/post-template.php:256)
  at the_content()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/cache/acorn/framework/views/a3442167acdbc37e4cfdc133e1b1de6d.php:5)
  at require('/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/cache/acorn/framework/views/a3442167acdbc37e4cfdc133e1b1de6d.php')
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/illuminate/filesystem/Filesystem.php:123)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/illuminate/filesystem/Filesystem.php:124)
  at Illuminate\Filesystem\Filesystem->getRequire()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/illuminate/view/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/illuminate/view/Engines/CompilerEngine.php:72)
  at Illuminate\View\Engines\CompilerEngine->get()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/illuminate/view/View.php:207)
  at Illuminate\View\View->getContents()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/illuminate/view/View.php:190)
  at Illuminate\View\View->renderContents()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/illuminate/view/View.php:159)
  at Illuminate\View\View->render()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/cache/acorn/framework/views/5b29c1e391fa9b0eecb541c863dd71d1.php:4)
  at require('/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/cache/acorn/framework/views/5b29c1e391fa9b0eecb541c863dd71d1.php')
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/illuminate/filesystem/Filesystem.php:123)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/illuminate/filesystem/Filesystem.php:124)
  at Illuminate\Filesystem\Filesystem->getRequire()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/illuminate/view/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/illuminate/view/Engines/CompilerEngine.php:72)
  at Illuminate\View\Engines\CompilerEngine->get()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/illuminate/view/View.php:207)
  at Illuminate\View\View->getContents()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/illuminate/view/View.php:190)
  at Illuminate\View\View->renderContents()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/vendor/illuminate/view/View.php:159)
  at Illuminate\View\View->render()
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/index.php:14)
  at include('/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/app/themes/totally-starter/index.php')
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/wp/wp-includes/template-loader.php:106)
  at require_once('/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/wp/wp-includes/template-loader.php')
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/wp/wp-blog-header.php:19)
  at require('/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/wp/wp-blog-header.php')
     (/var/www/vhosts/manchesterdeveloper.co.uk/peregrine.manchesterdeveloper.co.uk/web/index.php:6)