ErrorException (E_ERROR)
filemtime(): stat failed for /home/alpesanshv/www/public/uploads/.cache/39e7b4dfb896914af525c7878435e57480f7d0cd.php (View: /home/alpesanshv/www/resources/templates/partials/section-title.blade.php) ErrorException thrown with message "filemtime(): stat failed for /home/alpesanshv/www/public/uploads/.cache/39e7b4dfb896914af525c7878435e57480f7d0cd.php (View: /home/alpesanshv/www/resources/templates/partials/section-title.blade.php)" Stacktrace: #20 ErrorException in /home/alpesanshv/www/vendor/illuminate/filesystem/Filesystem.php:321 #19 Whoops\Exception\ErrorException in /home/alpesanshv/www/vendor/illuminate/filesystem/Filesystem.php:321 #18 filemtime in /home/alpesanshv/www/vendor/illuminate/filesystem/Filesystem.php:321 #17 Illuminate\Filesystem\Filesystem:lastModified in /home/alpesanshv/www/vendor/illuminate/view/Compilers/Compiler.php:72 #16 Illuminate\View\Compilers\Compiler:isExpired in /home/alpesanshv/www/vendor/illuminate/view/Engines/CompilerEngine.php:50 #15 Illuminate\View\Engines\CompilerEngine:get in /home/alpesanshv/www/vendor/illuminate/view/View.php:142 #14 Illuminate\View\View:getContents in /home/alpesanshv/www/vendor/illuminate/view/View.php:125 #13 Illuminate\View\View:renderContents in /home/alpesanshv/www/vendor/illuminate/view/View.php:90 #12 Illuminate\View\View:render in /home/alpesanshv/www/public/uploads/.cache/aaf2299f5fcd9c9c520eb01c6d0f6051978534b0.php:76 #11 include in /home/alpesanshv/www/vendor/illuminate/view/Engines/PhpEngine.php:43 #10 Illuminate\View\Engines\PhpEngine:evaluatePath in /home/alpesanshv/www/vendor/illuminate/view/Engines/CompilerEngine.php:59 #9 Illuminate\View\Engines\CompilerEngine:get in /home/alpesanshv/www/vendor/illuminate/view/View.php:142 #8 Illuminate\View\View:getContents in /home/alpesanshv/www/vendor/illuminate/view/View.php:125 #7 Illuminate\View\View:renderContents in /home/alpesanshv/www/vendor/illuminate/view/View.php:90 #6 Illuminate\View\View:render in /home/alpesanshv/www/public/mu-plugins/bladerunner/src/Blade.php:51 #5 Bladerunner\Blade:render in /home/alpesanshv/www/public/mu-plugins/bladerunner/globals/helpers.php:21 #4 view in /home/alpesanshv/www/public/mu-plugins/bladerunner/globals/helpers.php:9 #3 bladerunner in /home/alpesanshv/www/public/themes/corevih/single.php:2 #2 include in /home/alpesanshv/www/public/wordpress/wp-includes/template-loader.php:74 #1 require_once in /home/alpesanshv/www/public/wordpress/wp-blog-header.php:19 #0 require in /home/alpesanshv/www/public/index.php:37
Stack frames (21)
20
ErrorException
/
vendor
/
illuminate
/
filesystem
/
Filesystem.php
321
19
Whoops
\
Exception
\
ErrorException
/
vendor
/
illuminate
/
filesystem
/
Filesystem.php
321
18
filemtime
/
vendor
/
illuminate
/
filesystem
/
Filesystem.php
321
17
Illuminate
\
Filesystem
\
Filesystem
lastModified
/
vendor
/
illuminate
/
view
/
Compilers
/
Compiler.php
72
16
Illuminate
\
View
\
Compilers
\
Compiler
isExpired
/
vendor
/
illuminate
/
view
/
Engines
/
CompilerEngine.php
50
15
Illuminate
\
View
\
Engines
\
CompilerEngine
get
/
vendor
/
illuminate
/
view
/
View.php
142
14
Illuminate
\
View
\
View
getContents
/
vendor
/
illuminate
/
view
/
View.php
125
13
Illuminate
\
View
\
View
renderContents
/
vendor
/
illuminate
/
view
/
View.php
90
12
Illuminate
\
View
\
View
render
/
public
/
uploads
/
.cache
/
aaf2299f5fcd9c9c520eb01c6d0f6051978534b0.php
76
11
include
/
vendor
/
illuminate
/
view
/
Engines
/
PhpEngine.php
43
10
Illuminate
\
View
\
Engines
\
PhpEngine
evaluatePath
/
vendor
/
illuminate
/
view
/
Engines
/
CompilerEngine.php
59
9
Illuminate
\
View
\
Engines
\
CompilerEngine
get
/
vendor
/
illuminate
/
view
/
View.php
142
8
Illuminate
\
View
\
View
getContents
/
vendor
/
illuminate
/
view
/
View.php
125
7
Illuminate
\
View
\
View
renderContents
/
vendor
/
illuminate
/
view
/
View.php
90
6
Illuminate
\
View
\
View
render
/
public
/
mu-plugins
/
bladerunner
/
src
/
Blade.php
51
5
Bladerunner
\
Blade
render
/
public
/
mu-plugins
/
bladerunner
/
globals
/
helpers.php
21
4
view
/
public
/
mu-plugins
/
bladerunner
/
globals
/
helpers.php
9
3
bladerunner
/
public
/
themes
/
corevih
/
single.php
2
2
include
/
public
/
wordpress
/
wp-includes
/
template-loader.php
74
1
require_once
/
public
/
wordpress
/
wp-blog-header.php
19
0
require
/
public
/
index.php
37
/
home
/
alpesanshv
/
www
/
vendor
/
illuminate
/
filesystem
/
Filesystem.php
    /**
     * Get the file size of a given file.
     *
     * @param  string  $path
     * @return int
     */
    public function size($path)
    {
        return filesize($path);
    }
 
    /**
     * Get the file's last modification time.
     *
     * @param  string  $path
     * @return int
     */
    public function lastModified($path)
    {
        return filemtime($path);
    }
 
    /**
     * Determine if the given path is a directory.
     *
     * @param  string  $directory
     * @return bool
     */
    public function isDirectory($directory)
    {
        return is_dir($directory);
    }
 
    /**
     * Determine if the given path is readable.
     *
     * @param  string  $path
     * @return bool
     */
    public function isReadable($path)
