Error
Call to a member function store() on bool Error thrown with message "Call to a member function store() on bool" Stacktrace: #7 Error in /var/www/vhosts/app-hafenmanoever.ch/app-bootstheorie.ch/site/templates/devices.php:41 #6 require in /var/www/vhosts/app-hafenmanoever.ch/app-bootstheorie.ch/kirby/vendor/getkirby/toolkit/lib/tpl.php:22 #5 Tpl:load in /var/www/vhosts/app-hafenmanoever.ch/app-bootstheorie.ch/kirby/kirby/component/template.php:103 #4 Kirby\Component\Template:render in /var/www/vhosts/app-hafenmanoever.ch/app-bootstheorie.ch/kirby/kirby.php:681 #3 Kirby:template in /var/www/vhosts/app-hafenmanoever.ch/app-bootstheorie.ch/kirby/kirby.php:659 #2 Kirby:render in /var/www/vhosts/app-hafenmanoever.ch/app-bootstheorie.ch/kirby/kirby/component/response.php:29 #1 Kirby\Component\Response:make in /var/www/vhosts/app-hafenmanoever.ch/app-bootstheorie.ch/kirby/kirby.php:751 #0 Kirby:launch in /var/www/vhosts/app-hafenmanoever.ch/app-bootstheorie.ch/index.php:16
Stack frames (8)
7
Error
/
site
/
templates
/
devices.php
41
6
require
/
kirby
/
vendor
/
getkirby
/
toolkit
/
lib
/
tpl.php
22
5
Tpl
load
/
kirby
/
kirby
/
component
/
template.php
103
4
Kirby
\
Component
\
Template
render
/
kirby
/
kirby.php
681
3
Kirby
template
/
kirby
/
kirby.php
659
2
Kirby
render
/
kirby
/
kirby
/
component
/
response.php
29
1
Kirby
\
Component
\
Response
make
/
kirby
/
kirby.php
751
0
Kirby
launch
/
index.php
16
/
var
/
www
/
vhosts
/
app-hafenmanoever.ch
/
app-bootstheorie.ch
/
site
/
templates
/
devices.php
                        <?php if($detect->isAndroidOS()): ?>
                        <a href="<?php echo $pages->find('android')->store()->url() ?>">
                            <img src="<?php echo kirby()->urls()->index() ?>/assets/images/playstore_<?php echo $site->language()->code() ?>.png" height="35px">
                        </a>
                        <?php endif ?>
                        <?php if($detect->isBlackberry()): ?>
                        <a href="<?php echo $pages->find('blackberry')->store()->url() ?>">
                            <img src="<?php echo kirby()->urls()->index() ?>/assets/images/blackberry.png" height="35px">
                        </a>
                        <?php endif ?>

                        <?php if($detect->isMobile() == ""): ?>
                        <div class="list-inline">
                        <a href="<?php echo $pages->find('iphone')->store()->url() ?>" class="list-inline-item">
                            <img src="<?php echo kirby()->urls()->index() ?>/assets/images/appstore_<?php echo $site->language()->code() ?>.svg" height="35px">
                        </a>
                        <a href="<?php echo $pages->find('android')->store()->url() ?>" class="list-inline-item">
                            <img src="<?php echo kirby()->urls()->index() ?>/assets/images/playstore_<?php echo $site->language()->code() ?>.png" height="35px">
                        </a>
                        <a href="<?php echo $pages->find('blackberry')->store()->url() ?>" class="list-inline-item">
                            <img src="<?php echo kirby()->urls()->index() ?>/assets/images/blackberry.png" height="35px">
                        </a>
                        </div>
                        <?php endif ?>

                    </div>
                </div>

                <div class="hidden-sm hidden-xs col-12 col-md-7 text-center">
                    <div class="m-2">
                        <div class="carousel slide" data-ride="carousel">
                            <div class="carousel-inner">
                                <?php 
                $bilder = $pages->find('ipad')->images()->filterBy('sprache',$site->language()->code());
                if(!$detect->isMobile() && !$detect->isTablet()) $bilder = $pages->find('ipad')->images()->filterBy('sprache',$site->language()->code());
                $bilder .= $pages->find('iphone')->images()->filterBy('sprache',$site->language()->code());
                $bilder .= $pages->find('android')->images()->filterBy('sprache',$site->language()->code());
                $bilder .= $pages->find('blackberry')->images()->filterBy('sprache',$site->language()->code());
                if($detect->isiPad()) $bilder = $pages->find('ipad')->images()->filterBy('sprache',$site->language()->code());
                if($detect->isiPhone()) $bilder = $pages->find('iphone')->images()->filterBy('sprache',$site->language()->code());
