Whoops \ Exception \ ErrorException (E_NOTICE)
Undefined index: hubspotutk Whoops\Exception\ErrorException thrown with message "Undefined index: hubspotutk" Stacktrace: #9 Whoops\Exception\ErrorException in /var/www/sites/hipestates/site/templates/magazine.php:45 #8 Whoops\Run:handleError in /var/www/sites/hipestates/site/templates/magazine.php:45 #7 require in /var/www/sites/hipestates/kirby/vendor/getkirby/toolkit/lib/tpl.php:22 #6 Tpl:load in /var/www/sites/hipestates/kirby/kirby/component/template.php:103 #5 Kirby\Component\Template:render in /var/www/sites/hipestates/kirby/kirby.php:681 #4 Kirby:template in /var/www/sites/hipestates/kirby/kirby.php:669 #3 Kirby:render in /var/www/sites/hipestates/kirby/kirby/component/response.php:29 #2 Kirby\Component\Response:make in /var/www/sites/hipestates/site/plugins/html-minifier/html-minifier.php:12 #1 JensTornell\HtmlMinifier:make in /var/www/sites/hipestates/kirby/kirby.php:751 #0 Kirby:launch in /var/www/sites/hipestates/index.php:16
Stack frames (10)
9
Whoops
\
Exception
\
ErrorException
/
var
/
www
/
sites
/
hipestates
/
site
/
templates
/
magazine.php
45
8
Whoops
\
Run
handleError
/
var
/
www
/
sites
/
hipestates
/
site
/
templates
/
magazine.php
45
7
require
/
vendor
/
getkirby
/
toolkit
/
lib
/
tpl.php
22
6
Tpl
load
/
kirby
/
component
/
template.php
103
5
Kirby
\
Component
\
Template
render
/
kirby.php
681
4
Kirby
template
/
kirby.php
669
3
Kirby
render
/
kirby
/
component
/
response.php
29
2
Kirby
\
Component
\
Response
make
/
var
/
www
/
sites
/
hipestates
/
site
/
plugins
/
html-minifier
/
html-minifier.php
12
1
JensTornell
\
HtmlMinifier
make
/
kirby.php
751
0
Kirby
launch
/
var
/
www
/
sites
/
hipestates
/
index.php
16
/
var
/
www
/
sites
/
hipestates
/
site
/
templates
/
magazine.php
                            <input type="hidden" name="pagetitle" id="pagetitle" value="<?= $page->title()->txt(); ?>">
                            <div class="privacy">
                                <input type="checkbox" id="checkprivacy"><label for="checkprivacy">Akkoord met de <a href="<?= u('privacy-policy') ?>">privacyvoorwaarden</a>*</label>
                            </div>
 
                            <label class="form__potty" for="website" style="display: none;">Please leave this field blank</label>
                            <input type="text" name="website" id="website" class="form__potty" style="display: none;" />
 
                            <input type="hidden" name="_submit" value="<?php echo uniform('magazine-form')->token() ?>">
                            <p id="feedback"></p>
 
                            <div id="form-submit" class="no-smoothState button">Verzenden</div>
                            <br/><br/>
                            <small>* verplichte velden</small>
                        </form>
                        <p id="feedback_success"></p>
                        <script type="text/javascript">
                            function form(){
                                if($('#token').length){
                                    var hutk = '<?= $_COOKIE['hubspotutk']?>';
                                    $('#token').val(hutk);
                                }
                                $('#form-submit').click(function (e) {
                                    e.preventDefault();
                                    if($('#checkprivacy:checked').length > 0){
                                        $.post(
                                            '<?php echo $site->children()->find("send")->find("magazine")->url()?>',
                                            $('#form').serialize()
                                        )
                                        .then(function (response) {
                                            $('.privacy').removeClass('error');
                                            var feedback = $('#feedback');
                                            feedback.removeClass('success error').text(response.message[0]);
                                            $('input, textarea').removeClass('erroneous');
                                            if (response.success) {
 
                                                /* HUBSPOT */
                                                var lastname = $('#naam').val();
                                                var firstname = $('#voornaam').val();
                                                var phone = $('#telefoon').val();
/
var
/
www
/
sites
/
hipestates
/
site
/
templates
/
magazine.php
                            <input type="hidden" name="pagetitle" id="pagetitle" value="<?= $page->title()->txt(); ?>">
                            <div class="privacy">
                                <input type="checkbox" id="checkprivacy"><label for="checkprivacy">Akkoord met de <a href="<?= u('privacy-policy') ?>">privacyvoorwaarden</a>*</label>
                            </div>
 
                            <label class="form__potty" for="website" style="display: none;">Please leave this field blank</label>
                            <input type="text" name="website" id="website" class="form__potty" style="display: none;" />
 
                            <input type="hidden" name="_submit" value="<?php echo uniform('magazine-form')->token() ?>">
                            <p id="feedback"></p>
 
                            <div id="form-submit" class="no-smoothState button">Verzenden</div>
                            <br/><br/>
                            <small>* verplichte velden</small>
                        </form>
                        <p id="feedback_success"></p>
                        <script type="text/javascript">
                            function form(){
                                if($('#token').length){
                                    var hutk = '<?= $_COOKIE['hubspotutk']?>';
                                    $('#token').val(hutk);
                                }
                                $('#form-submit').click(function (e) {
                                    e.preventDefault();
                                    if($('#checkprivacy:checked').length > 0){
                                        $.post(
                                            '<?php echo $site->children()->find("send")->find("magazine")->url()?>',
                                            $('#form').serialize()
                                        )
                                        .then(function (response) {
                                            $('.privacy').removeClass('error');
                                            var feedback = $('#feedback');
                                            feedback.removeClass('success error').text(response.message[0]);
                                            $('input, textarea').removeClass('erroneous');
                                            if (response.success) {
 
                                                /* HUBSPOT */
                                                var lastname = $('#naam').val();
                                                var firstname = $('#voornaam').val();
                                                var phone = $('#telefoon').val();
/
var
/
www
/
sites
/
hipestates
/
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
/
sites
/
hipestates
/
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
/
sites
/
hipestates
/
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
/
sites
/
hipestates
/
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
/
sites
/
hipestates
/
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
/
sites
/
hipestates
/
site
/
plugins
/
html-minifier
/
html-minifier.php
<?php
namespace JensTornell;
 
use C;
use Kirby\Component\Response;
use Minify_HTML;
 
include __DIR__ . DS . 'minify' . DS . 'HTML.php';
 
class HtmlMinifier extends Response {
    public function make($response) {
        $buffer = parent::make( $response );
        if( $buffer && c::get('plugin.html.minifier.active', true) ) {
            return Minify_HTML::minify( $buffer, c::get('plugin.html.minifier.options', array()) );
        }
        return $buffer;
    }
}
 
$kirby->set('component', 'response', 'JensTornell\HtmlMinifier');
/
var
/
www
/
sites
/
hipestates
/
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
/
sites
/
hipestates
/
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.10
Kirby CMS v2.5.10
empty
empty
empty
empty
Key Value
kirby_session_fingerprint 9528fd817129917a4fa501eb0df734ee25ad5022
kirby_session_activity 1710826199
magazine-form flOQRDKHrhXCAsMEHjmX
Key Value
USER www-data
HOME /var/www
SCRIPT_NAME /index.php
REQUEST_URI /magazine
QUERY_STRING
REQUEST_METHOD GET
SERVER_PROTOCOL HTTP/1.1
GATEWAY_INTERFACE CGI/1.1
REDIRECT_URL /magazine
REMOTE_PORT 53558
SCRIPT_FILENAME /var/www/sites/hipestates/index.php
SERVER_ADMIN webmaster@localhost
CONTEXT_DOCUMENT_ROOT /var/www/sites/hipestates
CONTEXT_PREFIX
REQUEST_SCHEME http
DOCUMENT_ROOT /var/www/sites/hipestates
REMOTE_ADDR 192.168.1.12
SERVER_PORT 80
SERVER_ADDR 192.168.1.10
SERVER_NAME www.hipestates.plugdev.be
SERVER_SOFTWARE Apache/2.4.10 (Debian)
SERVER_SIGNATURE <address>Apache/2.4.10 (Debian) Server at www.hipestates.plugdev.be Port 80</address>
PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
HTTP_CONNECTION Keep-Alive
HTTP_X_FORWARDED_SERVER 127.0.1.1
HTTP_X_FORWARDED_HOST www.hipestates.plugdev.be
HTTP_X_FORWARDED_FOR 3.235.42.157
HTTP_REFERER http://hipestates.plugdev.be/magazine
HTTP_USER_AGENT claudebot
HTTP_ACCEPT */*
HTTP_HOST www.hipestates.plugdev.be
proxy-nokeepalive 1
REDIRECT_STATUS 200
FCGI_ROLE RESPONDER
PHP_SELF /index.php
REQUEST_TIME_FLOAT 1710826199.1862
REQUEST_TIME 1710826199
empty
0. Whoops\Handler\PrettyPageHandler