Arguments
  1. "filemtime(): stat failed for /home/alpesanshv/www/public/uploads/.cache/39e7b4dfb896914af525c7878435e57480f7d0cd.php (View: /home/alpesanshv/www/resources/templates/partials/section-title.blade.php)"
    
/
home
/
alpesanshv
/
www
/
vendor
/
illuminate
/
filesystem
/
Filesystem.php
    /**
     * Get the file size of a given file.
     *
     * @param  string  $path
     * @return int
     */
    public function size($path)
    {
        return filesize($path);
    }
 
    /**
     * Get the file's last modification time.
     *
     * @param  string  $path
     * @return int
     */
    public function lastModified($path)
    {
        return filemtime($path);
    }
 
    /**
     * Determine if the given path is a directory.
     *
     * @param  string  $directory
     * @return bool
     */
    public function isDirectory($directory)
    {
        return is_dir($directory);
    }
 
    /**
     * Determine if the given path is readable.
     *
     * @param  string  $path
     * @return bool
     */
    public function isReadable($path)
Arguments
  1. "filemtime(): stat failed for /home/alpesanshv/www/public/uploads/.cache/39e7b4dfb896914af525c7878435e57480f7d0cd.php"
    
Exception message: filemtime(): stat failed for /home/alpesanshv/www/public/uploads/.cache/39e7b4dfb896914af525c7878435e57480f7d0cd.php
/
home
/
alpesanshv
/
www
/
vendor
/
illuminate
/
filesystem
/
Filesystem.php
    /**
     * Get the file size of a given file.
     *
     * @param  string  $path
     * @return int
     */
    public function size($path)
    {
        return filesize($path);
    }
 
    /**
     * Get the file's last modification time.
     *
     * @param  string  $path
     * @return int
     */
    public function lastModified($path)
    {
        return filemtime($path);
    }
 
    /**
     * Determine if the given path is a directory.
     *
     * @param  string  $directory
     * @return bool
     */
    public function isDirectory($directory)
    {
        return is_dir($directory);
    }
 
    /**
     * Determine if the given path is readable.
     *
     * @param  string  $path
     * @return bool
     */
    public function isReadable($path)
Arguments
  1. "/home/alpesanshv/www/public/uploads/.cache/39e7b4dfb896914af525c7878435e57480f7d0cd.php"
    
