Whoops \ Exception \ ErrorException (E_WARNING)
file_get_contents(http://vimeo.com/api/v2/video/345007413.php): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found Whoops\Exception\ErrorException thrown with message "file_get_contents(http://vimeo.com/api/v2/video/345007413.php): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found " Stacktrace: #12 Whoops\Exception\ErrorException in /home/belordinaire/vidaeo/site/snippets/video-item.php:15 #11 file_get_contents in /home/belordinaire/vidaeo/site/snippets/video-item.php:15 #10 require in /home/belordinaire/vidaeo/kirby/vendor/getkirby/toolkit/lib/tpl.php:22 #9 Tpl:load in /home/belordinaire/vidaeo/kirby/kirby/component/snippet.php:38 #8 Kirby\Component\Snippet:render in /home/belordinaire/vidaeo/kirby/helpers.php:12 #7 snippet in /home/belordinaire/vidaeo/site/templates/home.php:40 #6 require in /home/belordinaire/vidaeo/kirby/vendor/getkirby/toolkit/lib/tpl.php:22 #5 Tpl:load in /home/belordinaire/vidaeo/kirby/kirby/component/template.php:103 #4 Kirby\Component\Template:render in /home/belordinaire/vidaeo/kirby/kirby.php:681 #3 Kirby:template in /home/belordinaire/vidaeo/kirby/kirby.php:669 #2 Kirby:render in /home/belordinaire/vidaeo/kirby/kirby/component/response.php:29 #1 Kirby\Component\Response:make in /home/belordinaire/vidaeo/kirby/kirby.php:751 #0 Kirby:launch in /home/belordinaire/vidaeo/index.php:16
Stack frames (13)
12
Whoops
\
Exception
\
ErrorException
/
home
/
belordinaire
/
vidaeo
/
site
/
snippets
/
video-item.php
15
11
file_get_contents
/
home
/
belordinaire
/
vidaeo
/
site
/
snippets
/
video-item.php
15
10
require
/
vendor
/
getkirby
/
toolkit
/
lib
/
tpl.php
22
9
Tpl
load
/
kirby
/
component
/
snippet.php
38
8
Kirby
\
Component
\
Snippet
render
/
helpers.php
12
7
snippet
/
home
/
belordinaire
/
vidaeo
/
site
/
templates
/
home.php
40
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
/
home
/
belordinaire
/
vidaeo
/
index.php
16
/
home
/
belordinaire
/
vidaeo
/
site
/
snippets
/
video-item.php
<?php $isHome = isset($home) ? $home : false; ?>
 
<article
    class="grid-item <?php if ($video->is_important()->bool() && !$isHome): ?>grid-item--width2<?php endif ?>
    background-<?= $video->backgroundcolor()?>">
    <?php if($image = $video->coverimage()->toFile()):
        $size = ($video->is_important()->bool()) ? 680 : 450;
        $thumb = thumb($image, array('width' => $size))->url() ;
    elseif($image = $video->first()->toFile()):
        $size = ($video->is_important()->bool()) ? 680 : 450;
        $thumb = thumb($image, array('width' => $size))->url() ;
    else:
        if ($video->video_provider() == "vimeo") {
            $imgid = $video->video_id();
            $hash = unserialize(file_get_contents("http://vimeo.com/api/v2/video/$imgid.php"));
            $thumb = $hash[0]['thumbnail_large'];
        } else {
            $thumb = NULL;
        }
    endif;
    ?>
    <a class="<?php e(isset($thumb), 'imagehover') ?>" href="<?= $video->url() ?>">
        <h2 class="video_title underlined"><?= $video->title()->html() ?></h2>
        <?php if( isset( $thumb) ): ?>
            <img src="<?= $thumb ?>" alt="<?= $video->title()->text() ?>" />
        <?php endif ?>
    </a>
    <h3><?= $video->subtitle()->html() ?></h3>
    <p><?= $video->date('%d/%m/%Y') ?></p>
 
</article>
 
/
home
/
belordinaire
/
vidaeo
/
site
/
snippets
/
video-item.php
<?php $isHome = isset($home) ? $home : false; ?>
 
<article
    class="grid-item <?php if ($video->is_important()->bool() && !$isHome): ?>grid-item--width2<?php endif ?>
    background-<?= $video->backgroundcolor()?>">
    <?php if($image = $video->coverimage()->toFile()):
        $size = ($video->is_important()->bool()) ? 680 : 450;
        $thumb = thumb($image, array('width' => $size))->url() ;
    elseif($image = $video->first()->toFile()):
        $size = ($video->is_important()->bool()) ? 680 : 450;
        $thumb = thumb($image, array('width' => $size))->url() ;
    else:
        if ($video->video_provider() == "vimeo") {
            $imgid = $video->video_id();
            $hash = unserialize(file_get_contents("http://vimeo.com/api/v2/video/$imgid.php"));
            $thumb = $hash[0]['thumbnail_large'];
        } else {
            $thumb = NULL;
        }
    endif;
    ?>
    <a class="<?php e(isset($thumb), 'imagehover') ?>" href="<?= $video->url() ?>">
        <h2 class="video_title underlined"><?= $video->title()->html() ?></h2>
        <?php if( isset( $thumb) ): ?>
            <img src="<?= $thumb ?>" alt="<?= $video->title()->text() ?>" />
        <?php endif ?>
    </a>
    <h3><?= $video->subtitle()->html() ?></h3>
    <p><?= $video->date('%d/%m/%Y') ?></p>
 
</article>
 
/
home
/
belordinaire
/
vidaeo
/
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
/
belordinaire
/
vidaeo
/
kirby
/
kirby
/
component
/
snippet.php
   * Returns a snippet file path by name
   *
   * @param string $name
   * @return string
   */
  public function file($name) {
    return $this->kirby->roots()->snippets() . DS . str_replace('/', DS, $name) . '.php';
  }
 
  /**
   * Renders the snippet with the given data 
   * 
   * @param string $name
   * @param array $data
   * @param boolean $return
   * @return string
   */
  public function render($name, $data = [], $return = false) {
    if(is_object($data)) $data = ['item' => $data];
    return tpl::load($this->kirby->registry->get('snippet', $name), $data, $return);
  }
 
}
/
home
/
belordinaire
/
vidaeo
/
kirby
/
helpers.php
<?php
 
