Error
Call to a member function url() on bool Error thrown with message "Call to a member function url() on bool" Stacktrace: #7 Error in /home/avenati/entreformesetsignes.fr/site/templates/projet.php:134 #6 require in /home/avenati/entreformesetsignes.fr/kirby/vendor/getkirby/toolkit/lib/tpl.php:22 #5 Tpl:load in /home/avenati/entreformesetsignes.fr/kirby/kirby/component/template.php:103 #4 Kirby\Component\Template:render in /home/avenati/entreformesetsignes.fr/kirby/kirby.php:671 #3 Kirby:template in /home/avenati/entreformesetsignes.fr/kirby/kirby.php:659 #2 Kirby:render in /home/avenati/entreformesetsignes.fr/kirby/kirby/component/response.php:29 #1 Kirby\Component\Response:make in /home/avenati/entreformesetsignes.fr/kirby/kirby.php:741 #0 Kirby:launch in /home/avenati/entreformesetsignes.fr/index.php:16
Stack frames (8)
7
Error
/
home
/
avenati
/
entreformesetsignes.fr
/
site
/
templates
/
projet.php
134
6
require
/
vendor
/
getkirby
/
toolkit
/
lib
/
tpl.php
22
5
Tpl
load
/
kirby
/
component
/
template.php
103
4
Kirby
\
Component
\
Template
render
/
kirby.php
671
3
Kirby
template
/
kirby.php
659
2
Kirby
render
/
kirby
/
component
/
response.php
29
1
Kirby
\
Component
\
Response
make
/
kirby.php
741
0
Kirby
launch
/
home
/
avenati
/
entreformesetsignes.fr
/
index.php
16
/
home
/
avenati
/
entreformesetsignes.fr
/
site
/
templates
/
projet.php
      <? endif ?>
      <?php if($page->participants()->isNotEmpty()): ?>
          <li>Classe(s) :
              <?php foreach( $page->participants()->split(',') as $participant){
                  echo '<br/>'.$participant;
              }
              ?>
          </li>
      <?php endif ?>
      
          
          <li>Année de réalisation : <br /><?= $page->dateProjet()?></li>
        
        <?php if($page->referents()->isNotEmpty()): ?>
              <li>Enseignant.e(s) référent.e(s) : 
            <ul>
                <?php foreach($page->referents()->split() as $referent):
                    $referentUid = $site->index()->findBy('uid', $referent); ?>
                    <li>
                        <a href="<?php echo $referentUid->url(); ?>">
                            <?php
                                $data = $referentUid->title();
                                list($nom, $prenom) = explode(", ", $data);
                                echo $prenom . ' ' . $nom;
                            ?>
                        </a>
                    </li>
                <?php endforeach ?>
            </ul>
          </li>
          <?php endif ?>
          
          
          
          <li>Tag(s) : 
              <?php $tags = str::split($page->tags(),','); ?>
              <ul>
                <?php foreach($tags as $tag): ?>
                  <li>
                    <a href="<?= $page->parent()->url();?>#filtre=.<?= str::slug($tag); ?>"/>
/
home
/
avenati
/
entreformesetsignes.fr
/
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;
  }
 
}
/
home
/
avenati
/
entreformesetsignes.fr
/
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;
 
  }
 
}
 
