Whoops \ Exception \ ErrorException (E_WARNING)
Creating default object from empty value Whoops\Exception\ErrorException thrown with message "Creating default object from empty value" Stacktrace: #9 Whoops\Exception\ErrorException in /usr/home/chisholm/public_html/vintagepostersnyc.com/app/site/controllers/posters.php:51 #8 Whoops\Run:handleError in /usr/home/chisholm/public_html/vintagepostersnyc.com/app/site/controllers/posters.php:51 #7 Kirby\Registry\Controller:{closure} in /usr/home/chisholm/public_html/vintagepostersnyc.com/app/kirby/core/page.php:1515 #6 PageAbstract:controller in /usr/home/chisholm/public_html/vintagepostersnyc.com/app/kirby/kirby/component/template.php:35 #5 Kirby\Component\Template:data in /usr/home/chisholm/public_html/vintagepostersnyc.com/app/kirby/kirby/component/template.php:87 #4 Kirby\Component\Template:render in /usr/home/chisholm/public_html/vintagepostersnyc.com/app/kirby/kirby.php:681 #3 Kirby:template in /usr/home/chisholm/public_html/vintagepostersnyc.com/app/kirby/kirby.php:669 #2 Kirby:render in /usr/home/chisholm/public_html/vintagepostersnyc.com/app/kirby/kirby/component/response.php:27 #1 Kirby\Component\Response:make in /usr/home/chisholm/public_html/vintagepostersnyc.com/app/kirby/kirby.php:751 #0 Kirby:launch in /usr/home/chisholm/public_html/vintagepostersnyc.com/app/index.php:16
Stack frames (10)
9
Whoops
\
Exception
\
ErrorException
/
usr
/
home
/
chisholm
/
public_html
/
vintagepostersnyc.com
/
app
/
site
/
controllers
/
posters.php
51
8
Whoops
\
Run
handleError
/
usr
/
home
/
chisholm
/
public_html
/
vintagepostersnyc.com
/
app
/
site
/
controllers
/
posters.php
51
7
Kirby
\
Registry
\
Controller
{closure}
/
core
/
page.php
1515
6
PageAbstract
controller
/
kirby
/
component
/
template.php
35
5
Kirby
\
Component
\
Template
data
/
kirby
/
component
/
template.php
87
4
Kirby
\
Component
\
Template
render
/
kirby.php
681
3
Kirby
template
/
kirby.php
669
2
Kirby
render
/
kirby
/
component
/
response.php
27
1
Kirby
\
Component
\
Response
make
/
kirby.php
751
0
Kirby
launch
/
usr
/
home
/
chisholm
/
public_html
/
vintagepostersnyc.com
/
app
/
index.php
16
/
usr
/
home
/
chisholm
/
public_html
/
vintagepostersnyc.com
/
app
/
site
/
controllers
/
posters.php
      }
      else {
        // Find posters by assignment to this subsection (most common)
        $posters = db::query("SELECT * FROM `posters_view` WHERE FIND_IN_SET(?,`category`) AND `is_detail_record` NOT LIKE 'yes' AND `status` LIKE 'active' ORDER BY `title`",[$s->{'id'}])->toArray();
      }
      
      $posters = $posters;
      
      // Assign posters to this subcategory
      $s->{'posters'} = $posters;
    }
  }
  else {
    if ( $category->{'min_size'} ) {
      $q = db::query("SELECT * FROM `posters_view` WHERE FIND_IN_SET(?,`category`) AND `is_detail_record` NOT LIKE 'yes' AND `status` LIKE 'active' AND `longest` BETWEEN " . $category->{'min_size'} . ' AND ' . $category->{'max_size'} . " ORDER BY `title`",[$category->{'parent'}]);
 
      $category->{'posters'} = $q ? $q->toArray() : [];
    }
    else {
      $category->{'posters'} = db::query("SELECT * FROM `posters_view` WHERE FIND_IN_SET(?,`category`) AND `is_detail_record` NOT LIKE 'yes' AND `status` LIKE 'active' ORDER BY `title`",[$category->{'id'}])->toArray();
    }
  }
      
  return array(
    // category_path is already passed by kirby's routing args
    'category' => $category,
    'siblings' => count($siblings) > 1 ? $siblings : [], // Only return siblings if there's more than one
    'subsections' => $subsections
  );
};
 
