Error
Call to a member function crop() on null Error thrown with message "Call to a member function crop() on null" Stacktrace: #7 Error in /kunden/438771_8076/heholz.at/site/templates/heholz-company.php:27 #6 require in /kunden/438771_8076/heholz.at/kirby/vendor/getkirby/toolkit/lib/tpl.php:22 #5 Tpl:load in /kunden/438771_8076/heholz.at/kirby/kirby/component/template.php:103 #4 Kirby\Component\Template:render in /kunden/438771_8076/heholz.at/kirby/kirby.php:635 #3 Kirby:template in /kunden/438771_8076/heholz.at/kirby/kirby.php:613 #2 Kirby:render in /kunden/438771_8076/heholz.at/kirby/kirby/component/response.php:29 #1 Kirby\Component\Response:make in /kunden/438771_8076/heholz.at/kirby/kirby.php:705 #0 Kirby:launch in /kunden/438771_8076/heholz.at/index.php:16
Stack frames (8)
7
Error
/
kunden
/
438771_8076
/
heholz.at
/
site
/
templates
/
heholz-company.php
27
6
require
/
vendor
/
getkirby
/
toolkit
/
lib
/
tpl.php
22
5
Tpl
load
/
kirby
/
component
/
template.php
103
4
Kirby
\
Component
\
Template
render
/
kirby.php
635
3
Kirby
template
/
kirby.php
613
2
Kirby
render
/
kirby
/
component
/
response.php
29
1
Kirby
\
Component
\
Response
make
/
kirby.php
705
0
Kirby
launch
/
kunden
/
438771_8076
/
heholz.at
/
index.php
16
/
kunden
/
438771_8076
/
heholz.at
/
site
/
templates
/
heholz-company.php
    <?php if($page->text()->isNotEmpty()): ?>
      <h1><?= $page->title()->html() ?></h1>
 
      <div class="text">
        <?= $page->text()->kirbytext() ?>
      </div>
    <?php endif ?>
    <section class="home-section"> 
      <?php $n = 0; foreach($page->children()->visible() as $company): $n++; ?>
 
      <div class="section-container <?php echo ($n%2) ? 'odd' : 'even' ?>">
 
        <div class="section-text">
          <h3><?=$company->title()->kirbytext() ?></h3>
          <?=$company->companyText()->kirbytext() ?>
        </div>
          
        <?php if($company->companyImage()->isNotEmpty()): ?>
          <div class="section-image">
            <img src="<?= $company->files()->find($company->companyImage())->crop(750,750)->url();?>"
            alt="<?php if($company->files()->find($company->companyImage())->altText()->isNotEmpty()): echo $company->files()->find($company->companyImage())->altText()->html(); else:  echo $company->title()->html(); endif ?>">
          </div>
        <?php endif ?>
 
      </div>
      <?php endforeach ?>
    </section>
  
  </main>
  <!-- END Main Content -->
 
</div>
 
<!-- END #page-container -->
 
<?php snippet('footer') ?>
/
kunden
/
438771_8076
/
heholz.at
/
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;
  }
 
}
/
kunden
/
438771_8076
/
heholz.at
/
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;
 
  }
 
}
 
/
kunden
/
438771_8076
/
heholz.at
/
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
   */
/
kunden
/
438771_8076
/
heholz.at
/
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
   */
/
kunden
/
438771_8076
/
heholz.at
/
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;
    }
 
  }
 
}
/
kunden
/
438771_8076
/
heholz.at
/
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
   */
/
kunden
/
438771_8076
/
heholz.at
/
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.4.1
Kirby CMS v2.4.1
empty
empty
empty
empty
empty
Key Value
PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
TEMP /temp/438771/re985964/heholz.at
TMPDIR /temp/438771/re985964/heholz.at
USER re985964
HOME /kunden/438771_8076/heholz.at
SCRIPT_NAME /index.php
REQUEST_URI /en/unternehmen
QUERY_STRING
REQUEST_METHOD GET
SERVER_PROTOCOL HTTP/1.1
GATEWAY_INTERFACE CGI/1.1
REDIRECT_URL /en/unternehmen
REMOTE_PORT 50268
SCRIPT_FILENAME /kunden/438771_8076/heholz.at/index.php
SERVER_ADMIN webmaster@www.heholz.at
CONTEXT_DOCUMENT_ROOT /kunden/438771_8076/heholz.at
CONTEXT_PREFIX
REQUEST_SCHEME https
DOCUMENT_ROOT /kunden/438771_8076/heholz.at
REMOTE_ADDR 54.235.6.60
SERVER_PORT 443
SERVER_ADDR 172.27.0.11
SERVER_NAME www.heholz.at
SERVER_SOFTWARE Apache
SERVER_SIGNATURE
HTTP_USER_AGENT claudebot
HTTP_ACCEPT */*
HTTP_CONNECTION close
HTTP_RANGE bytes=0-5242879
HTTP_X_FORWARDED_FROM 54.235.6.60
HTTP_X_FORWARDED_PROTO https
HTTP_HOST www.heholz.at
proxy-nokeepalive 1
PHPEdition 7-4
DFSERVER_ALIAS heholz.at
DFLIMITPROC 0
DFLIMITCPU 240
DFLIMITMEM 512000
DFCANCGI 1
PHPVersion 7-4-FCGI
DFCATCHALLSTATUS FALSE
DFDNUMBER 2716957
DFUID 99999
UNIQUE_ID ZfkSqz1OpF0J-dZSvyAfVgAAAA8
HTTPS on
REDIRECT_STATUS 200
REDIRECT_PHPEdition 7-4
REDIRECT_DFSERVER_ALIAS heholz.at
REDIRECT_DFLIMITPROC 0
REDIRECT_DFLIMITCPU 240
REDIRECT_DFLIMITMEM 512000
REDIRECT_DFCANCGI 1
REDIRECT_PHPVersion 7-4-FCGI
REDIRECT_DFCATCHALLSTATUS FALSE
REDIRECT_DFDNUMBER 2716957
REDIRECT_DFUID 99999
REDIRECT_UNIQUE_ID ZfkSqz1OpF0J-dZSvyAfVgAAAA8
REDIRECT_HTTPS on
FCGI_ROLE RESPONDER
PHP_SELF /index.php
REQUEST_TIME_FLOAT 1710822059.7796
REQUEST_TIME 1710822059
empty
0. Whoops\Handler\PrettyPageHandler