Error
Call to a member function action_title() on boolean Error thrown with message "Call to a member function action_title() on boolean" Stacktrace: #8 Error in /data/sites/web/houssinbe/www/site/templates/reactie.php:215 #7 require in /data/sites/web/houssinbe/www/kirby/vendor/getkirby/toolkit/lib/tpl.php:22 #6 Tpl:load in /data/sites/web/houssinbe/www/kirby/kirby/component/template.php:103 #5 Kirby\Component\Template:render in /data/sites/web/houssinbe/www/kirby/kirby.php:681 #4 Kirby:template in /data/sites/web/houssinbe/www/kirby/kirby.php:669 #3 Kirby:render in /data/sites/web/houssinbe/www/kirby/kirby/component/response.php:29 #2 Kirby\Component\Response:make in /data/sites/web/houssinbe/www/site/plugins/html-minifier/html-minifier.php:12 #1 JensTornell\HtmlMinifier:make in /data/sites/web/houssinbe/www/kirby/kirby.php:751 #0 Kirby:launch in /data/sites/web/houssinbe/www/index.php:16
Stack frames (9)
8
Error
/
data
/
sites
/
web
/
houssinbe
/
www
/
site
/
templates
/
reactie.php
215
7
require
/
vendor
/
getkirby
/
toolkit
/
lib
/
tpl.php
22
6
Tpl
load
/
kirby
/
component
/
template.php
103
5
Kirby
\
Component
\
Template
render
/
kirby.php
681
4
Kirby
template
/
kirby.php
669
3
Kirby
render
/
kirby
/
component
/
response.php
29
2
Kirby
\
Component
\
Response
make
/
data
/
sites
/
web
/
houssinbe
/
www
/
site
/
plugins
/
html-minifier
/
html-minifier.php
12
1
JensTornell
\
HtmlMinifier
make
/
kirby.php
751
0
Kirby
launch
/
data
/
sites
/
web
/
houssinbe
/
www
/
index.php
16
/
data
/
sites
/
web
/
houssinbe
/
www
/
site
/
templates
/
reactie.php

<!-- <div class="txt_titel_blockholder">
    <?php foreach($page->parent()->txtcontent()->toStructure() as $block): ?>
        <?php snippet('txt_titel_block', array("t"=>$block->title(),"txt"=>$block->txt())) ?>
    <?php endforeach ?>
</div> -->

    <div class="calltoaction_block ">
        <div class="inner">
            <div class="margins reverse">

                <div class="left">
                    <div class="wrap">
                        <div class="content">
                            <?php
                            $ob=$site->index()->filterBy('template', 'in', ['pup'])->findBy( 'uid', str::slug($page->rashond()));
                            //$ob= page("pups-te-koop")->children()->find('dwergpinscher');?>

                            <h1><?=  $ob->action_title() ?></h1>
                            <?php if($page->action_firsthide() != '1'): ?>
                                <?= $page->action_firsttxt()->kirbytext() ?>
                            <?php endif ?>
                            <?= $ob->action_txt()->kirbytext() ?>
                            <div class="more contactbtn">
                                <span>›</span><?= l::get('contacteer-ons'); ?>
                            </div>
                        </div>
                    </div>
                </div>
                <?php  if($img = $ob->image($ob->action_img())):  ?>
                <?php $alt=$img->caption()->isNotEmpty()? $img->caption() : $ob->action_title(); ?>
                <div class="right">
                    <div class="figure">
                        <img data-src="<?=  $img->resize(900,null,100)->url() ?>" class="parentbg lazy" alt="<?= $alt ?>" />
                    </div>
                </div>
                <?php endif ?>
            </div>
        </div>
/
data
/
sites
/
web
/
houssinbe
/
www
/
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;
  }
 
}
/
data
/
sites
/
web
/
houssinbe
/
www
/
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;
 
  }
 
}
 
/
data
/
sites
/
web
/
houssinbe
/
www
/
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
   */
/
data
/
sites
/
web
/
houssinbe
/
www
/
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() {
/
data
/
sites
/
web
/
houssinbe
/
www
/
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;
    }
 
  }
 
}
/
data
/
sites
/
web
/
houssinbe
/
www
/
site
/
plugins
/
html-minifier
/
html-minifier.php
<?php
namespace JensTornell;
 
use C;
use Kirby\Component\Response;
use Minify_HTML;
 
include __DIR__ . DS . 'minify' . DS . 'HTML.php';
 
class HtmlMinifier extends Response {
    public function make($response) {
        $buffer = parent::make( $response );
        if( $buffer && c::get('plugin.html.minifier.active', true) ) {
            return Minify_HTML::minify( $buffer, c::get('plugin.html.minifier.options', array()) );
        }
        return $buffer;
    }
}
 
$kirby->set('component', 'response', 'JensTornell\HtmlMinifier');
/
data
/
sites
/
web
/
houssinbe
/
www
/
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
   */
/
data
/
sites
/
web
/
houssinbe
/
www
/
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 houssinbe
HOME /data/sites/web/houssinbe/
SCRIPT_NAME /index.php
REQUEST_URI /klanten/chanel-de-shih-tzu
QUERY_STRING
REQUEST_METHOD GET
SERVER_PROTOCOL HTTP/1.1
GATEWAY_INTERFACE CGI/1.1
REDIRECT_URL /klanten/chanel-de-shih-tzu
REMOTE_PORT 15842
SCRIPT_FILENAME /data/sites/web/houssinbe/www/index.php
SERVER_ADMIN support@webhosting.be
CONTEXT_DOCUMENT_ROOT /data/sites/web/houssinbe/www
CONTEXT_PREFIX
REQUEST_SCHEME https
DOCUMENT_ROOT /data/sites/web/houssinbe/www
REMOTE_ADDR 54.85.255.74
SERVER_PORT 443
SERVER_ADDR 83.217.75.106
SERVER_NAME www.houssin.be
SERVER_SOFTWARE Apache
SERVER_SIGNATURE
LD_LIBRARY_PATH /data/jail/usr/local/httpd-2.4-worker/lib:/data/jail/usr/local/openssl/lib
PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
HTTP_USER_AGENT claudebot
HTTP_ACCEPT */*
HTTP_X_SCHEME https
HTTP_X_HCL_FORWARDED_PORT 443
HTTP_X_HCL_FORWARDED_PROTO https
HTTP_X_REAL_IP 54.85.255.74
HTTP_HOST www.houssin.be
proxy-nokeepalive 1
SCRIPT_URI https://www.houssin.be/klanten/chanel-de-shih-tzu
SCRIPT_URL /klanten/chanel-de-shih-tzu
LOGPREFIX user_houssinbe
UNIQUE_ID Zfl7BrqMLB4vmEUazwSY5gAAAI8
HTTPS on
REDIRECT_STATUS 200
REDIRECT_SCRIPT_URI https://www.houssin.be/klanten/chanel-de-shih-tzu
REDIRECT_SCRIPT_URL /klanten/chanel-de-shih-tzu
REDIRECT_LOGPREFIX user_houssinbe
REDIRECT_UNIQUE_ID Zfl7BrqMLB4vmEUazwSY5gAAAI8
REDIRECT_HTTPS on
FCGI_ROLE RESPONDER
PHP_SELF /index.php
REQUEST_TIME_FLOAT 1710848774,029
REQUEST_TIME 1710848774
empty
0. Whoops\Handler\PrettyPageHandler