?>
/
usr
/
home
/
chisholm
/
public_html
/
vintagepostersnyc.com
/
app
/
site
/
controllers
/
posters.php
      }
      else {
        // Find posters by assignment to this subsection (most common)
        $posters = db::query("SELECT * FROM `posters_view` WHERE FIND_IN_SET(?,`category`) AND `is_detail_record` NOT LIKE 'yes' AND `status` LIKE 'active' ORDER BY `title`",[$s->{'id'}])->toArray();
      }
      
      $posters = $posters;
      
      // Assign posters to this subcategory
      $s->{'posters'} = $posters;
    }
  }
  else {
    if ( $category->{'min_size'} ) {
      $q = db::query("SELECT * FROM `posters_view` WHERE FIND_IN_SET(?,`category`) AND `is_detail_record` NOT LIKE 'yes' AND `status` LIKE 'active' AND `longest` BETWEEN " . $category->{'min_size'} . ' AND ' . $category->{'max_size'} . " ORDER BY `title`",[$category->{'parent'}]);
 
      $category->{'posters'} = $q ? $q->toArray() : [];
    }
    else {
      $category->{'posters'} = db::query("SELECT * FROM `posters_view` WHERE FIND_IN_SET(?,`category`) AND `is_detail_record` NOT LIKE 'yes' AND `status` LIKE 'active' ORDER BY `title`",[$category->{'id'}])->toArray();
    }
  }
      
  return array(
    // category_path is already passed by kirby's routing args
    'category' => $category,
    'siblings' => count($siblings) > 1 ? $siblings : [], // Only return siblings if there's more than one
    'subsections' => $subsections
  );
};
 
?>
/
usr
/
home
/
chisholm
/
public_html
/
vintagepostersnyc.com
/
app
/
kirby
/
core
/
page.php
   *
   * @return array
   */
  public function controller($arguments = array()) {
 
    // first try to get a controller for the representation
    $controller = null;
    if($representation = $this->representation()) {
      $controller = $this->kirby->registry->get('controller', $this->template() . '.' . $representation);
    }
 
    // no representation or no special controller: try the normal one
    if(!$controller) $controller = $this->kirby->registry->get('controller', $this->template());
 
    if(is_a($controller, 'Closure')) {
      return (array)call_user_func_array($controller, array(
        $this->site,
        $this->site->children(),
        $this,
        $arguments
      ));
    }
 
    return array();
 
  }
 
  /**
   * Converts the entire page array into
   * a json string
   *
   * @param closure $callback Filter callback
   * @return string
   */
  public function toJson($callback = null) {
    return json_encode($this->toArray($callback));
  }
 
  /**
   * Makes it possible to echo the entire object
/
usr
/
home
/
chisholm
/
public_html
/
vintagepostersnyc.com
/
app
/
kirby
/
kirby
/
component
/
template.php
 * @link      http://getkirby.com
 * @copyright Bastian Allgeier
 * @license   http://getkirby.com/license
 */
class Template extends \Kirby\Component {
 
  /**
   * Collects all template data by page
   * 
   * @param mixed $page
   * @param array $data
   * @return array
   */
  public function data($page, $data = []) {
 
    if($page instanceof Page) {
      $data = array_merge(
        $page->templateData(), 
        $data, 
        $page->controller($data)
      );
    }
 
    // apply the basic template vars
    return array_merge(array(
      'kirby' => $this->kirby,
      'site'  => $this->kirby->site(),
      'pages' => $this->kirby->site()->children(),
      'page'  => $page
    ), $data);
 
  }
 
