Exception
The template could not be found Exception thrown with message "The template could not be found" Stacktrace: #5 Exception in /var/www/vhosts/theaterzaken.com/httpdocs/kirby/kirby/component/template.php:95 #4 Kirby\Component\Template:render in /var/www/vhosts/theaterzaken.com/httpdocs/kirby/kirby.php:681 #3 Kirby:template in /var/www/vhosts/theaterzaken.com/httpdocs/kirby/kirby.php:669 #2 Kirby:render in /var/www/vhosts/theaterzaken.com/httpdocs/kirby/kirby/component/response.php:29 #1 Kirby\Component\Response:make in /var/www/vhosts/theaterzaken.com/httpdocs/kirby/kirby.php:751 #0 Kirby:launch in /var/www/vhosts/theaterzaken.com/httpdocs/index.php:16
Stack frames (6)
5
Exception
/
kirby
/
component
/
template.php
95
4
Kirby
\
Component
\
Template
render
/
kirby.php
681
3
Kirby
template
/
kirby.php
669
2
Kirby
render
/
kirby
/
component
/
response.php
29
1
Kirby
\
Component
\
Response
make
/
kirby.php
751
0
Kirby
launch
/
var
/
www
/
vhosts
/
theaterzaken.com
/
httpdocs
/
index.php
16
/
var
/
www
/
vhosts
/
theaterzaken.com
/
httpdocs
/
kirby
/
kirby
/
component
/
template.php
   * 
   * @param Page|string $template
   * @param array $data
   * @param boolean $return
   * @return string
   */
  public function render($template, $data = [], $return = true) {
 
    if($template instanceof Page) {
      $page = $template;
      $file = $page->templateFile();
      $data = $this->data($page, $data);
    } else {
      $file = $template;
      $data = $this->data(null, $data);
    }
 
    // check for an existing template
    if(!file_exists($file)) {
      throw new Exception('The template could not be found');
    }
 
    // merge and register the template data globally
    $tplData = tpl::$data;
    tpl::$data = array_merge(tpl::$data, $data);
 
    // load the template
    $result = tpl::load($file, null, $return);
 
    // reset the template data
    tpl::$data = $tplData;
 
    return $result;
 
  }
 
}
 
/
var
/
www
/
vhosts
/
theaterzaken.com
/
httpdocs
/
kirby
/
kirby.php
      }
 
      return $template;
 
    }
 
    // return a fresh template
    return $this->template($page, $data);
 
  }
 
  /**
   * Template configuration
   *
   * @param Page $page
   * @param array $data
   * @return string
   */
  public function template(Page $page, $data = array()) {
    return $this->component('template')->render($page, $data);
  }
 
  public function request() {
    if(!is_null($this->request)) return $this->request;
    return $this->request = new Request($this);
  }
 
  public function router() {
    return $this->router;
  }
 
  public function route() {
    return $this->route;
  }
 
  /**
   * Starts the router, renders the page and returns the response
   *
   * @return mixed
   */
