ErrorController
Request
GET Parameters
No GET parameters
POST Parameters
No POST parameters
Uploaded Files
No files were uploaded
Request Attributes
Key | Value |
---|---|
_controller | "error_controller" |
_stopwatch_token | "8fd701" |
exception | Twig\Error\RuntimeError {#276 #message: "Impossible to access an attribute ("experiences") on a null variable." #code: 0 #file: "/home/bookoachroot/public_html/templates/admin/booking/coach/mesReservation.html.twig" #line: 25 -lineno: 25 -name: "admin/booking/coach/mesReservation.html.twig" -rawMessage: "Impossible to access an attribute ("experiences") on a null variable." -sourcePath: "/home/bookoachroot/public_html/templates/admin/booking/coach/mesReservation.html.twig" -sourceCode: """ {% extends 'admin/baseAdmin.html.twig' %}\r\n {% block page_title %}Mes réservations{% endblock %}\r\n {% block breadcump_main %}Compte Coach{% endblock %}\r\n {% block breadcump_subtitle %}Les Réservations{% endblock %}\r\n {% block menu_left_sidebar %}\r\n {% include 'include/menu/menuCoach.html.twig' with { menu_active_event : '2'} %}\r\n {% endblock %}\r\n {% block stylesheets %}\r\n <link href="{{ asset('admin/libs/select2/css/select2.min.css') }}" rel="stylesheet" type="text/css">\r\n <link href="{{ asset('admin/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css') }}" rel="stylesheet" type="text/css">\r\n <link href="{{ asset('admin/libs/datatables.net-bs4/css/dataTables.bootstrap4.min.css') }}" rel="stylesheet" type="text/css">\r\n <link href="{{ asset('admin/libs/datatables.net-responsive-bs4/css/responsive.bootstrap4.min.css') }}" rel="stylesheet" type="text/css"> <link href="{{ asset('admin/css/tailwind.min.css') }}" rel="stylesheet" type="text/css">\r\n <link href="{{ asset('admin/css/tailwind2.css') }}" rel="stylesheet" type="text/css">\r\n \r\n {% endblock %}\r\n {% block title %}{{"Gerer mes resevation"|trans }}{% endblock %}\r\n {% block content %}\r\n <div class="row">\r\n <div class="col-lg-12">\r\n <div class="mb-3">\r\n <h4 class="card-title flex-grow-1">Gerer vos réservations</h4>\r\n <p class="text-muted">Gerer les réservation de vos éxperiences enligne</p>\r\n </div>\r\n </div><!--end col-->\r\n {% for experience in app.user.experiences %}\r\n <div class="col-lg-4 col-md-6 mb-4">\r\n <div class="card">\r\n <div class="card-body">\r\n <div class="d-flex align-items-center mb-3">\r\n <div class="avatar-xs me-3">\r\n <span class="avatar-title rounded-circle bg-primary bg-soft text-primary font-size-18">\r\n <i class="bx bx-copy-alt"></i>\r\n </span>\r\n </div>\r\n <div class="ms-3 flex-grow-1">\r\n <h5 class="mb-0 card-title">{{ experience.title }}</h5>\r\n <p class="text-muted mb-0">{{ experience.destination.name }}</p>\r\n </div>\r\n </div>\r\n <hr>\r\n <div class="text-muted mt-4">\r\n <p class="text-muted mb-3">Vous avez {{ experience.bookings|length }} reservation(s) pour cette éxperience.</p>\r\n <div class="d-flex gap-3">\r\n <div>\r\n <a href="javascript: void(0);" class="text-primary">Voir tous <i class="mdi mdi-arrow-right"></i></a>\r\n <a href="javascript: void(0);" class="text-primary">À venir <i class="mdi mdi-arrow-right"></i></a>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n {% endfor %}\r\n </div>\r\n \r\n \r\n {# Mes derneire reservation #}\r\n <div class="row">\r\n <div class="col-lg-12">\r\n <div class="card">\r\n <div class="card-body">\r\n <h4 class="card-title mb-3">Mes derniéres réservations</h4>\r\n \r\n <!-- Nav tabs -->\r\n \r\n <!-- Tab panes -->\r\n <div class="row">\r\n <div class="col-lg-12">\r\n <div class="card job-filter">\r\n <div class="card-body p-3">\r\n <div class="table-responsive">\r\n <table class="table align-middle table-nowrap table-hover">\r\n <thead class="table-light">\r\n <tr>\r\n <th scope="col" style="width: 100px">#</th>\r\n <th scope="col">Experience</th>\r\n <th scope="col">Date</th>\r\n <th scope="col">Détails</th>\r\n <th scope="col">Status</th>\r\n <th scope="col">Action</th>\r\n </tr>\r\n </thead>\r\n <tbody>\r\n {% for booking in app.user.bookings %}\r\n <tr>\r\n <td><img src="{{ asset(''~booking.experience.image) }}" alt="" class="avatar-sm"></td>\r\n <td>\r\n <h5 class="text-truncate font-size-14"><a href="javascript: void(0);" class="text-dark">{{ booking.experience.title }}</a></h5>\r\n <p class="text-muted mb-0">#{{ booking.experience.id }}</p>\r\n </td>\r\n <td>\r\n <p class="mb-0"><small>Le : {{ booking.datestart|date('d/M/Y') }}</small></p>\r\n <p class="mb-0"><small>Depart : {{ booking.datestart|date('d/M/Y') }}</small></p>\r\n </td>\r\n <td>\r\n <p class="mb-0">{{ booking.total }} {{ booking.currency }} </p>\r\n <p class="text-muted mb-0">#{{ booking.reference }} | {{ booking.pax }} Pax</p>\r\n </td>\r\n <td>\r\n \r\n {% if booking.status == '1' %}\r\n <span class="badge bg-success">Confimé</span>\r\n {% elseif booking.status == '2' %}\r\n <span class="badge bg-danger">Annulé</span>\r\n {% else %}\r\n <span class="badge bg-warning">En Attente</span>\r\n {% endif %}\r\n </td>\r\n <td>\r\n <ul class="list-inline font-size-20 contact-links mb-0">\r\n <li class="list-inline-item px-2">\r\n <a href="javascript: void(0);" title="Message"><i class="bx bx-edit"></i></a>\r\n </li>\r\n <li class="list-inline-item px-2">\r\n <a href="javascript: void(0);" title="Profile"><i class="bx bx-show"></i></a>\r\n </li>\r\n </ul>\r\n </td>\r\n </tr>\r\n {% endfor %}\r\n </tbody>\r\n </table>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n {% endblock %}\r\n {% block javascripts %}\r\n \r\n <script src="{{ asset('admin/libs/select2/js/select2.min.js')}}"></script>\r\n <script src="{{ asset('admin/libs/select2/js/select2.min.js')}}"></script>\r\n <script src="{{ asset('admin/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js')}}"></script>\r\n <script src="{{ asset('admin/libs/datatables.net/js/jquery.dataTables.min.js')}}"></script>\r\n <script src="{{ asset('admin/libs/datatables.net-bs4/js/dataTables.bootstrap4.min.js')}}"></script>\r\n <script src="{{ asset('admin/libs/datatables.net-responsive/js/dataTables.responsive.min.js')}}"></script>\r\n <script src="{{ asset('admin/libs/datatables.net-responsive-bs4/js/responsive.bootstrap4.min.js')}}"></script>\r\n <script src="{{ asset('admin/js/pages/crypto-orders.init.js')}}"></script>\r\n <script src="{{ asset('admin/js/app.js')}}"></script>\r\n \r\n {% endblock %} """ : { { Twig\Extension\CoreExtension::getAttribute(Environment $env, Source $source, $object, $item, array $arguments = [], $type = 'any', $isDefinedTest = false, $ignoreStrictCheck = false, $sandboxed = false, int $lineno = -1) … › |
logger | Symfony\Bridge\Monolog\Logger {#16 …9} |
Request Headers
Header | Value |
---|---|
accept | "*/*" |
accept-encoding | "gzip, br, zstd, deflate" |
cache-control | "max-age=259200" |
connection | "keep-alive" |
host | "bookoach.com" |
user-agent | "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" |
via | "1.1 squid-proxy-5b5d847c96-9t79f (squid/6.10)" |
x-forwarded-for | "10.2.30.1" |
x-php-ob-level | "0" |
Request Content
Request content not available (it was retrieved as a resource).
Response
Response Headers
Header | Value |
---|---|
cache-control | "no-cache, private" |
content-type | "text/html; charset=UTF-8" |
date | "Sun, 15 Jun 2025 03:01:40 GMT" |
x-debug-exception | "Impossible%20to%20access%20an%20attribute%20%28%22experiences%22%29%20on%20a%20null%20variable." |
x-debug-exception-file | "%2Fhome%2Fbookoachroot%2Fpublic_html%2Ftemplates%2Fadmin%2Fbooking%2Fcoach%2FmesReservation.html.twig:25" |
x-debug-token | "ca2c36" |
Cookies
Request Cookies
No request cookies
Response Cookies
No response cookies
Session 6
Session Metadata
Key | Value |
---|---|
Created | "Sun, 15 Jun 25 03:01:40 +0000" |
Last used | "Sun, 15 Jun 25 03:01:40 +0000" |
Lifetime | 0 |
Session Attributes
No session attributes
Session Usage
6
Usages
Stateless check enabled
Usage |
---|
Twig\Extension\CoreExtension:1626
[ [ "file" => "/home/bookoachroot/public_html/vendor/twig/twig/src/Extension/CoreExtension.php" "line" => 1626 "function" => "getFlashBag" "class" => "Symfony\Component\HttpFoundation\Session\Session" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/var/cache/dev/twig/35/354ce31967baf69b823a2d775285ba97.php" "line" => 48 "function" => "getAttribute" "class" => "Twig\Extension\CoreExtension" "type" => "::" ] [ "file" => "/home/bookoachroot/public_html/vendor/twig/twig/src/Template.php" "line" => 360 "function" => "doDisplay" "class" => "__TwigTemplate_68cb4e64e52760f4d13aa1ac3a11904a" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/twig/twig/src/Template.php" "line" => 335 "function" => "yield" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/twig/twig/src/TemplateWrapper.php" "line" => 38 "function" => "render" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/twig/twig/src/Extension/CoreExtension.php" "line" => 1332 "function" => "render" "class" => "Twig\TemplateWrapper" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/var/cache/dev/twig/e6/e6e0c2b0d922820741732585c82cf7da.php" "line" => 338 "function" => "include" "class" => "Twig\Extension\CoreExtension" "type" => "::" ] [ "file" => "/home/bookoachroot/public_html/vendor/twig/twig/src/Template.php" "line" => 360 "function" => "doDisplay" "class" => "__TwigTemplate_42e0af3257255205b2d07b9561e731e3" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/var/cache/dev/twig/77/77711ccd3fbb0388366741cf27c96e55.php" "line" => 56 "function" => "yield" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/twig/twig/src/Template.php" "line" => 360 "function" => "doDisplay" "class" => "__TwigTemplate_4bc89849e78c0e4030a30babb456cae2" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/twig/twig/src/Template.php" "line" => 335 "function" => "yield" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/twig/twig/src/TemplateWrapper.php" "line" => 38 "function" => "render" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/twig/twig/src/Environment.php" "line" => 305 "function" => "render" "class" => "Twig\TemplateWrapper" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/framework-bundle/Controller/AbstractController.php" "line" => 220 "function" => "render" "class" => "Twig\Environment" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/framework-bundle/Controller/AbstractController.php" "line" => 228 "function" => "renderView" "class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/src/Controller/Dashboard/Coach/CoachAccountController.php" "line" => 44 "function" => "render" "class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/http-kernel/HttpKernel.php" "line" => 163 "function" => "reservationCoach" "class" => "App\Controller\Dashboard\Coach\CoachAccountController" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/http-kernel/HttpKernel.php" "line" => 75 "function" => "handleRaw" "class" => "Symfony\Component\HttpKernel\HttpKernel" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/http-kernel/Kernel.php" "line" => 202 "function" => "handle" "class" => "Symfony\Component\HttpKernel\HttpKernel" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php" "line" => 35 "function" => "handle" "class" => "Symfony\Component\HttpKernel\Kernel" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/autoload_runtime.php" "line" => 29 "function" => "run" "class" => "Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/public/index.php" "line" => 5 "args" => [ "/home/bookoachroot/public_html/vendor/autoload_runtime.php" ] "function" => "require_once" ] ] |
Symfony\Component\HttpKernel\DataCollector\RequestDataCollector:72
[ [ "file" => "/home/bookoachroot/public_html/vendor/symfony/http-kernel/DataCollector/RequestDataCollector.php" "line" => 72 "function" => "getMetadataBag" "class" => "Symfony\Component\HttpFoundation\Session\Session" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/http-kernel/Profiler/Profiler.php" "line" => 151 "function" => "collect" "class" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/http-kernel/EventListener/ProfilerListener.php" "line" => 108 "function" => "collect" "class" => "Symfony\Component\HttpKernel\Profiler\Profiler" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/event-dispatcher/Debug/WrappedListener.php" "line" => 111 "function" => "onKernelResponse" "class" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/event-dispatcher/EventDispatcher.php" "line" => 230 "function" => "__invoke" "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/event-dispatcher/EventDispatcher.php" "line" => 59 "function" => "callListeners" "class" => "Symfony\Component\EventDispatcher\EventDispatcher" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php" "line" => 152 "function" => "dispatch" "class" => "Symfony\Component\EventDispatcher\EventDispatcher" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/http-kernel/HttpKernel.php" "line" => 196 "function" => "dispatch" "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/http-kernel/HttpKernel.php" "line" => 184 "function" => "filterResponse" "class" => "Symfony\Component\HttpKernel\HttpKernel" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/http-kernel/HttpKernel.php" "line" => 75 "function" => "handleRaw" "class" => "Symfony\Component\HttpKernel\HttpKernel" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/http-kernel/EventListener/ErrorListener.php" "line" => 91 "function" => "handle" "class" => "Symfony\Component\HttpKernel\HttpKernel" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/event-dispatcher/Debug/WrappedListener.php" "line" => 111 "function" => "onKernelException" "class" => "Symfony\Component\HttpKernel\EventListener\ErrorListener" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/event-dispatcher/EventDispatcher.php" "line" => 230 "function" => "__invoke" "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/event-dispatcher/EventDispatcher.php" "line" => 59 "function" => "callListeners" "class" => "Symfony\Component\EventDispatcher\EventDispatcher" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php" "line" => 152 "function" => "dispatch" "class" => "Symfony\Component\EventDispatcher\EventDispatcher" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/http-kernel/HttpKernel.php" "line" => 223 "function" => "dispatch" "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/http-kernel/HttpKernel.php" "line" => 86 "function" => "handleThrowable" "class" => "Symfony\Component\HttpKernel\HttpKernel" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/http-kernel/Kernel.php" "line" => 202 "function" => "handle" "class" => "Symfony\Component\HttpKernel\HttpKernel" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php" "line" => 35 "function" => "handle" "class" => "Symfony\Component\HttpKernel\Kernel" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/autoload_runtime.php" "line" => 29 "function" => "run" "class" => "Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/public/index.php" "line" => 5 "args" => [ "/home/bookoachroot/public_html/vendor/autoload_runtime.php" ] "function" => "require_once" ] ] |
Symfony\Component\HttpKernel\DataCollector\RequestDataCollector:73
[ [ "file" => "/home/bookoachroot/public_html/vendor/symfony/http-kernel/DataCollector/RequestDataCollector.php" "line" => 73 "function" => "getMetadataBag" "class" => "Symfony\Component\HttpFoundation\Session\Session" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/http-kernel/Profiler/Profiler.php" "line" => 151 "function" => "collect" "class" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/http-kernel/EventListener/ProfilerListener.php" "line" => 108 "function" => "collect" "class" => "Symfony\Component\HttpKernel\Profiler\Profiler" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/event-dispatcher/Debug/WrappedListener.php" "line" => 111 "function" => "onKernelResponse" "class" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/event-dispatcher/EventDispatcher.php" "line" => 230 "function" => "__invoke" "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/event-dispatcher/EventDispatcher.php" "line" => 59 "function" => "callListeners" "class" => "Symfony\Component\EventDispatcher\EventDispatcher" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php" "line" => 152 "function" => "dispatch" "class" => "Symfony\Component\EventDispatcher\EventDispatcher" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/http-kernel/HttpKernel.php" "line" => 196 "function" => "dispatch" "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/http-kernel/HttpKernel.php" "line" => 184 "function" => "filterResponse" "class" => "Symfony\Component\HttpKernel\HttpKernel" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/http-kernel/HttpKernel.php" "line" => 75 "function" => "handleRaw" "class" => "Symfony\Component\HttpKernel\HttpKernel" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/http-kernel/EventListener/ErrorListener.php" "line" => 91 "function" => "handle" "class" => "Symfony\Component\HttpKernel\HttpKernel" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/event-dispatcher/Debug/WrappedListener.php" "line" => 111 "function" => "onKernelException" "class" => "Symfony\Component\HttpKernel\EventListener\ErrorListener" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/event-dispatcher/EventDispatcher.php" "line" => 230 "function" => "__invoke" "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/event-dispatcher/EventDispatcher.php" "line" => 59 "function" => "callListeners" "class" => "Symfony\Component\EventDispatcher\EventDispatcher" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php" "line" => 152 "function" => "dispatch" "class" => "Symfony\Component\EventDispatcher\EventDispatcher" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/http-kernel/HttpKernel.php" "line" => 223 "function" => "dispatch" "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/http-kernel/HttpKernel.php" "line" => 86 "function" => "handleThrowable" "class" => "Symfony\Component\HttpKernel\HttpKernel" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/http-kernel/Kernel.php" "line" => 202 "function" => "handle" "class" => "Symfony\Component\HttpKernel\HttpKernel" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php" "line" => 35 "function" => "handle" "class" => "Symfony\Component\HttpKernel\Kernel" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/autoload_runtime.php" "line" => 29 "function" => "run" "class" => "Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/public/index.php" "line" => 5 "args" => [ "/home/bookoachroot/public_html/vendor/autoload_runtime.php" ] "function" => "require_once" ] ] |
Symfony\Component\HttpKernel\DataCollector\RequestDataCollector:74
[ [ "file" => "/home/bookoachroot/public_html/vendor/symfony/http-kernel/DataCollector/RequestDataCollector.php" "line" => 74 "function" => "getMetadataBag" "class" => "Symfony\Component\HttpFoundation\Session\Session" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/http-kernel/Profiler/Profiler.php" "line" => 151 "function" => "collect" "class" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/http-kernel/EventListener/ProfilerListener.php" "line" => 108 "function" => "collect" "class" => "Symfony\Component\HttpKernel\Profiler\Profiler" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/event-dispatcher/Debug/WrappedListener.php" "line" => 111 "function" => "onKernelResponse" "class" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/event-dispatcher/EventDispatcher.php" "line" => 230 "function" => "__invoke" "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/event-dispatcher/EventDispatcher.php" "line" => 59 "function" => "callListeners" "class" => "Symfony\Component\EventDispatcher\EventDispatcher" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php" "line" => 152 "function" => "dispatch" "class" => "Symfony\Component\EventDispatcher\EventDispatcher" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/http-kernel/HttpKernel.php" "line" => 196 "function" => "dispatch" "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/http-kernel/HttpKernel.php" "line" => 184 "function" => "filterResponse" "class" => "Symfony\Component\HttpKernel\HttpKernel" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/http-kernel/HttpKernel.php" "line" => 75 "function" => "handleRaw" "class" => "Symfony\Component\HttpKernel\HttpKernel" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/http-kernel/EventListener/ErrorListener.php" "line" => 91 "function" => "handle" "class" => "Symfony\Component\HttpKernel\HttpKernel" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/event-dispatcher/Debug/WrappedListener.php" "line" => 111 "function" => "onKernelException" "class" => "Symfony\Component\HttpKernel\EventListener\ErrorListener" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/event-dispatcher/EventDispatcher.php" "line" => 230 "function" => "__invoke" "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/event-dispatcher/EventDispatcher.php" "line" => 59 "function" => "callListeners" "class" => "Symfony\Component\EventDispatcher\EventDispatcher" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php" "line" => 152 "function" => "dispatch" "class" => "Symfony\Component\EventDispatcher\EventDispatcher" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/http-kernel/HttpKernel.php" "line" => 223 "function" => "dispatch" "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/http-kernel/HttpKernel.php" "line" => 86 "function" => "handleThrowable" "class" => "Symfony\Component\HttpKernel\HttpKernel" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/http-kernel/Kernel.php" "line" => 202 "function" => "handle" "class" => "Symfony\Component\HttpKernel\HttpKernel" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php" "line" => 35 "function" => "handle" "class" => "Symfony\Component\HttpKernel\Kernel" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/autoload_runtime.php" "line" => 29 "function" => "run" "class" => "Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/public/index.php" "line" => 5 "args" => [ "/home/bookoachroot/public_html/vendor/autoload_runtime.php" ] "function" => "require_once" ] ] |
Symfony\Component\HttpKernel\DataCollector\RequestDataCollector:75
[ [ "file" => "/home/bookoachroot/public_html/vendor/symfony/http-kernel/DataCollector/RequestDataCollector.php" "line" => 75 "function" => "all" "class" => "Symfony\Component\HttpFoundation\Session\Session" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/http-kernel/Profiler/Profiler.php" "line" => 151 "function" => "collect" "class" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/http-kernel/EventListener/ProfilerListener.php" "line" => 108 "function" => "collect" "class" => "Symfony\Component\HttpKernel\Profiler\Profiler" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/event-dispatcher/Debug/WrappedListener.php" "line" => 111 "function" => "onKernelResponse" "class" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/event-dispatcher/EventDispatcher.php" "line" => 230 "function" => "__invoke" "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/event-dispatcher/EventDispatcher.php" "line" => 59 "function" => "callListeners" "class" => "Symfony\Component\EventDispatcher\EventDispatcher" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php" "line" => 152 "function" => "dispatch" "class" => "Symfony\Component\EventDispatcher\EventDispatcher" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/http-kernel/HttpKernel.php" "line" => 196 "function" => "dispatch" "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/http-kernel/HttpKernel.php" "line" => 184 "function" => "filterResponse" "class" => "Symfony\Component\HttpKernel\HttpKernel" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/http-kernel/HttpKernel.php" "line" => 75 "function" => "handleRaw" "class" => "Symfony\Component\HttpKernel\HttpKernel" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/http-kernel/EventListener/ErrorListener.php" "line" => 91 "function" => "handle" "class" => "Symfony\Component\HttpKernel\HttpKernel" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/event-dispatcher/Debug/WrappedListener.php" "line" => 111 "function" => "onKernelException" "class" => "Symfony\Component\HttpKernel\EventListener\ErrorListener" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/event-dispatcher/EventDispatcher.php" "line" => 230 "function" => "__invoke" "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/event-dispatcher/EventDispatcher.php" "line" => 59 "function" => "callListeners" "class" => "Symfony\Component\EventDispatcher\EventDispatcher" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php" "line" => 152 "function" => "dispatch" "class" => "Symfony\Component\EventDispatcher\EventDispatcher" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/http-kernel/HttpKernel.php" "line" => 223 "function" => "dispatch" "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/http-kernel/HttpKernel.php" "line" => 86 "function" => "handleThrowable" "class" => "Symfony\Component\HttpKernel\HttpKernel" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/http-kernel/Kernel.php" "line" => 202 "function" => "handle" "class" => "Symfony\Component\HttpKernel\HttpKernel" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php" "line" => 35 "function" => "handle" "class" => "Symfony\Component\HttpKernel\Kernel" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/autoload_runtime.php" "line" => 29 "function" => "run" "class" => "Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/public/index.php" "line" => 5 "args" => [ "/home/bookoachroot/public_html/vendor/autoload_runtime.php" ] "function" => "require_once" ] ] |
Symfony\Component\HttpKernel\DataCollector\RequestDataCollector:76
[ [ "file" => "/home/bookoachroot/public_html/vendor/symfony/http-kernel/DataCollector/RequestDataCollector.php" "line" => 76 "function" => "getFlashBag" "class" => "Symfony\Component\HttpFoundation\Session\Session" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/http-kernel/Profiler/Profiler.php" "line" => 151 "function" => "collect" "class" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/http-kernel/EventListener/ProfilerListener.php" "line" => 108 "function" => "collect" "class" => "Symfony\Component\HttpKernel\Profiler\Profiler" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/event-dispatcher/Debug/WrappedListener.php" "line" => 111 "function" => "onKernelResponse" "class" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/event-dispatcher/EventDispatcher.php" "line" => 230 "function" => "__invoke" "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/event-dispatcher/EventDispatcher.php" "line" => 59 "function" => "callListeners" "class" => "Symfony\Component\EventDispatcher\EventDispatcher" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php" "line" => 152 "function" => "dispatch" "class" => "Symfony\Component\EventDispatcher\EventDispatcher" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/http-kernel/HttpKernel.php" "line" => 196 "function" => "dispatch" "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/http-kernel/HttpKernel.php" "line" => 184 "function" => "filterResponse" "class" => "Symfony\Component\HttpKernel\HttpKernel" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/http-kernel/HttpKernel.php" "line" => 75 "function" => "handleRaw" "class" => "Symfony\Component\HttpKernel\HttpKernel" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/http-kernel/EventListener/ErrorListener.php" "line" => 91 "function" => "handle" "class" => "Symfony\Component\HttpKernel\HttpKernel" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/event-dispatcher/Debug/WrappedListener.php" "line" => 111 "function" => "onKernelException" "class" => "Symfony\Component\HttpKernel\EventListener\ErrorListener" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/event-dispatcher/EventDispatcher.php" "line" => 230 "function" => "__invoke" "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/event-dispatcher/EventDispatcher.php" "line" => 59 "function" => "callListeners" "class" => "Symfony\Component\EventDispatcher\EventDispatcher" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php" "line" => 152 "function" => "dispatch" "class" => "Symfony\Component\EventDispatcher\EventDispatcher" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/http-kernel/HttpKernel.php" "line" => 223 "function" => "dispatch" "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/http-kernel/HttpKernel.php" "line" => 86 "function" => "handleThrowable" "class" => "Symfony\Component\HttpKernel\HttpKernel" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/http-kernel/Kernel.php" "line" => 202 "function" => "handle" "class" => "Symfony\Component\HttpKernel\HttpKernel" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php" "line" => 35 "function" => "handle" "class" => "Symfony\Component\HttpKernel\Kernel" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/vendor/autoload_runtime.php" "line" => 29 "function" => "run" "class" => "Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner" "type" => "->" ] [ "file" => "/home/bookoachroot/public_html/public/index.php" "line" => 5 "args" => [ "/home/bookoachroot/public_html/vendor/autoload_runtime.php" ] "function" => "require_once" ] ] |
Flashes
Flashes
No flash messages were created.
Server Parameters
Server Parameters
Defined in .env
Key | Value |
---|---|
APP_ENV | "dev" |
APP_SECRET | "2ca64f8d83b9e89f5f19d672841d6bb8" |
DATABASE_URL | "mysql://bookoachroot_24user_db1:Ohulge3t^RDe@127.0.0.1:3306/bookoachroot_db1_24" |
MESSENGER_TRANSPORT_DSN | "doctrine://default?auto_setup=0" |
Defined as regular env variables
Key | Value |
---|---|
APP_DEBUG | "1" |
CONTEXT_DOCUMENT_ROOT | "/usr/local/cpanel/cgi-sys/" |
CONTEXT_PREFIX | "/cgi-sys" |
DOCUMENT_ROOT | "/home/bookoachroot/public_html" |
GATEWAY_INTERFACE | "CGI/1.1" |
HTTP_ACCEPT | "*/*" |
HTTP_ACCEPT_ENCODING | "gzip, br, zstd, deflate" |
HTTP_CACHE_CONTROL | "max-age=259200" |
HTTP_CONNECTION | "keep-alive" |
HTTP_HOST | "bookoach.com" |
HTTP_USER_AGENT | "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" |
HTTP_VIA | "1.1 squid-proxy-5b5d847c96-9t79f (squid/6.10)" |
HTTP_X_FORWARDED_FOR | "10.2.30.1" |
ORIG_PATH_INFO | "/public/index.php" |
ORIG_PATH_TRANSLATED | "/home/bookoachroot/public_html/public/index.php" |
ORIG_SCRIPT_FILENAME | "/usr/local/cpanel/cgi-sys/ea-php81" |
ORIG_SCRIPT_NAME | "/cgi-sys/ea-php81" |
PATH | "/usr/local/bin:/usr/bin:/bin" |
PHP_SELF | "/public/index.php" |
QUERY_STRING | "" |
REDIRECT_HANDLER | "application/x-httpd-ea-php81" |
REDIRECT_STATUS | "200" |
REDIRECT_URL | "/public/index.php" |
REMOTE_ADDR | "216.73.216.24" |
REMOTE_PORT | "52394" |
REQUEST_METHOD | "GET" |
REQUEST_SCHEME | "http" |
REQUEST_TIME | 1749956500 |
REQUEST_TIME_FLOAT | 1749956500.4237 |
REQUEST_URI | "/en/coach/mes-reservations" |
SCRIPT_FILENAME | "/home/bookoachroot/public_html/public/index.php" |
SCRIPT_NAME | "/public/index.php" |
SCRIPT_URI | "http://bookoach.com/en/coach/mes-reservations" |
SCRIPT_URL | "/en/coach/mes-reservations" |
SERVER_ADDR | "92.205.229.182" |
SERVER_ADMIN | "webmaster@bookoach.com" |
SERVER_NAME | "bookoach.com" |
SERVER_PORT | "80" |
SERVER_PROTOCOL | "HTTP/1.1" |
SERVER_SIGNATURE | "" |
SERVER_SOFTWARE | "Apache" |
SYMFONY_DOTENV_VARS | "APP_ENV,APP_SECRET,DATABASE_URL,MESSENGER_TRANSPORT_DSN" |
TZ | "UTC" |
argc | 0 |
argv | [] |
Parent Request
Return to parent request (token = f4760f)
Key | Value |
---|---|
_controller | "App\Controller\Dashboard\Coach\CoachAccountController::reservationCoach" |
_firewall_context | "security.firewall.map.context.main" |
_locale | "en" |
_remove_csp_headers | true |
_route | "coach_reservation" |
_route_params | [ "_locale" => "en" ] |
_security_firewall_run | "_security_main" |
_stopwatch_token | "5c375e" |