  /**
   * Returns all available template files
   *
   * @return array
   */
  public function files() {
    $files = dir::read($this->kirby->roots()->templates());
/
usr
/
home
/
chisholm
/
public_html
/
vintagepostersnyc.com
/
app
/
kirby
/
kirby
/
component
/
template.php
   * @return string
   */
  public function file($name) {
    return $this->kirby->roots()->templates() . DS . str_replace('/', DS, $name) . '.php';
  }
 
  /**
   * Renders the template by page with the additional data
   * 
   * @param Page|string $template
   * @param array $data
   * @param boolean $return
   * @return string
   */
  public function render($template, $data = [], $return = true) {
 
    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;
 
/
usr
/
home
/
chisholm
/
public_html
/
vintagepostersnyc.com
/
app
/
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
   */
/
usr
/
home
/
chisholm
/
public_html
/
vintagepostersnyc.com
/
app
/
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() {
/
usr
/
home
/
chisholm
/
public_html
/
vintagepostersnyc.com
/
app
/
kirby
/
kirby
/
component
/
response.php
 * @package   Kirby CMS
 * @author    Bastian Allgeier <bastian@getkirby.com>
 * @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;
    }
 
  }
 
}
/
usr
/
home
/
chisholm
/
public_html
/
vintagepostersnyc.com
/
app
/
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
   */
/
usr
/
home
/
chisholm
/
public_html
/
vintagepostersnyc.com
/
app
/
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.14
Kirby CMS v2.5.14
empty
empty
empty
empty
empty
Key Value
PATH /bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin
PWD /usr/home/chisholm/public_html/fcgi-bin
ORIG_SCRIPT_NAME /fcgi-bin/php7_wrapper.sh
ORIG_PATH_TRANSLATED /usr/home/chisholm/public_html/vintagepostersnyc.com/app/index.php
ORIG_PATH_INFO /index.php
ORIG_SCRIPT_FILENAME /usr/home/chisholm/public_html/fcgi-bin/php7_wrapper.sh
HTTP_CONNECTION close
SCRIPT_NAME /index.php
REQUEST_URI /posters/travel_and_transportation/
QUERY_STRING
REQUEST_METHOD GET
SERVER_PROTOCOL HTTP/1.1
GATEWAY_INTERFACE CGI/1.1
REDIRECT_URL /index.php
REMOTE_PORT 52966
SCRIPT_FILENAME /usr/home/chisholm/public_html/vintagepostersnyc.com/app/index.php
SERVER_ADMIN webmaster@vintagepostersnyc.com
CONTEXT_DOCUMENT_ROOT /usr/home/chisholm/public_html/fcgi-bin/
CONTEXT_PREFIX /fcgi-bin/
REQUEST_SCHEME https
DOCUMENT_ROOT /usr/home/chisholm/public_html/vintagepostersnyc.com/app
REMOTE_ADDR 34.230.84.106
REMOTE_HOST 34.230.84.106
SERVER_PORT 443
SERVER_ADDR 216.92.35.91
SERVER_NAME www.vintagepostersnyc.com
SERVER_SOFTWARE Apache
SERVER_SIGNATURE
HTTP_HOST www.vintagepostersnyc.com
HTTP_REFERER http://www.vintagepostersnyc.com/posters/travel_and_transportation/
HTTP_USER_AGENT claudebot
HTTP_ACCEPT */*
SSL_TLS_SNI www.vintagepostersnyc.com
HTTPS on
UNIQUE_ID ZfleZUpGXBAhb0VgrxBnIgAAA8E
REDIRECT_STATUS 200
REDIRECT_HANDLER application/x-httpd-php
REDIRECT_SSL_TLS_SNI www.vintagepostersnyc.com
REDIRECT_HTTPS on
REDIRECT_UNIQUE_ID ZfleZUpGXBAhb0VgrxBnIgAAA8E
REDIRECT_REDIRECT_STATUS 200
REDIRECT_REDIRECT_SSL_TLS_SNI www.vintagepostersnyc.com
REDIRECT_REDIRECT_HTTPS on
REDIRECT_REDIRECT_UNIQUE_ID ZfleZUpGXBAhb0VgrxBnIgAAA8E
FCGI_ROLE RESPONDER
PHP_SELF /index.php
REQUEST_TIME_FLOAT 1710841445.0772
REQUEST_TIME 1710841445
empty
0. Whoops\Handler\PrettyPageHandler