Whoops \ Exception \ ErrorException (E_WARNING)
session_name(): Cannot change session name when headers already sent Whoops\Exception\ErrorException thrown with message "session_name(): Cannot change session name when headers already sent" Stacktrace: #10 Whoops\Exception\ErrorException in /usr/www/users/gmurgi/kirby/kirby/vendor/getkirby/toolkit/lib/s.php:48 #9 session_name in /usr/www/users/gmurgi/kirby/kirby/vendor/getkirby/toolkit/lib/s.php:48 #8 S:start in /usr/www/users/gmurgi/kirby/kirby/vendor/getkirby/toolkit/lib/s.php:188 #7 S:get in /usr/www/users/gmurgi/kirby/site/templates/redirect.php:15 #6 require in /usr/www/users/gmurgi/kirby/kirby/vendor/getkirby/toolkit/lib/tpl.php:22 #5 Tpl:load in /usr/www/users/gmurgi/kirby/kirby/kirby/component/template.php:103 #4 Kirby\Component\Template:render in /usr/www/users/gmurgi/kirby/kirby/kirby.php:656 #3 Kirby:template in /usr/www/users/gmurgi/kirby/kirby/kirby.php:644 #2 Kirby:render in /usr/www/users/gmurgi/kirby/kirby/kirby/component/response.php:29 #1 Kirby\Component\Response:make in /usr/www/users/gmurgi/kirby/kirby/kirby.php:726 #0 Kirby:launch in /usr/www/users/gmurgi/kirby/index.php:16
Stack frames (11)
10
Whoops
\
Exception
\
ErrorException
/
vendor
/
getkirby
/
toolkit
/
lib
/
s.php
48
9
session_name
/
vendor
/
getkirby
/
toolkit
/
lib
/
s.php
48
8
S
start
/
vendor
/
getkirby
/
toolkit
/
lib
/
s.php
188
7
S
get
/
usr
/
www
/
users
/
gmurgi
/
kirby
/
site
/
templates
/
redirect.php
15
6
require
/
vendor
/
getkirby
/
toolkit
/
lib
/
tpl.php
22
5
Tpl
load
/
kirby
/
component
/
template.php
103
4
Kirby
\
Component
\
Template
render
/
kirby.php
656
3
Kirby
template
/
kirby.php
644
2
Kirby
render
/
kirby
/
component
/
response.php
29
1
Kirby
\
Component
\
Response
make
/
kirby.php
726
0
Kirby
launch
/
usr
/
www
/
users
/
gmurgi
/
kirby
/
index.php
16
/
usr
/
www
/
users
/
gmurgi
/
kirby
/
kirby
/
vendor
/
getkirby
/
toolkit
/
lib
/
s.php
   * // do whatever you want with the session now
   * 
   * </code>
   * 
   */  
  public static function start() {
 
    if(session_status() === PHP_SESSION_ACTIVE) return true;
 
    // store the session name
    static::$cookie += array(
      'lifetime' => 0,
      'path'     => ini_get('session.cookie_path'),
      'domain'   => ini_get('session.cookie_domain'),
      'secure'   => r::secure(),
      'httponly' => true      
    );
 
    // set the custom session name
    session_name(static::$name); 
 
    // make sure to use cookies only
    ini_set('session.use_cookies', 1);
    ini_set('session.use_only_cookies', 1);
 
    // try to start the session
    if(!session_start()) return false;
 
    if(!setcookie(
      static::$name, 
      session_id(), 
      cookie::lifetime(static::$cookie['lifetime']), 
      static::$cookie['path'], 
      static::$cookie['domain'], 
      static::$cookie['secure'], 
      static::$cookie['httponly']
    )) {
      return false;
    }
 
/
usr
/
www
/
users
/
gmurgi
/
kirby
/
kirby
/
vendor
/
getkirby
/
toolkit
/
lib
/
s.php
   * // do whatever you want with the session now
   * 
   * </code>
   * 
   */  
  public static function start() {
 
    if(session_status() === PHP_SESSION_ACTIVE) return true;
 
    // store the session name
    static::$cookie += array(
      'lifetime' => 0,
      'path'     => ini_get('session.cookie_path'),
      'domain'   => ini_get('session.cookie_domain'),
      'secure'   => r::secure(),
      'httponly' => true      
    );
 
    // set the custom session name
    session_name(static::$name); 
 
    // make sure to use cookies only
    ini_set('session.use_cookies', 1);
    ini_set('session.use_only_cookies', 1);
 
    // try to start the session
    if(!session_start()) return false;
 
    if(!setcookie(
      static::$name, 
      session_id(), 
      cookie::lifetime(static::$cookie['lifetime']), 
      static::$cookie['path'], 
      static::$cookie['domain'], 
      static::$cookie['secure'], 
      static::$cookie['httponly']
    )) {
      return false;
    }
 
/
usr
/
www
/
users
/
gmurgi
/
kirby
/
kirby
/
vendor
/
getkirby
/
toolkit
/
lib
/
s.php
  /**
   * Gets a session value by key
   * 
   * <code>
   * 
   * s::get('username', 'bastian');
   * // saves the username in the session
   * 
   * echo s::get('username');
   * // output: 'bastian'
   * 
   * </code>   
   *
   * @param  mixed    $key The key to look for. Pass false or null to return the entire session array. 
   * @param  mixed    $default Optional default value, which should be returned if no element has been found
   * @return mixed
   */  
  public static function get($key = false, $default = null) {
 
    static::start(static::$name, static::$timeout, static::$cookie);
 
    if(!isset($_SESSION)) return false;
    if(empty($key)) return $_SESSION;
    return isset($_SESSION[$key]) ? $_SESSION[$key] : $default;
 
  }
 
  /**
   * Retrieves an item and removes it afterwards
   * 
   * @param string $key
   * @param mixed $default
   * @return mixed
   */
  public static function pull($key, $default = null) {
    $value = s::get($key, $default); 
    s::remove($key);
    return $value;
  }
 
/
usr
/
www
/
users
/
gmurgi
/
kirby
/
site
/
templates
/
redirect.php
<?php
    /*if( cookie::get('ivb_adkw') ) {
        $paid = '&subid=' . cookie::get('ivb_adkw');     
    } else {
        $paid = '&subid=' . s::get( 'device_class' );   
    }*/
    //$paid = '&subid=' . cookie::get('ivb_adkw');
    $paid = '&subid=' . $_SESSION['ivb_adkw'];
    $paid = str_replace(' ', '+', $paid);
 
?>
<?php snippet('headerredirect', array( 'url' => $url . $paid, 'bank' => $bank )) ?>
<?php session_destroy(); ?>
    <?php
        if( s::get( 'device_class' ) == 'mobile' && $page->titlemobile() != '' ) {
            $title = $page->titlemobile();
        } else {
            $title = $page->title();
        }
     ?>
    <div class="container theme-showcase <?= s::get( 'device_class' ); ?>device" role="main" style="margin-top: 50px;">
        <div class="page-header ivb_baufiheader">
            
            <h1><?php echo $title ?> <b><?= $bank; ?></b></h1>
        </div>
        <?php echo ivb_autolinker( $page->text()->kirbytext() ); ?>
        <p><a href="https://www.financeads.net/tc.php?<?= $url . $paid; ?>">Falls Sie nicht weitergeleitet werden, klicken Sie bitte hier.</a></p>
    </div>
<?php snippet('footerlp') ?>
 
/
usr
/
www
/
users
/
gmurgi
/
kirby
/
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;
  }
 
}
/
usr
/
www
/
users
/
gmurgi
/
kirby
/
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;
 
  }
 
}
 