/
var
/
www
/
vhosts
/
theaterzaken.com
/
httpdocs
/
kirby
/
kirby.php
        }
 
      }
 
      // try to fetch the template from cache
      $template = $this->cache()->get($cacheId);
 
      // fetch fresh content if the cache is empty
      if(empty($template)) {
        $template = $this->template($page, $data);
        // store the result for the next round
        $this->cache()->set($cacheId, $template);
      }
 
      return $template;
 
    }
 
    // return a fresh template
    return $this->template($page, $data);
 
  }
 
  /**
   * Template configuration
   *
   * @param Page $page
   * @param array $data
   * @return string
   */
  public function template(Page $page, $data = array()) {
    return $this->component('template')->render($page, $data);
  }
 
  public function request() {
    if(!is_null($this->request)) return $this->request;
    return $this->request = new Request($this);
  }
 
  public function router() {
/
var
/
www
/
vhosts
/
theaterzaken.com
/
httpdocs
/
kirby
/
kirby
/
component
/
response.php
 * @link      http://getkirby.com
 * @copyright Bastian Allgeier
 * @license   http://getkirby.com/license
 */
class Response extends \Kirby\Component {
 
  /**
   * Builds and return the response by various input
   * 
   * @param mixed $response
   * @return mixed
   */
  public function make($response) {
 
    if(is_string($response)) {
      return $this->kirby->render(page($response));
    } else if(is_array($response)) {
      return $this->kirby->render(page($response[0]), $response[1]);
    } else if(is_a($response, 'Page')) {
      return $this->kirby->render($response);      
    } else if(is_a($response, 'Response')) {
      return $response;
    } else {
      return null;
    }
 
  }
 
}
/
var
/
www
/
vhosts
/
theaterzaken.com
/
httpdocs
/
kirby
/
kirby.php
    // check for a valid route
    if(is_null($this->route)) {
      header::status('500');
      header::type('json');
      die(json_encode(array(
        'status'  => 'error',
        'message' => 'Invalid route or request method'
      )));
    }
 
    // call the router action with all arguments from the pattern
    $response = call($this->route->action(), $this->route->arguments());
 
    // load all language variables
    // this can only be loaded once the router action has been called
    // otherwise the current language is not yet available
    $this->localize();
 
    // build the response
    $this->response = $this->component('response')->make($response);
 
    // store the current language in the session
    if(
        $this->option('language.detect') &&
        $this->site()->multilang() &&
        $this->site()->language()
      ) {
      s::set('kirby_language', $this->site()->language()->code());
    }
 
    return $this->response;
 
  }
 
  /**
   * Register a new hook
   *
   * @param string/array $hook The name of the hook
   * @param closure $callback
   */
/
var
/
www
/
vhosts
/
theaterzaken.com
/
httpdocs
/
index.php
<?php
 
define('DS', DIRECTORY_SEPARATOR);
 
// load kirby
require(__DIR__ . DS . 'kirby' . DS . 'bootstrap.php');
 
// check for a custom site.php
if(file_exists(__DIR__ . DS . 'site.php')) {
  require(__DIR__ . DS . 'site.php');
} else {
  $kirby = kirby();
}
 
// render
echo $kirby->launch();

Environment & details:

