Error
The given image is invalid Error thrown with message "The given image is invalid" Stacktrace: #13 Error in /data/www/fairnetzt-journal.de/kirby/vendor/getkirby/toolkit/lib/thumb.php:68 #12 Thumb:__construct in /data/www/fairnetzt-journal.de/kirby/helpers.php:324 #11 thumb in /data/www/fairnetzt-journal.de/site/snippets/article.php:46 #10 require in /data/www/fairnetzt-journal.de/kirby/vendor/getkirby/toolkit/lib/tpl.php:22 #9 Tpl:load in /data/www/fairnetzt-journal.de/kirby/kirby/component/snippet.php:38 #8 Kirby\Component\Snippet:render in /data/www/fairnetzt-journal.de/kirby/helpers.php:12 #7 snippet in /data/www/fairnetzt-journal.de/site/templates/journal.php:31 #6 require in /data/www/fairnetzt-journal.de/kirby/vendor/getkirby/toolkit/lib/tpl.php:22 #5 Tpl:load in /data/www/fairnetzt-journal.de/kirby/kirby/component/template.php:103 #4 Kirby\Component\Template:render in /data/www/fairnetzt-journal.de/kirby/kirby.php:671 #3 Kirby:template in /data/www/fairnetzt-journal.de/kirby/kirby.php:659 #2 Kirby:render in /data/www/fairnetzt-journal.de/kirby/kirby/component/response.php:29 #1 Kirby\Component\Response:make in /data/www/fairnetzt-journal.de/kirby/kirby.php:741 #0 Kirby:launch in /data/www/fairnetzt-journal.de/index.php:16
Stack frames (14)
13
Error
/
vendor
/
getkirby
/
toolkit
/
lib
/
thumb.php
68
12
Thumb
__construct
/
helpers.php
324
11
thumb
/
data
/
www
/
fairnetzt-journal.de
/
site
/
snippets
/
article.php
46
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
/
data
/
www
/
fairnetzt-journal.de
/
site
/
templates
/
journal.php
31
6
require
/
vendor
/
getkirby
/
toolkit
/
lib
/
tpl.php
22
5
Tpl
load
/
kirby
/
component
/
template.php
103
4
Kirby
\
Component
\
Template
render
/
kirby.php
671
3
Kirby
template
/
kirby.php
659
2
Kirby
render
/
kirby
/
component
/
response.php
29
1
Kirby
\
Component
\
Response
make
/
kirby.php
741
0
Kirby
launch
/
data
/
www
/
fairnetzt-journal.de
/
index.php
16
/
data
/
www
/
fairnetzt-journal.de
/
kirby
/
vendor
/
getkirby
/
toolkit
/
lib
/
thumb.php
   * @param array $params
   */
  public function __construct($source, $params = array()) {
 
    $this->source      = $this->result = is_a($source, 'Media') ? $source : new Media($source);
    $this->options     = array_merge(static::$defaults, $this->params($params));
    $this->destination = $this->destination();
 
    // don't create the thumbnail if it's not necessary
    if($this->isObsolete()) return;
 
    // don't create the thumbnail if it exists
    if(!$this->isThere()) {
 
      // try to create the thumb folder if it is not there yet
      dir::make(dirname($this->destination->root));
 
      // check for a valid image
      if(!$this->source->exists() || $this->source->type() != 'image') {
        throw new Error('The given image is invalid', static::ERROR_INVALID_IMAGE);
      }
 
      // check for a valid driver
      if(!array_key_exists($this->options['driver'], static::$drivers)) {
        throw new Error('Invalid thumbnail driver', static::ERROR_INVALID_DRIVER);
      }
 
      // create the thumbnail
      $this->create();
 
      // check if creating the thumbnail failed
      if(!file_exists($this->destination->root)) return;
 
    }
 
    // create the result object
    $this->result = new Media($this->destination->root, $this->destination->url);
 
  }
 
/
data
/
www
/
fairnetzt-journal.de
/
kirby
/
helpers.php
  if($page) {
    return $page->image($filename);
  } else {
    return null;
  }
 
}
 
/**
 * Shortcut to create a new thumb object
 *
 * @param mixed Either a file path or a Media object
 * @param array An array of additional params for the thumb
 * @return object Thumb
 */
