ValueError
Path cannot be empty ValueError thrown with message "Path cannot be empty" Stacktrace: #13 ValueError in /var/www/html/efs-mount-point/dezimages/blog/kirby/vendor/getkirby/toolkit/lib/media.php:166 #12 file_get_contents in /var/www/html/efs-mount-point/dezimages/blog/kirby/vendor/getkirby/toolkit/lib/media.php:166 #11 Media:content in /var/www/html/efs-mount-point/dezimages/blog/site/snippets/pagination.php:10 #10 require in /var/www/html/efs-mount-point/dezimages/blog/kirby/vendor/getkirby/toolkit/lib/tpl.php:22 #9 Tpl:load in /var/www/html/efs-mount-point/dezimages/blog/kirby/kirby/component/snippet.php:38 #8 Kirby\Component\Snippet:render in /var/www/html/efs-mount-point/dezimages/blog/kirby/helpers.php:12 #7 snippet in /var/www/html/efs-mount-point/dezimages/blog/site/templates/blog.php:54 #6 require in /var/www/html/efs-mount-point/dezimages/blog/kirby/vendor/getkirby/toolkit/lib/tpl.php:22 #5 Tpl:load in /var/www/html/efs-mount-point/dezimages/blog/kirby/kirby/component/template.php:103 #4 Kirby\Component\Template:render in /var/www/html/efs-mount-point/dezimages/blog/kirby/kirby.php:635 #3 Kirby:template in /var/www/html/efs-mount-point/dezimages/blog/kirby/kirby.php:623 #2 Kirby:render in /var/www/html/efs-mount-point/dezimages/blog/kirby/kirby/component/response.php:29 #1 Kirby\Component\Response:make in /var/www/html/efs-mount-point/dezimages/blog/kirby/kirby.php:705 #0 Kirby:launch in /var/www/html/efs-mount-point/dezimages/blog/index.php:17
Stack frames (14)
13
ValueError
/
vendor
/
getkirby
/
toolkit
/
lib
/
media.php
166
12
file_get_contents
/
vendor
/
getkirby
/
toolkit
/
lib
/
media.php
166
11
Media
content
/
var
/
www
/
html
/
efs-mount-point
/
dezimages
/
blog
/
site
/
snippets
/
pagination.php
10
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
/
html
/
efs-mount-point
/
dezimages
/
blog
/
site
/
templates
/
blog.php
54
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
623
2
Kirby
render
/
kirby
/
component
/
response.php
29
1
Kirby
\
Component
\
Response
make
/
kirby.php
705
0
Kirby
launch
/
var
/
www
/
html
/
efs-mount-point
/
dezimages
/
blog
/
index.php
17
/
var
/
www
/
html
/
efs-mount-point
/
dezimages
/
blog
/
kirby
/
vendor
/
getkirby
/
toolkit
/
lib
/
media.php
      if(is_array($content)) {
        switch($format) {
          case 'json':
            $content = json_encode($content);
            break;
          case 'yaml':
            $content = yaml::encode($content);
            break;
          default:
            $content = serialize($content);
            break;
        }
      } else if(is_object($content)) {
        $content = serialize($content);
      }
      return $this->content = $content;
    }
 
    if(is_null($this->content)) {
      $this->content = file_get_contents($this->root);
    }
 
    return $this->content;
 
  }
 
  /**
   * Saves the file
   *
   * @param string $content
   * @return boolean
   */
  public function save($content = null, $format = null) {
    $content = $this->content($content, $format);
    return f::write($this->root, $content);
  }
 
  /**
   * Alternative for save
   *
/
var
/
www
/
html
/
efs-mount-point
/
dezimages
/
blog
/
kirby
/
vendor
/
getkirby
/
toolkit
/
lib
/
media.php
      if(is_array($content)) {
        switch($format) {
          case 'json':
            $content = json_encode($content);
            break;
          case 'yaml':
            $content = yaml::encode($content);
            break;
          default:
            $content = serialize($content);
            break;
        }
      } else if(is_object($content)) {
        $content = serialize($content);
      }
      return $this->content = $content;
    }
 
    if(is_null($this->content)) {
      $this->content = file_get_contents($this->root);
    }
 
    return $this->content;
 
  }
 
  /**
   * Saves the file
   *
   * @param string $content
   * @return boolean
   */
  public function save($content = null, $format = null) {
    $content = $this->content($content, $format);
    return f::write($this->root, $content);
  }
 
  /**
   * Alternative for save
   *
/
var
/
www
/
html
/
efs-mount-point
/
dezimages
/
blog
/
site
/
snippets
/
pagination.php
<?php if($pagination->hasPages()): ?>
  <nav class="pagination wrap cf">
 
    <?php if($pagination->hasPrevPage()): ?>
      <a class="pagination-item left" href="<?= $pagination->prevPageURL() ?>" rel="prev" title="newer articles">
        <?= (new Asset("assets/images/arrow-left.svg"))->content() ?>
      </a>
    <?php else: ?>
      <span class="pagination-item left is-inactive">
        <?= (new Asset("assets/images/arrow-left.svg"))->content() ?>
      </span>
    <?php endif ?>
 
    <?php if($pagination->hasNextPage()): ?>
      <a class="pagination-item right" href="<?= $pagination->nextPageURL() ?>" rel="next" title="older articles">
        <?= (new Asset("assets/images/arrow-right.svg"))->content() ?>
      </a>
    <?php else: ?>
      <span class="pagination-item right is-inactive">
        <?= (new Asset("assets/images/arrow-right.svg"))->content() ?>
      </span>
    <?php endif ?>
 
  </nav>
<?php endif ?>
/
var
/
www
/
html
/
efs-mount-point
/
dezimages
/
blog
/
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
/
html
/
efs-mount-point
/
dezimages
/
blog
/
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
/
html
/
efs-mount-point
/
dezimages
/
blog
/
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 $media
 * @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 $async
 * @return string
 */