/
home
/
alpesanshv
/
www
/
vendor
/
illuminate
/
view
/
Compilers
/
Compiler.php
 
    /**
     * Determine if the view at the given path is expired.
     *
     * @param  string  $path
     * @return bool
     */
    public function isExpired($path)
    {
        $compiled = $this->getCompiledPath($path);
 
        // If the compiled file doesn't exist we will indicate that the view is expired
        // so that it can be re-compiled. Else, we will verify the last modification
        // of the views is less than the modification times of the compiled views.
        if (! $this->files->exists($compiled)) {
            return true;
        }
 
        return $this->files->lastModified($path) >=
               $this->files->lastModified($compiled);
    }
}
 
Arguments
  1. "/home/alpesanshv/www/public/uploads/.cache/39e7b4dfb896914af525c7878435e57480f7d0cd.php"
    
/
home
/
alpesanshv
/
www
/
vendor
/
illuminate
/
view
/
Engines
/
CompilerEngine.php
    public function __construct(CompilerInterface $compiler)
    {
        $this->compiler = $compiler;
    }
 
    /**
     * Get the evaluated contents of the view.
     *
     * @param  string  $path
     * @param  array   $data
     * @return string
     */
    public function get($path, array $data = [])
    {
        $this->lastCompiled[] = $path;
 
        // If this given view has expired, which means it has simply been edited since
        // it was last compiled, we will re-compile the views so we can evaluate a
        // fresh copy of the view. We'll pass the compiler the path of the view.
        if ($this->compiler->isExpired($path)) {
            $this->compiler->compile($path);
        }
 
        $compiled = $this->compiler->getCompiledPath($path);
 
        // Once we have the path to the compiled file, we will evaluate the paths with
        // typical PHP just like any other templates. We also keep a stack of views
        // which have been rendered for right exception messages to be generated.
        $results = $this->evaluatePath($compiled, $data);
 
        array_pop($this->lastCompiled);
 
        return $results;
    }
 
    /**
     * Handle a view exception.
     *
     * @param  \Exception  $e
     * @param  int  $obLevel
Arguments
  1. "/home/alpesanshv/www/public/wordpress/../../resources/templates/partials/section-title.blade.php"
    
/
home
/
alpesanshv
/
www
/
vendor
/
illuminate
/
view
/
View.php
        $this->factory->callComposer($this);
 
        $contents = $this->getContents();
 
        // Once we've finished rendering the view, we'll decrement the render count
        // so that each sections get flushed out next time a view is created and
        // no old sections are staying around in the memory of an environment.
        $this->factory->decrementRender();
 
        return $contents;
    }
 
    /**
     * Get the evaluated contents of the view.
     *
     * @return string
     */
    protected function getContents()
    {
        return $this->engine->get($this->path, $this->gatherData());
    }
 
    /**
     * Get the data bound to the view instance.
     *
     * @return array
     */
    protected function gatherData()
    {
        $data = array_merge($this->factory->getShared(), $this->data);
 
        foreach ($data as $key => $value) {
            if ($value instanceof Renderable) {
                $data[$key] = $value->render();
            }
        }
 
        return $data;
    }
 
Arguments
  1. "/home/alpesanshv/www/public/wordpress/../../resources/templates/partials/section-title.blade.php"
    
  2. array:9 [
      "__env" => Factory {}
      "app" => Container {}
      "obLevel" => 1
      "post" => WP_Post {}
      "category" => array:1 [
        0 => WP_Term {}
      ]
      "event" => true
      "eventdate" => DateTime @1728018970 {
        date: 2024-10-04 05:16:10.756203 UTC (+00:00)
      }
      "heading" => "h1"
      "title" => "Nos dernières actualités"
    ]
    