function thumb($image, $params = array(), $obj = true) {
  if(is_a($image, 'File') || is_a($image, 'Asset')) {
    return $obj ? $image->thumb($params) : $image->thumb($params)->url();
  } else {
    $class = new Thumb($image, $params);
    return $obj ? $class : $class->url();
  }
}
/
data
/
www
/
fairnetzt-journal.de
/
site
/
snippets
/
article.php
            <? endif ?>
        </div>
        <a href="<?= $article->url() ?>" class="button" title=""><?= l::get('readArticle')?></a>
    </div>
    
    <? $hero = $article->image($article->builder()->toStructure()->first()->picture()) ?>
    
    <? if($article->size() == 'large') : ?>
    
        <? $width = 2400 ?>
        <? $height = 1600 ?>
        
    <? else : ?>
    
        <? $width = 1200 ?>
        <? $height = 800 ?>
    
    <? endif ?>
    
    <div class="parallax-window <?= $articleSize ?>" data-parallax="scroll" data-speed="0.8" data-image-src="<?= thumb($hero, array('width' => $width, 'height' => $height, 'crop' => true, 'quality' => 80))->url() ?>"></div>
    
    <!--
    
    <img src="<?= thumb($hero, array('width' => 1200, 'height' => 800, 'crop' => true, 'quality' => 80))->url() ?>" alt="" title="">
    
    -->
    
</article>
/
data
/
www
/
fairnetzt-journal.de
/
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
/
www
/
fairnetzt-journal.de
/
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);
  }
 
}
/
data
/
www
/
fairnetzt-journal.de
/
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
/
data
/
www
/
fairnetzt-journal.de
/
site
/
templates
/
journal.php
        </div>
    </section>
    
    <? endif ?>
    
    <? if($articles != '' && param('tag') != '') : ?>
    
    <section class="content-header">
        <h2>Artikel mit dem Tag "<?= param('tag') ?>"</h2>
    </section>
    
    <? endif ?>
    
    <? if($articles != '') : ?>
    
    <section class="articles">
    
        <? foreach($articles as $article) : ?>
        
            <? snippet('article', ['article' => $article]) ?>
        
        <? endforeach ?>
        
    </section>
    
    <? endif ?>
    
    <? if($articles != '' && param('tag') != '') : ?>
    
    <div class="button-area">
    
        <a href="<?= $pages->find('journal')->url() ?>"><?= l::get('viewAllArticles')?></a>
        
    </div>
    
    <? endif ?>
    
</main>
 
<?php snippet('footer') ?>
/
data
/
www
/
fairnetzt-journal.de
/
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
/
www
/
fairnetzt-journal.de
/
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
/
www
/
fairnetzt-journal.de
/
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
/
www
/
fairnetzt-journal.de
/
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
/
www
/
fairnetzt-journal.de
/
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
/
www
/
fairnetzt-journal.de
/
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
/
www
/
fairnetzt-journal.de
/
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.8
Kirby CMS v2.5.8
empty
empty
empty
empty
empty
Key Value
USER www-data
HOME /var/www
SCRIPT_NAME /index.php
REQUEST_URI /en/journal/tag:raumwandler
QUERY_STRING
REQUEST_METHOD GET
SERVER_PROTOCOL HTTP/1.0
GATEWAY_INTERFACE CGI/1.1
REDIRECT_URL /en/journal/tag:raumwandler
REMOTE_PORT 44964
SCRIPT_FILENAME /data/www/fairnetzt-journal.de/index.php
SERVER_ADMIN webmaster@localhost
CONTEXT_DOCUMENT_ROOT /data/www/fairnetzt-journal.de
CONTEXT_PREFIX
REQUEST_SCHEME http
DOCUMENT_ROOT /data/www/fairnetzt-journal.de
REMOTE_ADDR 195.16.80.219
SERVER_PORT 80
SERVER_ADDR 195.16.80.228
SERVER_NAME www.fairnetzt-journal.de
SERVER_SOFTWARE Apache/2.4.57
SERVER_SIGNATURE
PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
HTTP_REFERER https://fairnetzt-journal.de/en/journal/tag:raumwandler
HTTP_USER_AGENT claudebot
HTTP_ACCEPT */*
HTTP_CONNECTION close
HTTP_X_FORWARDED_PROTO https
HTTP_X_FORWARDED_FOR 54.196.27.122
HTTP_X_REAL_IP 54.196.27.122
HTTP_HOST www.fairnetzt-journal.de
proxy-nokeepalive 1
REDIRECT_STATUS 200
FCGI_ROLE RESPONDER
PHP_SELF /index.php
REQUEST_TIME_FLOAT 1711634625.7142
REQUEST_TIME 1711634625
empty
0. Whoops\Handler\PrettyPageHandler