Whoops \ Exception \ ErrorException (E_NOTICE)
compact(): Undefined variable: query Whoops\Exception\ErrorException thrown with message "compact(): Undefined variable: query" Stacktrace: #9 Whoops\Exception\ErrorException in /home/caleb/webapps/cecilsletters/site/controllers/search.php:65 #8 compact in /home/caleb/webapps/cecilsletters/site/controllers/search.php:65 #7 Kirby\Registry\Controller:{closure} in /home/caleb/webapps/cecilsletters/kirby/core/page.php:1515 #6 PageAbstract:controller in /home/caleb/webapps/cecilsletters/site/plugins/kirby-starthook/kirby-starthook.php:9 #5 starthookController:data in /home/caleb/webapps/cecilsletters/kirby/kirby/component/template.php:87 #4 Kirby\Component\Template:render in /home/caleb/webapps/cecilsletters/kirby/kirby.php:681 #3 Kirby:template in /home/caleb/webapps/cecilsletters/kirby/kirby.php:669 #2 Kirby:render in /home/caleb/webapps/cecilsletters/kirby/kirby/component/response.php:29 #1 Kirby\Component\Response:make in /home/caleb/webapps/cecilsletters/kirby/kirby.php:751 #0 Kirby:launch in /home/caleb/webapps/cecilsletters/index.php:16
Stack frames (10)
9
Whoops
\
Exception
\
ErrorException
/
home
/
caleb
/
webapps
/
cecilsletters
/
site
/
controllers
/
search.php
65
8
compact
/
home
/
caleb
/
webapps
/
cecilsletters
/
site
/
controllers
/
search.php
65
7
Kirby
\
Registry
\
Controller
{closure}
/
core
/
page.php
1515
6
PageAbstract
controller
/
home
/
caleb
/
webapps
/
cecilsletters
/
site
/
plugins
/
kirby-starthook
/
kirby-starthook.php
9
5
starthookController
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
29
1
Kirby
\
Component
\
Response
make
/
kirby.php
751
0
Kirby
launch
/
home
/
caleb
/
webapps
/
cecilsletters
/
index.php
16
/
home
/
caleb
/
webapps
/
cecilsletters
/
site
/
controllers
/
search.php
        $results = $results->filterBy('medium', $key, ',');
        $h1      = 'written with <mark>'.$key.'</mark>';
    }
 
    // Paginate and sort the results:
    $results = $results->sortBy('dateauthored', 'desc')->paginate(10);
 
    // Get the count for the h1:
    $countItems = $results->pagination()->countItems();
 
    // Build the h1:
    if($countItems == 0) {
        $h1 = 'Sorry, no results.';
    } elseif($countItems == 1) {
        $h1 = $countItems.' letter '.$h1;
    } else {
        $h1 = $countItems.' letters '.$h1;
    }
 
    return compact('query', 'results', 'h1');
};
 
 
?>
 
/
home
/
caleb
/
webapps
/
cecilsletters
/
site
/
controllers
/
search.php
        $results = $results->filterBy('medium', $key, ',');
        $h1      = 'written with <mark>'.$key.'</mark>';
    }
 
    // Paginate and sort the results:
    $results = $results->sortBy('dateauthored', 'desc')->paginate(10);
 
    // Get the count for the h1:
    $countItems = $results->pagination()->countItems();
 
    // Build the h1:
    if($countItems == 0) {
        $h1 = 'Sorry, no results.';
    } elseif($countItems == 1) {
        $h1 = $countItems.' letter '.$h1;
    } else {
        $h1 = $countItems.' letters '.$h1;
    }
 
    return compact('query', 'results', 'h1');
};
 
 
?>
 
/
home
/
caleb
/
webapps
/
cecilsletters
/
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
/
home
/
caleb
/
webapps
/
cecilsletters
/
site
/
plugins
/
kirby-starthook
/
kirby-starthook.php
<?php
class starthookController extends Kirby\Component\Template {
    public function data($page, $data = []) {
 
        if($page instanceof Page) {
            $data = array_merge(
                $page->templateData(), 
                $data,
                $page->controller($data),
                $this->starthook($page)
            );
        }
 
        // apply the basic template vars
        return array_merge(array(
            'kirby' => $this->kirby,
            'site'  => $this->kirby->site(),
            'pages' => $this->kirby->site()->children(),
            'page'  => $page
        ), $data);
    }
 
    public function starthook($page) {
        $starthook = c::get('starthook');
        if(is_callable($starthook)) {
            $callback = call($starthook, $page);
        }
        if($callback && is_array($callback)) return $callback;
        return [];
    }
}
 
$kirby->set('component', 'template', 'starthookController');
/
home
/
caleb
/
webapps
/
cecilsletters
/
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;
 
/
home
/
caleb
/
webapps
/
cecilsletters
/
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
   */
/
home
/
caleb
/
webapps
/
cecilsletters
/
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() {
/
home
/
caleb
/
webapps
/
cecilsletters
/
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;
    }
 
  }
 
}
/
home
/
caleb
/
webapps
/
cecilsletters
/
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
   */
/
home
/
caleb
/
webapps
/
cecilsletters
/
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
Key Value
author Cecil Burleigh
empty
empty
empty
empty
Key Value
PATH /bin:/usr/bin
HTTP_ACCEPT */*
HTTP_HOST cecilsletters.com
HTTP_REFERER http://cecilsletters.com/search?author=Cecil+Burleigh
HTTP_USER_AGENT claudebot
DOCUMENT_ROOT /home/caleb/webapps/cecilsletters
REMOTE_ADDR 3.93.173.205
REMOTE_PORT 37012
SERVER_ADDR 45.76.27.151
SERVER_NAME cecilsletters.com
SERVER_ADMIN example@example.com
SERVER_PORT 443
REQUEST_URI /search?author=Cecil+Burleigh
REDIRECT_URL /search
REDIRECT_QUERY_STRING author=Cecil+Burleigh
HTTPS on
proto https
REDIRECT_STATUS 200
X_SPDY HTTP2
SSL_PROTOCOL TLSv1.3
SSL_CIPHER TLS_AES_256_GCM_SHA384
SSL_CIPHER_USEKEYSIZE 256
SSL_CIPHER_ALGKEYSIZE 256
LSWS_EDITION Openlitespeed 1.7.19
X-LSCACHE on,crawler
SCRIPT_FILENAME /home/caleb/webapps/cecilsletters/index.php
QUERY_STRING author=Cecil+Burleigh
SCRIPT_NAME /index.php
SERVER_PROTOCOL HTTP/1.1
SERVER_SOFTWARE LiteSpeed
REQUEST_METHOD GET
PHP_SELF /index.php
REQUEST_TIME_FLOAT 1710845231.016
REQUEST_TIME 1710845231
empty
0. Whoops\Handler\PrettyPageHandler