function js($src, $async = false) {
  return call([kirby::instance()->component('js'), 'tag'], func_get_args());
}
 
/**
 * Global markdown parser shortcut
 *
 * @param string $text
/
var
/
www
/
html
/
efs-mount-point
/
dezimages
/
blog
/
site
/
templates
/
blog.php
                                    </div>  
                                    <h2><?= $article->title()->html() ?></h2>        
                                    <div class="post-content">
                                      <?php snippet('coverimage', $article) ?>
                                      <div class="text">
                                          <p>
                                            <?= $article->text()->kirbytext()->excerpt(50, 'words') ?>
                                            <a href="<?= $article->url() ?>" class="article-more">read more</a>
                                          </p>
                                      </div>
                                    </div>
                                  </article>
                                </div>
 
                              <?php endforeach ?>
                            <?php else: ?>
                              <p>This blog does not contain any articles yet.</p>
                            <?php endif ?>
 
                          <?php snippet('pagination') ?>
 
                        <!-- </main> -->
                        <p class="projects-section-more"><a href="<?= url() ?>/../blog/index.php" target="_blank" class="btn">More blog posts</a> </p>
 
 
 
 
                        </div>
                        <!-- /main blog list content -->
 
                        <div class="col-md-2"></div>
                    </div>
 
                    <div class="row">
 
                        <div class="col-md-2"></div>
                        <div class="col-md-8 section">
                            
                            <!-- blog navigation -->
                            <hr/>
/
var
/
www
/
html
/
efs-mount-point
/
dezimages
/
blog
/
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
/
html
/
efs-mount-point
/
dezimages
/
blog
/
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
/
html
/
efs-mount-point
/
dezimages
/
blog
/
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
/
html
/
efs-mount-point
/
dezimages
/
blog
/
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
/
html
/
efs-mount-point
/
dezimages
/
blog
/
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
/
html
/
efs-mount-point
/
dezimages
/
blog
/
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
/
html
/
efs-mount-point
/
dezimages
/
blog
/
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
USER apache
HOME /usr/share/httpd
SCRIPT_NAME /blog/index.php
REQUEST_URI /blog/wedding-photography
QUERY_STRING
REQUEST_METHOD GET
SERVER_PROTOCOL HTTP/1.1
GATEWAY_INTERFACE CGI/1.1
REDIRECT_URL /blog/wedding-photography
REMOTE_PORT 62950
SCRIPT_FILENAME /var/www/html/efs-mount-point/dezimages/blog/index.php
SERVER_ADMIN contact@dezimages.com
CONTEXT_DOCUMENT_ROOT /var/www/html/efs-mount-point/dezimages
CONTEXT_PREFIX
REQUEST_SCHEME http
DOCUMENT_ROOT /var/www/html/efs-mount-point/dezimages
REMOTE_ADDR 172.31.19.164
SERVER_PORT 80
SERVER_ADDR 172.31.47.252
SERVER_NAME dezimages.com
SERVER_SOFTWARE Apache/2.4.56 (Amazon Linux) OpenSSL/3.0.8
SERVER_SIGNATURE
PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin
HTTP_USER_AGENT claudebot
HTTP_ACCEPT */*
HTTP_X_AMZN_TRACE_ID Root=1-6605dc0b-2afa840b116c58122e996d96
HTTP_HOST dezimages.com
HTTP_X_FORWARDED_PORT 443
HTTP_X_FORWARDED_PROTO https
HTTP_X_FORWARDED_FOR 52.55.55.239
proxy-nokeepalive 1
SCRIPT_URI http://dezimages.com/blog/wedding-photography
SCRIPT_URL /blog/wedding-photography
UNIQUE_ID ZgXcC7sub4YXIoV3YKVCFAAAAEQ
REDIRECT_STATUS 200
REDIRECT_SCRIPT_URI http://dezimages.com/blog/wedding-photography
REDIRECT_SCRIPT_URL /blog/wedding-photography
REDIRECT_UNIQUE_ID ZgXcC7sub4YXIoV3YKVCFAAAAEQ
FCGI_ROLE RESPONDER
PHP_SELF /blog/index.php
REQUEST_TIME_FLOAT 1711660043.3642
REQUEST_TIME 1711660043
empty
0. Whoops\Handler\PrettyPageHandler