/
home
/
alpesanshv
/
www
/
vendor
/
illuminate
/
view
/
View.php
 
            throw $e;
        }
    }
 
    /**
     * Get the contents of the view instance.
     *
     * @return string
     */
    protected function renderContents()
    {
        // We will keep track of the amount of views being rendered so we can flush
        // the section after the complete rendering operation is done. This will
        // clear out the sections for any separate views that may be rendered.
        $this->factory->incrementRender();
 
        $this->factory->callComposer($this);
 
        $contents = $this->getContents();
 
        // Once we've finished rendering the view, we'll decrement the render count
        // so that each sections get flushed out next time a view is created and
        // no old sections are staying around in the memory of an environment.
        $this->factory->decrementRender();
 
        return $contents;
    }
 
    /**
     * Get the evaluated contents of the view.
     *
     * @return string
     */
    protected function getContents()
    {
        return $this->engine->get($this->path, $this->gatherData());
    }
 
    /**
/
home
/
alpesanshv
/
www
/
vendor
/
illuminate
/
view
/
View.php
        $this->view = $view;
        $this->path = $path;
        $this->engine = $engine;
        $this->factory = $factory;
 
        $this->data = $data instanceof Arrayable ? $data->toArray() : (array) $data;
    }
 
    /**
     * Get the string contents of the view.
     *
     * @param  callable|null  $callback
     * @return string
     *
     * @throws \Throwable
     */
    public function render(callable $callback = null)
    {
        try {
            $contents = $this->renderContents();
 
            $response = isset($callback) ? call_user_func($callback, $this, $contents) : null;
 
            // Once we have the contents of the view, we will flush the sections if we are
            // done rendering all views so that there is nothing left hanging over when
            // another view gets rendered in the future by the application developer.
            $this->factory->flushStateIfDoneRendering();
 
            return ! is_null($response) ? $response : $contents;
        } catch (Exception $e) {
            $this->factory->flushState();
 
            throw $e;
        } catch (Throwable $e) {
            $this->factory->flushState();
 
            throw $e;
        }
    }
 
