Whoops \ Exception \ ErrorException (E_WARNING)
Undefined variable $error Whoops\Exception\ErrorException thrown with message "Undefined variable $error" Stacktrace: #8 Whoops\Exception\ErrorException in /mnt/web605/c2/89/59527489/htdocs/site/templates/secret.php:9 #7 Whoops\Run:handleError in /mnt/web605/c2/89/59527489/htdocs/site/templates/secret.php:9 #6 require in /mnt/web605/c2/89/59527489/htdocs/kirby/vendor/getkirby/toolkit/lib/tpl.php:22 #5 Tpl:load in /mnt/web605/c2/89/59527489/htdocs/kirby/kirby/component/template.php:103 #4 Kirby\Component\Template:render in /mnt/web605/c2/89/59527489/htdocs/kirby/kirby.php:681 #3 Kirby:template in /mnt/web605/c2/89/59527489/htdocs/kirby/kirby.php:669 #2 Kirby:render in /mnt/web605/c2/89/59527489/htdocs/kirby/kirby/component/response.php:29 #1 Kirby\Component\Response:make in /mnt/web605/c2/89/59527489/htdocs/kirby/kirby.php:751 #0 Kirby:launch in /mnt/web605/c2/89/59527489/htdocs/index.php:16
Stack frames (9)
8
Whoops
\
Exception
\
ErrorException
/
mnt
/
web605
/
c2
/
89
/
59527489
/
htdocs
/
site
/
templates
/
secret.php
9
7
Whoops
\
Run
handleError
/
mnt
/
web605
/
c2
/
89
/
59527489
/
htdocs
/
site
/
templates
/
secret.php
9
6
require
/
vendor
/
getkirby
/
toolkit
/
lib
/
tpl.php
22
5
Tpl
load
/
kirby
/
component
/
template.php
103
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
/
mnt
/
web605
/
c2
/
89
/
59527489
/
htdocs
/
index.php
16
/
mnt
/
web605
/
c2
/
89
/
59527489
/
htdocs
/
site
/
templates
/
secret.php
<? snippet('header') ?>
<!-- TEXT -->
<section class="" id="section-text">
    <div class="container">
    <? if (site()->user()) : ?>
        <?= $page->text()->kirbytext() ?>
    <? else : ?>
        <main class="main" role="main">
            <?php if($error): ?>
                <div class="alert error">
                    <p><?= $error ?></p>
                </div>
            <?php endif ?>
            <h1 class="title center"><?php echo l::get('membership.login.title') ?></h1>
            <form method="post" class="burger" action="/kunde/login">
                <input name="referrer" type="hidden" value="<?= $page->url() ?>"/>
                <p>
                <p>
                
                    <div class="field">
                        <label for="email"><?php echo l::get('membership.email') ?></label>
                        <input type="email" id="email" name="email">
                    </div>
                    <div class="field">
                        <label for="password"><?php echo l::get('membership.password') ?></label>
                        <input type="password" id="password" name="password">
                    </div>
                    <div class="field">
                        <input class="btn" type="submit" name="login" value="<?php echo l::get('membership.login') ?>">
                        <a class="link" href="<?= url('kunde/account/register') ?>"><?php echo l::get('membership.register') ?></a><br />
                    </div>
                    <div class="field center cf"><a href="<?= url('kunde/account/reset') ?>"><?php echo l::get('membership.forgot.password') ?></a></div>
            </form>
        </main>
    <? endif ?>        
    </div>
</section>
<? snippet('footer') ?>
/
mnt
/
web605
/
c2
/
89
/
59527489
/
htdocs
/
site
/
templates
/
secret.php
<? snippet('header') ?>
<!-- TEXT -->
<section class="" id="section-text">
    <div class="container">
    <? if (site()->user()) : ?>
        <?= $page->text()->kirbytext() ?>
    <? else : ?>
        <main class="main" role="main">
            <?php if($error): ?>
                <div class="alert error">
                    <p><?= $error ?></p>
                </div>
            <?php endif ?>
            <h1 class="title center"><?php echo l::get('membership.login.title') ?></h1>
            <form method="post" class="burger" action="/kunde/login">
                <input name="referrer" type="hidden" value="<?= $page->url() ?>"/>
                <p>
                <p>
                
                    <div class="field">
                        <label for="email"><?php echo l::get('membership.email') ?></label>
                        <input type="email" id="email" name="email">
                    </div>
                    <div class="field">
                        <label for="password"><?php echo l::get('membership.password') ?></label>
                        <input type="password" id="password" name="password">
                    </div>
                    <div class="field">
                        <input class="btn" type="submit" name="login" value="<?php echo l::get('membership.login') ?>">
                        <a class="link" href="<?= url('kunde/account/register') ?>"><?php echo l::get('membership.register') ?></a><br />
                    </div>
                    <div class="field center cf"><a href="<?= url('kunde/account/reset') ?>"><?php echo l::get('membership.forgot.password') ?></a></div>
            </form>
        </main>
    <? endif ?>        
    </div>