/
usr
/
www
/
users
/
gmurgi
/
kirby
/
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
/
www
/
users
/
gmurgi
/
kirby
/
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
/
www
/
users
/
gmurgi
/
kirby
/
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;
    }
 
  }
 
}
/
usr
/
www
/
users
/
gmurgi
/
kirby
/
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
/
www
/
users
/
gmurgi
/
kirby
/
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.2
Kirby CMS v2.5.2
Key Value
t 18442C17109009D
product 3058
kb 213000
lz 10
bl 60
tg 2
subid desktop
empty
empty
empty
Key Value
kirby_session_fingerprint 3be9876c78114c6a16d364ea3215964b2bf7af5f
kirby_session_activity 1711658504
device_class desktop
Key Value
MAGICK_TEMPORARY_PATH /usr/home/gmurgi/.tmp
TMPDIR /usr/home/gmurgi/.tmp
PHP_FCGI_MAX_REQUESTS 100000
PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PHPRC /home/httpd/php73-ini/gmurgi
PWD /home/httpd/cgi-bin
MAGICK_TMPDIR /usr/home/gmurgi/.tmp
CONTENT_LENGTH 0
HTTP_CONNECTION close
SCRIPT_NAME /index.php
REQUEST_URI /r/?t=18442C17109009D&product=3058&kb=213000&lz=10&bl=60&tg=2&subid=desktop
QUERY_STRING t=18442C17109009D&product=3058&kb=213000&lz=10&bl=60&tg=2&subid=desktop
REQUEST_METHOD GET
SERVER_PROTOCOL HTTP/2.0
GATEWAY_INTERFACE CGI/1.1
REDIRECT_QUERY_STRING t=18442C17109009D&product=3058&kb=213000&lz=10&bl=60&tg=2&subid=desktop
REDIRECT_URL /r/
REMOTE_PORT 44902
SCRIPT_FILENAME /usr/www/users/gmurgi/kirby/index.php
SERVER_ADMIN webmaster@hauskredite.de
CONTEXT_DOCUMENT_ROOT /usr/www/users/gmurgi/kirby
CONTEXT_PREFIX
REQUEST_SCHEME https
DOCUMENT_ROOT /usr/www/users/gmurgi/kirby
REMOTE_ADDR 35.171.159.141
SERVER_PORT 443
SERVER_ADDR 78.47.73.210
SERVER_NAME www.hauskredite.de
SERVER_SOFTWARE Apache
SERVER_SIGNATURE
HTTP_HOST www.hauskredite.de
HTTP_USER_AGENT claudebot
HTTP_ACCEPT */*
SSL_TLS_SNI www.hauskredite.de
HTTPS on
H2_STREAM_TAG 93530-224-3
H2_STREAM_ID 3
H2_PUSHED_ON
H2_PUSHED
H2_PUSH off
H2PUSH off
HTTP2 on
REDIRECT_STATUS 200
REDIRECT_SSL_TLS_SNI www.hauskredite.de
REDIRECT_HTTPS on
REDIRECT_H2_STREAM_TAG 93530-224-3
REDIRECT_H2_STREAM_ID 3
REDIRECT_H2_PUSHED_ON
REDIRECT_H2_PUSHED
REDIRECT_H2_PUSH off
REDIRECT_H2PUSH off
REDIRECT_HTTP2 on
FCGI_ROLE RESPONDER
PHP_SELF /index.php
REQUEST_TIME_FLOAT 1711658504.312
REQUEST_TIME 1711658504
argv Array ( [0] => t=18442C17109009D&product=3058&kb=213000&lz=10&bl=60&tg=2&subid=desktop )
argc 1
Key Value
MAGICK_TEMPORARY_PATH /usr/home/gmurgi/.tmp
TMPDIR /usr/home/gmurgi/.tmp
PHP_FCGI_MAX_REQUESTS 100000
PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PHPRC /home/httpd/php73-ini/gmurgi
PWD /home/httpd/cgi-bin
MAGICK_TMPDIR /usr/home/gmurgi/.tmp
CONTENT_LENGTH 0
HTTP_CONNECTION close
SCRIPT_NAME /index.php
REQUEST_URI /r/?t=18442C17109009D&product=3058&kb=213000&lz=10&bl=60&tg=2&subid=desktop
QUERY_STRING t=18442C17109009D&product=3058&kb=213000&lz=10&bl=60&tg=2&subid=desktop
REQUEST_METHOD GET
SERVER_PROTOCOL HTTP/2.0
GATEWAY_INTERFACE CGI/1.1
REDIRECT_QUERY_STRING t=18442C17109009D&product=3058&kb=213000&lz=10&bl=60&tg=2&subid=desktop
REDIRECT_URL /r/
REMOTE_PORT 44902
SCRIPT_FILENAME /usr/www/users/gmurgi/kirby/index.php
SERVER_ADMIN webmaster@hauskredite.de
CONTEXT_DOCUMENT_ROOT /usr/www/users/gmurgi/kirby
CONTEXT_PREFIX
REQUEST_SCHEME https
DOCUMENT_ROOT /usr/www/users/gmurgi/kirby
REMOTE_ADDR 35.171.159.141
SERVER_PORT 443
SERVER_ADDR 78.47.73.210
SERVER_NAME www.hauskredite.de
SERVER_SOFTWARE Apache
SERVER_SIGNATURE
HTTP_HOST www.hauskredite.de
HTTP_USER_AGENT claudebot
HTTP_ACCEPT */*
SSL_TLS_SNI www.hauskredite.de
HTTPS on
H2_STREAM_TAG 93530-224-3
H2_STREAM_ID 3
H2_PUSHED_ON
H2_PUSHED
H2_PUSH off
H2PUSH off
HTTP2 on
REDIRECT_STATUS 200
REDIRECT_SSL_TLS_SNI www.hauskredite.de
REDIRECT_HTTPS on
REDIRECT_H2_STREAM_TAG 93530-224-3
REDIRECT_H2_STREAM_ID 3
REDIRECT_H2_PUSHED_ON
REDIRECT_H2_PUSHED
REDIRECT_H2_PUSH off
REDIRECT_H2PUSH off
REDIRECT_HTTP2 on
FCGI_ROLE RESPONDER
0. Whoops\Handler\PrettyPageHandler