/
home
/
avenati
/
entreformesetsignes.fr
/
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
/
avenati
/
entreformesetsignes.fr
/
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
/
avenati
/
entreformesetsignes.fr
/
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
/
avenati
/
entreformesetsignes.fr
/
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
/
avenati
/
entreformesetsignes.fr
/
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.7
Kirby CMS v2.5.7
empty
empty
empty
empty
Key Value
kirby_session_fingerprint e76364fcd8b47c901c9e4217f5e1900674ad7855
kirby_session_activity 1711642105
Key Value
USER avenati
SCRIPT_NAME /index.php
REQUEST_URI /projets/atlas-du-cancer
QUERY_STRING
REQUEST_METHOD GET
SERVER_PROTOCOL HTTP/1.1
GATEWAY_INTERFACE CGI/1.1
REDIRECT_URL /projets/atlas-du-cancer
REMOTE_PORT 25592
SCRIPT_FILENAME /home/avenati/entreformesetsignes.fr/index.php
SERVER_ADMIN postmaster@entreformesetsignes.fr
DOCUMENT_ROOT /home/avenati/entreformesetsignes.fr
REMOTE_ADDR 18.234.232.228
SERVER_PORT 443
SERVER_ADDR 10.2.20.38
SERVER_NAME entreformesetsignes.fr
SERVER_SOFTWARE Apache
SERVER_SIGNATURE
HTTP_REMOTE_IP 18.234.232.228
HTTP_REFERER http://entreformesetsignes.fr/projets/atlas-du-cancer
HTTP_USER_AGENT claudebot
HTTP_ACCEPT */*
HTTP_X_OVHREQUEST_ID c512c8328e9bae73f860ab669e01af5a
HTTP_X_FORWARDED_PROTO https
HTTP_X_FORWARDED_FOR 18.234.232.228
HTTP_X_PREDICTOR 1
HTTP_HOST entreformesetsignes.fr
ENVIRONMENT development
CFG_CLUSTER cluster002
HTTPS on
SCRIPT_URI https://entreformesetsignes.fr:443/projets/atlas-du-cancer
SCRIPT_URL /projets/atlas-du-cancer
GEOIP_LONGITUDE -77.490303
GEOIP_LATITUDE 39.046902
GEOIP_AREA_CODE 703
GEOIP_DMA_CODE 511
GEOIP_CITY Ashburn
GEOIP_REGION VA
GEOIP_COUNTRY_NAME United States
GEOIP_COUNTRY_CODE US
UNIQUE_ID ZgWV9yKofhX0Yfo8IjBTQAAAABM
REDIRECT_STATUS 200
FCGI_ROLE RESPONDER
PHP_SELF /index.php
REQUEST_TIME_FLOAT 1711642103,9441
REQUEST_TIME 1711642103
argv Array ( )
argc 0
Key Value
USER avenati
SCRIPT_NAME /index.php
REQUEST_URI /projets/atlas-du-cancer
QUERY_STRING
REQUEST_METHOD GET
SERVER_PROTOCOL HTTP/1.1
GATEWAY_INTERFACE CGI/1.1
REDIRECT_URL /projets/atlas-du-cancer
REMOTE_PORT 25592
SCRIPT_FILENAME /home/avenati/entreformesetsignes.fr/index.php
SERVER_ADMIN postmaster@entreformesetsignes.fr
DOCUMENT_ROOT /home/avenati/entreformesetsignes.fr
REMOTE_ADDR 18.234.232.228
SERVER_PORT 443
SERVER_ADDR 10.2.20.38
SERVER_NAME entreformesetsignes.fr
SERVER_SOFTWARE Apache
SERVER_SIGNATURE
HTTP_REMOTE_IP 18.234.232.228
HTTP_REFERER http://entreformesetsignes.fr/projets/atlas-du-cancer
HTTP_USER_AGENT claudebot
HTTP_ACCEPT */*
HTTP_X_OVHREQUEST_ID c512c8328e9bae73f860ab669e01af5a
HTTP_X_FORWARDED_PROTO https
HTTP_X_FORWARDED_FOR 18.234.232.228
HTTP_X_PREDICTOR 1
HTTP_HOST entreformesetsignes.fr
ENVIRONMENT development
CFG_CLUSTER cluster002
HTTPS on
SCRIPT_URI https://entreformesetsignes.fr:443/projets/atlas-du-cancer
SCRIPT_URL /projets/atlas-du-cancer
GEOIP_LONGITUDE -77.490303
GEOIP_LATITUDE 39.046902
GEOIP_AREA_CODE 703
GEOIP_DMA_CODE 511
GEOIP_CITY Ashburn
GEOIP_REGION VA
GEOIP_COUNTRY_NAME United States
GEOIP_COUNTRY_CODE US
UNIQUE_ID ZgWV9yKofhX0Yfo8IjBTQAAAABM
REDIRECT_STATUS 200
FCGI_ROLE RESPONDER
PHP_SELF /index.php
REQUEST_TIME_FLOAT 1711642103,9441
REQUEST_TIME 1711642103
argv Array ( )
argc 0
0. Whoops\Handler\PrettyPageHandler