</section>
<? snippet('footer') ?>
/
mnt
/
web605
/
c2
/
89
/
59527489
/
htdocs
/
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;
  }
 
}
/
mnt
/
web605
/
c2
/
89
/
59527489
/
htdocs
/
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;
 
  }
 
}
 
/
mnt
/
web605
/
c2
/
89
/
59527489
/
htdocs
/
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
   */
/
mnt
/
web605
/
c2
/
89
/
59527489
/
htdocs
/
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() {
/
mnt
/
web605
/
c2
/
89
/
59527489
/
htdocs
/
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;
    }
 
  }
 
}
/
mnt
/
web605
/
c2
/
89
/
59527489
/
htdocs
/
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
   */
/
mnt
/
web605
/
c2
/
89
/
59527489
/
htdocs
/
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.12
Kirby CMS v2.5.12
empty
empty
empty
empty
Key Value
kirby_session_fingerprint 2a03d94f22bedd96be625bb3a030b111f549d4f8
kirby_session_activity 1711657130
Key Value
REDIRECT_STATUS 200
UNIQUE_ID ZgXQqtpJw-jbg3Mmg7ADigAABAQ
SCRIPT_URL /kunde/secrets
SCRIPT_URI https://midtcon.de/kunde/secrets
HTTPS on
DOCUMENT_ROOT /home/strato/http/power/rid/74/89/59527489/htdocs
RZ_php 82
PHPRC /home/strato/http/power/rid/74/89/59527489/htdocs
HTTP_HOST midtcon.de
HTTP_ACCEPT */*
HTTP_USER_AGENT claudebot
HTTP_REFERER http://midtcon.de/kunde/secrets
HTTP_CONNECTION close
PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin
SERVER_SOFTWARE Apache/2.4.58 (Unix)
SERVER_NAME midtcon.de
SERVER_PORT 443
REMOTE_ADDR 35.169.107.177
SERVER_ADMIN service@webmailer.de
SCRIPT_FILENAME /home/strato/http/power/rid/74/89/59527489/htdocs/index.php
REMOTE_PORT 58368
REDIRECT_URL /kunde/secrets
GATEWAY_INTERFACE CGI/1.1
SERVER_PROTOCOL HTTP/1.1
REQUEST_METHOD GET
QUERY_STRING
REQUEST_URI /kunde/secrets
SCRIPT_NAME /index.php
PHP_SELF /index.php
REQUEST_TIME_FLOAT 1711657130.7733
REQUEST_TIME 1711657130
argv Array ( )
argc 0
Key Value
REDIRECT_STATUS 200
UNIQUE_ID ZgXQqtpJw-jbg3Mmg7ADigAABAQ
SCRIPT_URL /kunde/secrets
SCRIPT_URI https://midtcon.de/kunde/secrets
HTTPS on
DOCUMENT_ROOT /home/strato/http/power/rid/74/89/59527489/htdocs
RZ_php 82
PHPRC /home/strato/http/power/rid/74/89/59527489/htdocs
HTTP_HOST midtcon.de
HTTP_ACCEPT */*
HTTP_USER_AGENT claudebot
HTTP_REFERER http://midtcon.de/kunde/secrets
HTTP_CONNECTION close
PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin
SERVER_SOFTWARE Apache/2.4.58 (Unix)
SERVER_NAME midtcon.de
SERVER_PORT 443
REMOTE_ADDR 35.169.107.177
SERVER_ADMIN service@webmailer.de
SCRIPT_FILENAME /home/strato/http/power/rid/74/89/59527489/htdocs/index.php
REMOTE_PORT 58368
REDIRECT_URL /kunde/secrets
GATEWAY_INTERFACE CGI/1.1
SERVER_PROTOCOL HTTP/1.1
REQUEST_METHOD GET
QUERY_STRING
REQUEST_URI /kunde/secrets
SCRIPT_NAME /index.php
0. Whoops\Handler\PrettyPageHandler