/
home
/
alpesanshv
/
www
/
public
/
uploads
/
.cache
/
aaf2299f5fcd9c9c520eb01c6d0f6051978534b0.php
                            <p class="post-date">Publié le <?php echo the_date(); ?></p>
 
 
 
                            <div class="content">
                                <?php echo the_content(); ?>
 
 
 
                            </div>
 
                        </div>
                    </div>
 
                </div>
        <?php endwhile; ?>
 
 
    <?php endif; ?>
    <?php echo $__env->make('partials.section-title', ['heading' => 'h1', 'title' => 'Nos dernières actualités'], array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
    <?php echo $__env->make('partials.latest-posts', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
 
 
 
 
 
<?php $__env->stopSection(); ?>
 
<?php echo $__env->make('layout', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
/
home
/
alpesanshv
/
www
/
vendor
/
illuminate
/
view
/
Engines
/
PhpEngine.php
    /**
     * Get the evaluated contents of the view at the given path.
     *
     * @param  string  $__path
     * @param  array   $__data
     * @return string
     */
    protected function evaluatePath($__path, $__data)
    {
        $obLevel = ob_get_level();
 
        ob_start();
 
        extract($__data, EXTR_SKIP);
 
        // We'll evaluate the contents of the view inside a try/catch block so we can
        // flush out any stray output that might get out before an error occurs or
        // an exception is thrown. This prevents any partial views from leaking.
        try {
            include $__path;
        } catch (Exception $e) {
            $this->handleViewException($e, $obLevel);
        } catch (Throwable $e) {
            $this->handleViewException(new FatalThrowableError($e), $obLevel);
        }
 
        return ltrim(ob_get_clean());
    }
 
    /**
     * Handle a view exception.
     *
     * @param  \Exception  $e
     * @param  int  $obLevel
     * @return void
     *
     * @throws \Exception
     */
    protected function handleViewException(Exception $e, $obLevel)
    {
Arguments
  1. "/home/alpesanshv/www/public/uploads/.cache/aaf2299f5fcd9c9c520eb01c6d0f6051978534b0.php"
    
/
home
/
alpesanshv
/
www
/
vendor
/
illuminate
/
view
/
Engines
/
CompilerEngine.php
     * @param  array   $data
     * @return string
     */
    public function get($path, array $data = [])
    {
        $this->lastCompiled[] = $path;
 
        // If this given view has expired, which means it has simply been edited since
        // it was last compiled, we will re-compile the views so we can evaluate a
        // fresh copy of the view. We'll pass the compiler the path of the view.
        if ($this->compiler->isExpired($path)) {
            $this->compiler->compile($path);
        }
 
        $compiled = $this->compiler->getCompiledPath($path);
 
        // Once we have the path to the compiled file, we will evaluate the paths with
        // typical PHP just like any other templates. We also keep a stack of views
        // which have been rendered for right exception messages to be generated.
        $results = $this->evaluatePath($compiled, $data);
 
        array_pop($this->lastCompiled);
 
        return $results;
    }
 
    /**
     * Handle a view exception.
     *
     * @param  \Exception  $e
     * @param  int  $obLevel
     * @return void
     *
     * @throws \Exception
     */
    protected function handleViewException(Exception $e, $obLevel)
    {
        $e = new ErrorException($this->getMessage($e), 0, 1, $e->getFile(), $e->getLine(), $e);
 
        parent::handleViewException($e, $obLevel);
Arguments
  1. "/home/alpesanshv/www/public/uploads/.cache/aaf2299f5fcd9c9c520eb01c6d0f6051978534b0.php"
    
  2. array:2 [
      "__env" => Factory {}
      "app" => Container {}
    ]
    
/
home
/
alpesanshv
/
www
/
vendor
/
illuminate
/
view
/
View.php
        $this->factory->callComposer($this);
 
        $contents = $this->getContents();
 
        // Once we've finished rendering the view, we'll decrement the render count
        // so that each sections get flushed out next time a view is created and
        // no old sections are staying around in the memory of an environment.
        $this->factory->decrementRender();
 
        return $contents;
    }
 
    /**
     * Get the evaluated contents of the view.
     *
     * @return string
     */
    protected function getContents()
    {
        return $this->engine->get($this->path, $this->gatherData());
    }
 
    /**
     * Get the data bound to the view instance.
     *
     * @return array
     */
    protected function gatherData()
    {
        $data = array_merge($this->factory->getShared(), $this->data);
 
        foreach ($data as $key => $value) {
            if ($value instanceof Renderable) {
                $data[$key] = $value->render();
            }
        }
 
        return $data;
    }
 
Arguments
  1. "/home/alpesanshv/www/public/wordpress/../../resources/templates/single.blade.php"
    
  2. array:2 [
      "__env" => Factory {}
      "app" => Container {}
    ]
    
/
home
/
alpesanshv
/
www
/
vendor
/
illuminate
/
view
/
View.php
 
            throw $e;
        }
    }
 
    /**
     * Get the contents of the view instance.
     *
     * @return string
     */
    protected function renderContents()
    {
        // We will keep track of the amount of views being rendered so we can flush
        // the section after the complete rendering operation is done. This will
        // clear out the sections for any separate views that may be rendered.
        $this->factory->incrementRender();
 
        $this->factory->callComposer($this);
 
        $contents = $this->getContents();
 
        // Once we've finished rendering the view, we'll decrement the render count
        // so that each sections get flushed out next time a view is created and
        // no old sections are staying around in the memory of an environment.
        $this->factory->decrementRender();
 
        return $contents;
    }
 
    /**
     * Get the evaluated contents of the view.
     *
     * @return string
     */
    protected function getContents()
    {
        return $this->engine->get($this->path, $this->gatherData());
    }
 
    /**
/
home
/
alpesanshv
/
www
/
vendor
/
illuminate
/
view
/
View.php
        $this->view = $view;
        $this->path = $path;
        $this->engine = $engine;
        $this->factory = $factory;
 
        $this->data = $data instanceof Arrayable ? $data->toArray() : (array) $data;
    }
 
    /**
     * Get the string contents of the view.
     *
     * @param  callable|null  $callback
     * @return string
     *
     * @throws \Throwable
     */
    public function render(callable $callback = null)
    {
        try {
            $contents = $this->renderContents();
 
            $response = isset($callback) ? call_user_func($callback, $this, $contents) : null;
 
            // Once we have the contents of the view, we will flush the sections if we are
            // done rendering all views so that there is nothing left hanging over when
            // another view gets rendered in the future by the application developer.
            $this->factory->flushStateIfDoneRendering();
 
            return ! is_null($response) ? $response : $contents;
        } catch (Exception $e) {
            $this->factory->flushState();
 
            throw $e;
        } catch (Throwable $e) {
            $this->factory->flushState();
 
            throw $e;
        }
    }
 
/
home
/
alpesanshv
/
www
/
public
/
mu-plugins
/
bladerunner
/
src
/
Blade.php
    public function compiler()
    {
        static $engineResolver;
        if (!$engineResolver) {
            $engineResolver = $this->app->make('view.engine.resolver');
        }
        return $engineResolver->resolve('blade')->getCompiler();
    }
 
    /**
     * @param string $view
     * @param array $data
     * @param array $mergeData
     * @return string
     */
    public function render($view, $data = [], $mergeData = [])
    {
        /** @var \Illuminate\Contracts\Filesystem\Filesystem $filesystem */
        $filesystem = $this->app['files'];
        return $this->{$filesystem->exists($view) ? 'file' : 'make'}($view, $data, $mergeData)->render();
    }
 
    /**
     * @param string $file
     * @param array $data
     * @param array $mergeData
     * @return string
     */
    public function compiledPath($file, $data = [], $mergeData = [])
    {
        $rendered = $this->file($file, $data, $mergeData);
        /** @var EngineInterface $engine */
        $engine = $rendered->getEngine();
 
        if (!($engine instanceof CompilerEngine)) {
            // Using PhpEngine, so just return the file
            return $file;
        }
 
        $compiler = $engine->getCompiler();
/
home
/
alpesanshv
/
www
/
public
/
mu-plugins
/
bladerunner
/
globals
/
helpers.php
/**
 * Global functions
 */
 
if (!function_exists('bladerunner')) {
    function bladerunner($view, $data = [], $echo=true)
    {
        $result = view($view, $data);
        if ($echo) {
            echo $result;
            return null;
        }
        return $result;
    }
}
 
if (!function_exists('view')) {
    function view($view, $data = [])
    {
        return \Bladerunner\Container::current('blade')->render($view, $data);
    }
}
 
Arguments
  1. "single"
    
  2. []
    
/
home
/
alpesanshv
/
www
/
public
/
mu-plugins
/
bladerunner
/
globals
/
helpers.php
<?php
/**
 * Global functions
 */
 
if (!function_exists('bladerunner')) {
    function bladerunner($view, $data = [], $echo=true)
    {
        $result = view($view, $data);
        if ($echo) {
            echo $result;
            return null;
        }
        return $result;
    }
}
 
if (!function_exists('view')) {
    function view($view, $data = [])
    {
        return \Bladerunner\Container::current('blade')->render($view, $data);
    }
}
 
Arguments
  1. "single"
    
  2. []
    
/
home
/
alpesanshv
/
www
/
public
/
themes
/
corevih
/
single.php
<?php
bladerunner('single');
 
Arguments
  1. "single"
    
/
home
/
alpesanshv
/
www
/
public
/
wordpress
/
wp-includes
/
template-loader.php
    elseif ( is_single()         && $template = get_single_template()         ) :
    elseif ( is_page()           && $template = get_page_template()           ) :
    elseif ( is_singular()       && $template = get_singular_template()       ) :
    elseif ( is_category()       && $template = get_category_template()       ) :
    elseif ( is_tag()            && $template = get_tag_template()            ) :
    elseif ( is_author()         && $template = get_author_template()         ) :
    elseif ( is_date()           && $template = get_date_template()           ) :
    elseif ( is_archive()        && $template = get_archive_template()        ) :
    else :
        $template = get_index_template();
    endif;
    /**
     * Filters the path of the current template before including it.
     *
     * @since 3.0.0
     *
     * @param string $template The path of the template to include.
     */
    if ( $template = apply_filters( 'template_include', $template ) ) {
        include( $template );
    } elseif ( current_user_can( 'switch_themes' ) ) {
        $theme = wp_get_theme();
        if ( $theme->errors() ) {
            wp_die( $theme->errors() );
        }
    }
    return;
endif;
 
Arguments
  1. "/home/alpesanshv/www/public/themes/corevih/single.php"
    
/
home
/
alpesanshv
/
www
/
public
/
wordpress
/
wp-blog-header.php
<?php
/**
 * Loads the WordPress environment and template.
 *
 * @package WordPress
 */
 
if ( !isset($wp_did_header) ) {
 
    $wp_did_header = true;
 
    // Load the WordPress library.
    require_once( dirname(__FILE__) . '/wp-load.php' );
 
    // Set up the WordPress query.
    wp();
 
    // Load the theme template.
    require_once( ABSPATH . WPINC . '/template-loader.php' );
 
}
 
Arguments
  1. "/home/alpesanshv/www/public/wordpress/wp-includes/template-loader.php"
    
/
home
/
alpesanshv
/
www
/
public
/
index.php
|
| We need to define and tell WordPress to load the WordPress theme and
| output it to the client's browser.
|
*/
 
define('WP_USE_THEMES', true);
 
/*
|--------------------------------------------------------------------------
| Booting WordPress
|--------------------------------------------------------------------------
|
| This is the front to the WordPress application. This file doesn't do
| anything, but loads wp-blog-header.php which does and tells WordPress to
| load the theme.
|
*/
 
require __DIR__.'/wordpress/wp-blog-header.php';
 
Arguments
  1. "/home/alpesanshv/www/public/wordpress/wp-blog-header.php"
    

Environment & details:

empty
empty
empty
empty
empty
Key Value
SERVER_SOFTWARE
"Apache"
REQUEST_URI
"/25-09-journee-prep-et-migrants-lyon/"
USER
"alpesanshv"
SCRIPT_NAME
"/index.php"
QUERY_STRING
""
REQUEST_METHOD
"GET"
SERVER_PROTOCOL
"HTTP/1.1"
GATEWAY_INTERFACE
"CGI/1.1"
REDIRECT_URL
"/25-09-journee-prep-et-migrants-lyon/"
REMOTE_PORT
"57802"
SCRIPT_FILENAME
"/home/alpesanshv/www/public/index.php"
SERVER_ADMIN
"postmaster@www.alpesansida.fr"
DOCUMENT_ROOT
"/home/alpesanshv/www/public"
REMOTE_ADDR
"44.222.134.250"
SERVER_PORT
"443"
SERVER_ADDR
"10.27.20.101"
SERVER_NAME
"www.alpesansida.fr"
SERVER_SIGNATURE
""
HTTP_REMOTE_IP
"44.222.134.250"
HTTP_ACCEPT_ENCODING
"br,gzip"
HTTP_IF_MODIFIED_SINCE
"Mon, 05 Aug 2024 09:21:51 GMT"
HTTP_ACCEPT_LANGUAGE
"en-US,en;q=0.5"
HTTP_ACCEPT
"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"
HTTP_USER_AGENT
"CCBot/2.0 (https://commoncrawl.org/faq/)"
HTTP_X_OVHREQUEST_ID
"5e76f3e3ce4793b6c8ab84d1df1ec7eb"
HTTP_X_FORWARDED_PROTO
"https"
HTTP_X_FORWARDED_FOR
"44.222.134.250"
HTTP_X_PREDICTOR
"1"
HTTP_HOST
"www.alpesansida.fr"
ENVIRONMENT
"production"
CFG_CLUSTER
"cluster027"
HTTPS
"on"
SCRIPT_URI
"https://www.alpesansida.fr:443/25-09-journee-prep-et-migrants-lyon/"
SCRIPT_URL
"/25-09-journee-prep-et-migrants-lyon/"
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
"Zv96GeGvm2kE-1@PziSvewAAAC4"
REDIRECT_STATUS
"200"
FCGI_ROLE
"RESPONDER"
PHP_SELF
"/index.php"
REQUEST_TIME_FLOAT
"1728018969.9649"
REQUEST_TIME
"1728018969"
argv
[]
argc
"0"
WP_ENV
"local"
PHP_DEBUG
"true"
WP_DEBUG
"true"
WP_THEME
"wordpress-starter"
WP_PREFIX
"wp_"
WP_BROWSERSYNC_PROXY
"wordpress-starter.local"
WP_HOME
"http://wordpress-starter.local"
WP_THEME_COLOR
"#1779ba"
DB_HOST
"alpesanshvfx2018.mysql.db"
DB_NAME
"alpesanshvfx2018"
DB_USER
"alpesanshvfx2018"
DB_PASSWORD
"Alpesanshv38"
MAIL_HOST
"smtp.mailtrap.io"
MAIL_PORT
"2525"
MAIL_USERNAME
"60a05eba5c32b7"
MAIL_PASSWORD
"2bae0b4ca36081"
MAIL_ENCRYPTION
"null"
AUTH_KEY
"d5f65ef62624a7794e69c9f26ddf1b8e89ec09662b8f0f2b811a0d57010434cd"
SECURE_AUTH_KEY
"02f221635be9d3fd911860d00d3100b35bda88fc61d79c430cd4192e65008d75"
LOGGED_IN_KEY
"c9d6f1b4f9f76079567264d7cf945bd929da1c1954fd7b145b5e2496f0cfc309"
NONCE_KEY
"7ffb7fb0e9bcfa4df800184e9d0edabb06384c44ef12014f12e386a9216cbd60"
AUTH_SALT
"f2f7766804661f2319a1703bfdb2480c82c30d70ed73042cb8dcab7fd8de64f2"
SECURE_AUTH_SALT
"bfa942e494b9f9c8e0916a8d7ed8098e0dce4c5b00603438c47d9d4ec28cf186"
LOGGED_IN_SALT
"fdfcf6ba350fc79107d16c7df2adc3e10831a5c44b5e3ca5f429e9d297265a10"
NONCE_SALT
"f63c7fdc35e67a944e0e9bd9303b90f072ac3fa1a46a0acad21068fdf937ac15"
Key Value
USER
"alpesanshv"
SCRIPT_NAME
"/index.php"
REQUEST_URI
"/25-09-journee-prep-et-migrants-lyon/"
QUERY_STRING
""
REQUEST_METHOD
"GET"
SERVER_PROTOCOL
"HTTP/1.1"
GATEWAY_INTERFACE
"CGI/1.1"
REDIRECT_URL
"/25-09-journee-prep-et-migrants-lyon/"
REMOTE_PORT
"57802"
SCRIPT_FILENAME
"/home/alpesanshv/www/public/index.php"
SERVER_ADMIN
"postmaster@www.alpesansida.fr"
DOCUMENT_ROOT
"/home/alpesanshv/www/public"
REMOTE_ADDR
"44.222.134.250"
SERVER_PORT
"443"
SERVER_ADDR
"10.27.20.101"
SERVER_NAME
"www.alpesansida.fr"
SERVER_SOFTWARE
"Apache"
SERVER_SIGNATURE
""
HTTP_REMOTE_IP
"44.222.134.250"
HTTP_ACCEPT_ENCODING
"br,gzip"
HTTP_IF_MODIFIED_SINCE
"Mon, 05 Aug 2024 09:21:51 GMT"
HTTP_ACCEPT_LANGUAGE
"en-US,en;q=0.5"
HTTP_ACCEPT
"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"
HTTP_USER_AGENT
"CCBot/2.0 (https://commoncrawl.org/faq/)"
HTTP_X_OVHREQUEST_ID
"5e76f3e3ce4793b6c8ab84d1df1ec7eb"
HTTP_X_FORWARDED_PROTO
"https"
HTTP_X_FORWARDED_FOR
"44.222.134.250"
HTTP_X_PREDICTOR
"1"
HTTP_HOST
"www.alpesansida.fr"
ENVIRONMENT
"production"
CFG_CLUSTER
"cluster027"
HTTPS
"on"
SCRIPT_URI
"https://www.alpesansida.fr:443/25-09-journee-prep-et-migrants-lyon/"
SCRIPT_URL
"/25-09-journee-prep-et-migrants-lyon/"
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
"Zv96GeGvm2kE-1@PziSvewAAAC4"
REDIRECT_STATUS
"200"
FCGI_ROLE
"RESPONDER"
PHP_SELF
"/index.php"
REQUEST_TIME_FLOAT
1728018969.9649
REQUEST_TIME
1728018969
argv
[]
argc
0
WP_ENV
"local"
PHP_DEBUG
"true"
WP_DEBUG
"true"
WP_THEME
"wordpress-starter"
WP_PREFIX
"wp_"
WP_BROWSERSYNC_PROXY
"wordpress-starter.local"
WP_HOME
"http://wordpress-starter.local"
WP_THEME_COLOR
"#1779ba"
DB_HOST
"alpesanshvfx2018.mysql.db"
DB_NAME
"alpesanshvfx2018"
DB_USER
"alpesanshvfx2018"
DB_PASSWORD
"Alpesanshv38"
MAIL_HOST
"smtp.mailtrap.io"
MAIL_PORT
"2525"
MAIL_USERNAME
"60a05eba5c32b7"
MAIL_PASSWORD
"2bae0b4ca36081"
MAIL_ENCRYPTION
"null"
AUTH_KEY
"d5f65ef62624a7794e69c9f26ddf1b8e89ec09662b8f0f2b811a0d57010434cd"
SECURE_AUTH_KEY
"02f221635be9d3fd911860d00d3100b35bda88fc61d79c430cd4192e65008d75"
LOGGED_IN_KEY
"c9d6f1b4f9f76079567264d7cf945bd929da1c1954fd7b145b5e2496f0cfc309"
NONCE_KEY
"7ffb7fb0e9bcfa4df800184e9d0edabb06384c44ef12014f12e386a9216cbd60"
AUTH_SALT
"f2f7766804661f2319a1703bfdb2480c82c30d70ed73042cb8dcab7fd8de64f2"
SECURE_AUTH_SALT
"bfa942e494b9f9c8e0916a8d7ed8098e0dce4c5b00603438c47d9d4ec28cf186"
LOGGED_IN_SALT
"fdfcf6ba350fc79107d16c7df2adc3e10831a5c44b5e3ca5f429e9d297265a10"
NONCE_SALT
"f63c7fdc35e67a944e0e9bd9303b90f072ac3fa1a46a0acad21068fdf937ac15"
0. Whoops\Handler\PrettyPageHandler