Whoops \ Exception \ ErrorException (E_NOTICE)
Undefined offset: 0 Whoops\Exception\ErrorException thrown with message "Undefined offset: 0" Stacktrace: #10 Whoops\Exception\ErrorException in /var/www/clients/client1/web38/web/site/templates/activite.php:15 #9 Whoops\Run:handleError in /var/www/clients/client1/web38/web/site/templates/activite.php:15 #8 Tpl:{closure} in [internal]:0 #7 array_filter in /var/www/clients/client1/web38/web/site/templates/activite.php:16 #6 require in /var/www/clients/client1/web38/web/kirby/vendor/getkirby/toolkit/lib/tpl.php:22 #5 Tpl:load in /var/www/clients/client1/web38/web/kirby/kirby/component/template.php:103 #4 Kirby\Component\Template:render in /var/www/clients/client1/web38/web/kirby/kirby.php:646 #3 Kirby:template in /var/www/clients/client1/web38/web/kirby/kirby.php:634 #2 Kirby:render in /var/www/clients/client1/web38/web/kirby/kirby/component/response.php:29 #1 Kirby\Component\Response:make in /var/www/clients/client1/web38/web/kirby/kirby.php:716 #0 Kirby:launch in /var/www/clients/client1/web38/web/index.php:16
Stack frames (11)
10
Whoops
\
Exception
\
ErrorException
/
var
/
www
/
clients
/
client1
/
web38
/
web
/
site
/
templates
/
activite.php
15
9
Whoops
\
Run
handleError
/
var
/
www
/
clients
/
client1
/
web38
/
web
/
site
/
templates
/
activite.php
15
8
Tpl
{closure}
[internal]
0
7
array_filter
/
var
/
www
/
clients
/
client1
/
web38
/
web
/
site
/
templates
/
activite.php
16
6
require
/
vendor
/
getkirby
/
toolkit
/
lib
/
tpl.php
22
5
Tpl
load
/
kirby
/
component
/
template.php
103
4
Kirby
\
Component
\
Template
render
/
kirby.php
646
3
Kirby
template
/
kirby.php
634
2
Kirby
render
/
kirby
/
component
/
response.php
29
1
Kirby
\
Component
\
Response
make
/
kirby.php
716
0
Kirby
launch
/
var
/
www
/
clients
/
client1
/
web38
/
web
/
index.php
16
/
var
/
www
/
clients
/
client1
/
web38
/
web
/
site
/
templates
/
activite.php
<?php
 
  $id = $_GET['id'];
 
  $content = array_filter(
    json_decode($pages->find('activites')->evenements())->data,
    function($v) use($id) {
      return $v->act_id == $id;
    }
  );
 
  $category = array_filter(
      json_decode($pages->find('activites')->categories())->data,
      function($v) use($content) {
        return $v->cat_id == array_values($content)[0]->cat_id;
      }
    );
 
  //$content = db::select('activites', '*',array('act_isactive' => '1', 'act_id' => $_GET['id']));
  //$category = db::select('activites_cat', '*',array('cat_isactive' => '1','cat_id' => array_values($content)[0]->cat_id));
?>
<?php snippet('header/header-activite', array('content' => $content )) ?>
<main class="main" role="main">
  <header class="hero">
    <span class="v-line-page"></span>
    <picture>
      <source media="(max-width: 480px)" srcset="<?= url('assets/images/bg-activite-320x480.jpg') ?> 1x, <?= url('assets/images/bg-activite-320x480@2x.jpg') ?> 2x">
      <source media="(max-width: 768px)" srcset="<?= url('assets/images/bg-activite-768x1024.jpg') ?> 1x, <?= url('assets/images/bg-activite-768x1024@2x.jpg') ?> 2x">
      <source media="(max-width: 1280px)" srcset="<?= url('assets/images/bg-activite-1440x350.jpg') ?> 1x, <?= url('assets/images/bg-activite-1440x350@2x.jpg') ?> 2x">
      <img src="<?= url('assets/images/bg-activite-1440x350.jpg') ?>" alt="Image d'entête d'une fiche d'activité de Plongée Nautilus">
    </picture>
  </header>
  <section id="formation-infos">
    <div class="container">
      <a href="<?= $page->parent()->url() ?>"><?= l::get('retour-aux-activites') ?></a>
      <h2><?= array_values($content)[0]->act_titre ?></h2>
      <div>
        <div class="row">
          <p class="cou-desc"><?= array_values($content)[0]->act_desc ?></p>
        </div>
/
var
/
www
/
clients
/
client1
/
web38
/
web
/
site
/
templates
/
activite.php
<?php
 
  $id = $_GET['id'];
 
  $content = array_filter(
    json_decode($pages->find('activites')->evenements())->data,
    function($v) use($id) {
      return $v->act_id == $id;
    }
  );
 
  $category = array_filter(
      json_decode($pages->find('activites')->categories())->data,
      function($v) use($content) {
        return $v->cat_id == array_values($content)[0]->cat_id;
      }
    );
 
  //$content = db::select('activites', '*',array('act_isactive' => '1', 'act_id' => $_GET['id']));
  //$category = db::select('activites_cat', '*',array('cat_isactive' => '1','cat_id' => array_values($content)[0]->cat_id));