Key Value
Kirby Toolkit v2.5.12
Kirby CMS v2.5.12
Key Value
pan 42
empty
empty
empty
empty
Key Value
USER p0io0f1a
HOME /var/www/vhosts/theaterzaken.com
SCRIPT_NAME /index.php
REQUEST_URI /panorama/?pan=42
QUERY_STRING pan=42
REQUEST_METHOD GET
SERVER_PROTOCOL HTTP/1.0
GATEWAY_INTERFACE CGI/1.1
REDIRECT_QUERY_STRING pan=42
REDIRECT_URL /panorama/
REMOTE_PORT 33892
SCRIPT_FILENAME /var/www/vhosts/theaterzaken.com/httpdocs/index.php
SERVER_ADMIN systeembeheer@sohosted.com
CONTEXT_DOCUMENT_ROOT /var/www/vhosts/theaterzaken.com/httpdocs
CONTEXT_PREFIX
REQUEST_SCHEME http
DOCUMENT_ROOT /var/www/vhosts/theaterzaken.com/httpdocs
REMOTE_ADDR 54.87.17.177
SERVER_PORT 80
SERVER_ADDR 176.117.58.35
SERVER_NAME theaterzaken.com
SERVER_SOFTWARE Apache
SERVER_SIGNATURE
PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin
HTTP_REFERER http://theaterzaken.nl/panorama/?pan=42
HTTP_USER_AGENT claudebot
HTTP_ACCEPT */*
HTTP_CONNECTION close
HTTP_X_ACCEL_INTERNAL /internal-nginx-static-location
HTTP_X_REAL_IP 54.87.17.177
HTTP_HOST theaterzaken.com
proxy-nokeepalive 1
PASSENGER_DOWNLOAD_NATIVE_SUPPORT_BINARY 0
PASSENGER_COMPILE_NATIVE_SUPPORT_BINARY 0
PERL5LIB /usr/share/awstats/lib:/usr/share/awstats/plugins
QS_ConnectionId 171162798623846044256133
QS_AllConn 3
QS_IPConn 3
QS_SrvConn 3
UNIQUE_ID ZgVe0lveCT@nClIispZfXgAAAVg
REDIRECT_STATUS 200
REDIRECT_PASSENGER_DOWNLOAD_NATIVE_SUPPORT_BINARY 0
REDIRECT_PASSENGER_COMPILE_NATIVE_SUPPORT_BINARY 0
REDIRECT_PERL5LIB /usr/share/awstats/lib:/usr/share/awstats/plugins
REDIRECT_QS_ConnectionId 171162798623846044256133
REDIRECT_QS_AllConn 3
REDIRECT_QS_IPConn 3
REDIRECT_QS_SrvConn 3
REDIRECT_UNIQUE_ID ZgVe0lveCT@nClIispZfXgAAAVg
FCGI_ROLE RESPONDER
PHP_SELF /index.php
REQUEST_TIME_FLOAT 1711627986.2428
REQUEST_TIME 1711627986
Key Value
USER p0io0f1a
HOME /var/www/vhosts/theaterzaken.com
SCRIPT_NAME /index.php
REQUEST_URI /panorama/?pan=42
QUERY_STRING pan=42
REQUEST_METHOD GET
SERVER_PROTOCOL HTTP/1.0
GATEWAY_INTERFACE CGI/1.1
REDIRECT_QUERY_STRING pan=42
REDIRECT_URL /panorama/
REMOTE_PORT 33892
SCRIPT_FILENAME /var/www/vhosts/theaterzaken.com/httpdocs/index.php
SERVER_ADMIN systeembeheer@sohosted.com
CONTEXT_DOCUMENT_ROOT /var/www/vhosts/theaterzaken.com/httpdocs
CONTEXT_PREFIX
REQUEST_SCHEME http
DOCUMENT_ROOT /var/www/vhosts/theaterzaken.com/httpdocs
REMOTE_ADDR 54.87.17.177
SERVER_PORT 80
SERVER_ADDR 176.117.58.35
SERVER_NAME theaterzaken.com
SERVER_SOFTWARE Apache
SERVER_SIGNATURE
PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin
HTTP_REFERER http://theaterzaken.nl/panorama/?pan=42
HTTP_USER_AGENT claudebot
HTTP_ACCEPT */*
HTTP_CONNECTION close
HTTP_X_ACCEL_INTERNAL /internal-nginx-static-location
HTTP_X_REAL_IP 54.87.17.177
HTTP_HOST theaterzaken.com
proxy-nokeepalive 1
PASSENGER_DOWNLOAD_NATIVE_SUPPORT_BINARY 0
PASSENGER_COMPILE_NATIVE_SUPPORT_BINARY 0
PERL5LIB /usr/share/awstats/lib:/usr/share/awstats/plugins
QS_ConnectionId 171162798623846044256133
QS_AllConn 3
QS_IPConn 3
QS_SrvConn 3
UNIQUE_ID ZgVe0lveCT@nClIispZfXgAAAVg
REDIRECT_STATUS 200
REDIRECT_PASSENGER_DOWNLOAD_NATIVE_SUPPORT_BINARY 0
REDIRECT_PASSENGER_COMPILE_NATIVE_SUPPORT_BINARY 0
REDIRECT_PERL5LIB /usr/share/awstats/lib:/usr/share/awstats/plugins
REDIRECT_QS_ConnectionId 171162798623846044256133
REDIRECT_QS_AllConn 3
REDIRECT_QS_IPConn 3
REDIRECT_QS_SrvConn 3
REDIRECT_UNIQUE_ID ZgVe0lveCT@nClIispZfXgAAAVg
FCGI_ROLE RESPONDER
PHP_SELF /index.php
REQUEST_TIME_FLOAT 1711627986.2428
REQUEST_TIME 1711627986
0. Whoops\Handler\PrettyPageHandler