/
var
/
www
/
vhosts
/
app-hafenmanoever.ch
/
app-bootstheorie.ch
/
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
/
app-hafenmanoever.ch
/
app-bootstheorie.ch
/
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
/
app-hafenmanoever.ch
/
app-bootstheorie.ch
/
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
/
app-hafenmanoever.ch
/
app-bootstheorie.ch
/
kirby
/
kirby.php
      // check for modified content within the content folder
      // and auto-expire the page cache in such a case
      if($this->options['cache.autoupdate'] and $this->cache()->exists($cacheId)) {
 
        // get the creation date of the cache file
        $created = $this->cache()->created($cacheId);
 
        // make sure to kill the cache if the site has been modified
        if($this->site->wasModifiedAfter($created)) {
          $this->cache()->remove($cacheId);
        }
 
      }
 
      // 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
   */
/
var
/
www
/
vhosts
/
app-hafenmanoever.ch
/
app-bootstheorie.ch
/
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
/
app-hafenmanoever.ch
/
app-bootstheorie.ch
/
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
/
app-hafenmanoever.ch
/
app-bootstheorie.ch
/
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.10
Kirby CMS v2.5.10
empty
empty
empty
empty
empty
Key Value
USER srv-gehriandre01
HOME /var/www/vhosts/app-hafenmanoever.ch
SCRIPT_NAME /index.php
REQUEST_URI /iphone
QUERY_STRING
REQUEST_METHOD GET
SERVER_PROTOCOL HTTP/1.0
GATEWAY_INTERFACE CGI/1.1
REDIRECT_URL /iphone
REMOTE_PORT 42076
SCRIPT_FILENAME /var/www/vhosts/app-hafenmanoever.ch/app-bootstheorie.ch/index.php
SERVER_ADMIN root@localhost
CONTEXT_DOCUMENT_ROOT /var/www/vhosts/app-hafenmanoever.ch/app-bootstheorie.ch
CONTEXT_PREFIX
REQUEST_SCHEME https
DOCUMENT_ROOT /var/www/vhosts/app-hafenmanoever.ch/app-bootstheorie.ch
REMOTE_ADDR 3.93.173.205
SERVER_PORT 443
SERVER_ADDR 94.130.237.4
SERVER_NAME app-bootstheorie.ch
SERVER_SOFTWARE Apache
SERVER_SIGNATURE
PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin
HTTP_USER_AGENT claudebot
HTTP_ACCEPT */*
HTTP_CONNECTION close
HTTP_X_ACCEL_INTERNAL /internal-nginx-static-location
HTTP_X_REAL_IP 3.93.173.205
HTTP_HOST app-bootstheorie.ch
proxy-nokeepalive 1
HTTPS on
PERL5LIB /usr/share/awstats/lib:/usr/share/awstats/plugins
UNIQUE_ID Zfl9B6ai0VVOs1D9FJ5R8gAAAAY
QS_ConnectionId 171084928719263106796076
QS_AllConn 2
QS_SrvConn 2
REDIRECT_STATUS 200
REDIRECT_HTTPS on
REDIRECT_PERL5LIB /usr/share/awstats/lib:/usr/share/awstats/plugins
REDIRECT_UNIQUE_ID Zfl9B6ai0VVOs1D9FJ5R8gAAAAY
REDIRECT_QS_ConnectionId 171084928719263106796076
REDIRECT_QS_AllConn 2
REDIRECT_QS_SrvConn 2
FCGI_ROLE RESPONDER
PHP_SELF /index.php
REQUEST_TIME_FLOAT 1710849287,1981
REQUEST_TIME 1710849287
empty
0. Whoops\Handler\PrettyPageHandler