?>
<?php snippet('header/header-activite', array('content' => $content )) ?>
<main class="main" role="main">
  <header class="hero">
    <span class="v-line-page"></span>
    <picture>
      <source media="(max-width: 480px)" srcset="<?= url('assets/images/bg-activite-320x480.jpg') ?> 1x, <?= url('assets/images/bg-activite-320x480@2x.jpg') ?> 2x">
      <source media="(max-width: 768px)" srcset="<?= url('assets/images/bg-activite-768x1024.jpg') ?> 1x, <?= url('assets/images/bg-activite-768x1024@2x.jpg') ?> 2x">
      <source media="(max-width: 1280px)" srcset="<?= url('assets/images/bg-activite-1440x350.jpg') ?> 1x, <?= url('assets/images/bg-activite-1440x350@2x.jpg') ?> 2x">
      <img src="<?= url('assets/images/bg-activite-1440x350.jpg') ?>" alt="Image d'entête d'une fiche d'activité de Plongée Nautilus">
    </picture>
  </header>
  <section id="formation-infos">
    <div class="container">
      <a href="<?= $page->parent()->url() ?>"><?= l::get('retour-aux-activites') ?></a>
      <h2><?= array_values($content)[0]->act_titre ?></h2>
      <div>
        <div class="row">
          <p class="cou-desc"><?= array_values($content)[0]->act_desc ?></p>
        </div>
[internal]
/
var
/
www
/
clients
/
client1
/
web38
/
web
/
site
/
templates
/
activite.php
<?php
 
  $id = $_GET['id'];
 
  $content = array_filter(
    json_decode($pages->find('activites')->evenements())->data,
    function($v) use($id) {
      return $v->act_id == $id;
    }
  );
 
  $category = array_filter(
      json_decode($pages->find('activites')->categories())->data,
      function($v) use($content) {
        return $v->cat_id == array_values($content)[0]->cat_id;
      }
    );
 
  //$content = db::select('activites', '*',array('act_isactive' => '1', 'act_id' => $_GET['id']));
  //$category = db::select('activites_cat', '*',array('cat_isactive' => '1','cat_id' => array_values($content)[0]->cat_id));
?>
<?php snippet('header/header-activite', array('content' => $content )) ?>
<main class="main" role="main">
  <header class="hero">
    <span class="v-line-page"></span>
    <picture>
      <source media="(max-width: 480px)" srcset="<?= url('assets/images/bg-activite-320x480.jpg') ?> 1x, <?= url('assets/images/bg-activite-320x480@2x.jpg') ?> 2x">
      <source media="(max-width: 768px)" srcset="<?= url('assets/images/bg-activite-768x1024.jpg') ?> 1x, <?= url('assets/images/bg-activite-768x1024@2x.jpg') ?> 2x">
      <source media="(max-width: 1280px)" srcset="<?= url('assets/images/bg-activite-1440x350.jpg') ?> 1x, <?= url('assets/images/bg-activite-1440x350@2x.jpg') ?> 2x">
      <img src="<?= url('assets/images/bg-activite-1440x350.jpg') ?>" alt="Image d'entête d'une fiche d'activité de Plongée Nautilus">
    </picture>
  </header>
  <section id="formation-infos">
    <div class="container">
      <a href="<?= $page->parent()->url() ?>"><?= l::get('retour-aux-activites') ?></a>
      <h2><?= array_values($content)[0]->act_titre ?></h2>
      <div>
        <div class="row">
          <p class="cou-desc"><?= array_values($content)[0]->act_desc ?></p>
        </div>
/
var
/
www
/
clients
/
client1
/
web38
/
web
/
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
/
clients
/
client1
/
web38
/
web
/
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
/
clients
/
client1
/
web38
/
web
/
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
/
clients
/
client1
/
web38
/
web
/
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
/
clients
/
client1
/
web38
/
web
/
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
/
clients
/
client1
/
web38
/
web
/
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
/
clients
/
client1
/
web38
/
web
/
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.4
Kirby CMS v2.5.4
Key Value
id 617
empty
empty
empty
empty
Key Value
PHP_DOCUMENT_ROOT /var/www/clients/client1/web38
PHPRC /etc/php/7.2/cgi/
PWD /var/www/php-fcgi-scripts/web38
TMP /var/www/clients/client1/web38/tmp
PHP_FCGI_MAX_REQUESTS 5000
TMPDIR /var/www/clients/client1/web38/tmp
SHLVL 0
TEMP /var/www/clients/client1/web38/tmp
PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
CONTENT_LENGTH 0
HTTP_CONNECTION close
SCRIPT_NAME /index.php
REQUEST_URI /activites/activite?id=617
QUERY_STRING id=617
REQUEST_METHOD GET
SERVER_PROTOCOL HTTP/1.1
GATEWAY_INTERFACE CGI/1.1
REDIRECT_QUERY_STRING id=617
REDIRECT_URL /activites/activite
REMOTE_PORT 44794
SCRIPT_FILENAME /var/www/plongeenautilus.com/web/index.php
SERVER_ADMIN webmaster@plongeenautilus.com
CONTEXT_DOCUMENT_ROOT /var/www/plongeenautilus.com/web
CONTEXT_PREFIX
REQUEST_SCHEME https
DOCUMENT_ROOT /var/www/plongeenautilus.com/web
REMOTE_ADDR 34.205.246.61
SERVER_PORT 443
SERVER_ADDR 69.67.12.60
SERVER_NAME plongeenautilus.com
SERVER_SOFTWARE Apache
SERVER_SIGNATURE
HTTP_HOST plongeenautilus.com
HTTP_USER_AGENT claudebot
HTTP_ACCEPT */*
SSL_TLS_SNI plongeenautilus.com
HTTPS on
REDIRECT_STATUS 200
REDIRECT_SSL_TLS_SNI plongeenautilus.com
REDIRECT_HTTPS on
FCGI_ROLE RESPONDER
PHP_SELF /index.php
REQUEST_TIME_FLOAT 1711616604.1285
REQUEST_TIME 1711616604
empty
0. Whoops\Handler\PrettyPageHandler