/**
 * Embeds a snippet from the snippet folder
 *
 * @param string $file
 * @param mixed $data array or object
 * @param boolean $return
 * @return string
 */
function snippet($file, $data = array(), $return = false) {
  return kirby::instance()->component('snippet')->render($file, $data, $return);
}
 
/**
 * Builds a css link tag for relative or absolute urls
 *
 * @param string $url
 * @param string|array $media Either a media string or an array of attributes
 * @return string
 */
function css() {
  return call([kirby::instance()->component('css'), 'tag'], func_get_args());
}
 
/**
 * Builds a script tag for relative or absolute links
 *
 * @param string $src
 * @param boolean|array $async Either true for the async attribute or an array of attributes
 * @return string
 */
function js() {
  return call([kirby::instance()->component('js'), 'tag'], func_get_args());
}
 
/**
 * Global markdown parser shortcut
 *
 * @param string $text
/
home
/
belordinaire
/
vidaeo
/
site
/
templates
/
home.php
                <?php if($image = $dossier->coverimage()->toFile()):
                    $thumb = thumb($image, array('width' => 350))->url() ;
                endif;
                ?>
                    <img src="<?= $thumb?>" alt="" />
 
 
                <h2 data-ix="<?= $thumb?>" id="intro_titre"><?php echo $dossier->title()->html(); ?></h2>
                <h3 id="intro_subtitle"><?php echo $dossier->subtitle()->html(); ?></h3>
            </a>
            <div class="intro text" id="intro_texte">
                <p><?= $page->featured_dossier_intro()->kt() ?></p>
            </div>
 
 
          </div>
        </div>
        <h2 id="derniere_vid" class="featured-title grid-item">Dernières vidéos</h2>
        <?php foreach (page('videos')->children()->not($dossier_videos)->visible()->sortBy('date', 'desc')->limit(5) as $video): ?>
            <?php snippet('video-item', ['video' => $video, 'home' => true]) ?>
        <?php endforeach ?>
        <h2 class="featured-title grid-item link" id="tt_video">
            <a href="<?= page('videos')->url() ?>">Toutes les vidéos ?</a>
        </h2>
        <div class="grid-item grid-item--width2">
            <h2 class="featured-title">Thèmes</h2>
            <?php
            $items = 'tags'; 
            $param = 'tag'; 
            $tagcloud = tagcloud(page('videos'), array('limit' => 200, 'field'=> $items, 'param' => $param )) 
        ?>
            <ul class="list">
            <?php foreach($tagcloud as $tag): ?>
                <li><a href="<?php echo $tag->url() ?>"><?php echo $tag->name() ?></a></li>
            <?php endforeach ?>
            </ul>
        </div>
    </div>
 
</main>
/
home
/
belordinaire
/
vidaeo
/
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
/
belordinaire
/
vidaeo
/
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
/
belordinaire
/
vidaeo
/
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
/
belordinaire
/
vidaeo
/
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
/
belordinaire
/
vidaeo
/
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
/
belordinaire
/
vidaeo
/
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
/
belordinaire
/
vidaeo
/
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 762444237c9ac2f96e091aca19fb24e07bd60684
kirby_session_activity 1710833860
Key Value
PHPRC /home/belordinaire/admin/config/php
PWD /usr/bin
HOME /home/belordinaire
LANG en_US.UTF-8
SHLVL 0
LC_ALL en_US.UTF-8
PATH /home/belordinaire/.local/bin:/home/belordinaire/.local/share/gem/ruby/1.8/bin:/home/belordinaire/.gem/ruby/1.8/bin:/home/belordinaire/.composer/vendor/bin:/home/belordinaire/.npm-packages/bin:/usr/local/bin:/usr/bin:/bin
CONTENT_LENGTH 0
HTTP_CONNECTION close
HTTPS on
SCRIPT_NAME /index.php
REQUEST_URI /
QUERY_STRING
REQUEST_METHOD GET
SERVER_PROTOCOL HTTP/1.1
GATEWAY_INTERFACE CGI/1.1
REMOTE_PORT 50168
SCRIPT_FILENAME /home/belordinaire/vidaeo/index.php
SERVER_ADMIN [no address given]
CONTEXT_DOCUMENT_ROOT /home/belordinaire/vidaeo/
CONTEXT_PREFIX
REQUEST_SCHEME https
DOCUMENT_ROOT /home/belordinaire/vidaeo/
REMOTE_ADDR 54.157.61.194
SERVER_PORT 443
SERVER_ADDR fd00::d3ea
SERVER_NAME vidaeo.acces-s.org
SERVER_SOFTWARE Apache
SERVER_SIGNATURE
HTTP_X_FORWARDED_PROTO https
HTTP_VIA 2.0 alproxy
HTTP_USER_AGENT claudebot
HTTP_ACCEPT */*
HTTP_HOST vidaeo.acces-s.org
FCGI_ROLE RESPONDER
PHP_SELF /index.php
REQUEST_TIME_FLOAT 1710833860.2711
REQUEST_TIME 1710833860
argv Array ( )
argc 0
Key Value
PHPRC /home/belordinaire/admin/config/php
PWD /usr/bin
HOME /home/belordinaire
LANG en_US.UTF-8
SHLVL 0
LC_ALL en_US.UTF-8
PATH /home/belordinaire/.local/bin:/home/belordinaire/.local/share/gem/ruby/1.8/bin:/home/belordinaire/.gem/ruby/1.8/bin:/home/belordinaire/.composer/vendor/bin:/home/belordinaire/.npm-packages/bin:/usr/local/bin:/usr/bin:/bin
CONTENT_LENGTH 0
HTTP_CONNECTION close
HTTPS on
SCRIPT_NAME /index.php
REQUEST_URI /
QUERY_STRING
REQUEST_METHOD GET
SERVER_PROTOCOL HTTP/1.1
GATEWAY_INTERFACE CGI/1.1
REMOTE_PORT 50168
SCRIPT_FILENAME /home/belordinaire/vidaeo/index.php
SERVER_ADMIN [no address given]
CONTEXT_DOCUMENT_ROOT /home/belordinaire/vidaeo/
CONTEXT_PREFIX
REQUEST_SCHEME https
DOCUMENT_ROOT /home/belordinaire/vidaeo/
REMOTE_ADDR 54.157.61.194
SERVER_PORT 443
SERVER_ADDR fd00::d3ea
SERVER_NAME vidaeo.acces-s.org
SERVER_SOFTWARE Apache
SERVER_SIGNATURE
HTTP_X_FORWARDED_PROTO https
HTTP_VIA 2.0 alproxy
HTTP_USER_AGENT claudebot
HTTP_ACCEPT */*
HTTP_HOST vidaeo.acces-s.org
FCGI_ROLE RESPONDER
0. Whoops\Handler\PrettyPageHandler