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 | "2ba404" |
| exception | Twig\Error\RuntimeError {#989 #message: "Impossible to access an attribute ("id") on a null variable." #code: 0 #file: "/home/bookoachroot/public_html/templates/admin/country/edit/editDestination.html.twig" #line: 31 -lineno: 31 -name: "admin/country/edit/editDestination.html.twig" -rawMessage: "Impossible to access an attribute ("id") on a null variable." -sourcePath: "/home/bookoachroot/public_html/templates/admin/country/edit/editDestination.html.twig" -sourceCode: """ {% extends 'admin/baseAdmin.html.twig' %}\r\n {% block page_title %}Modifier Destination{% endblock %}\r\n {% block breadcump_main %}Pays{% endblock %}\r\n {% block breadcump_subtitle %}Création de destination{% endblock %}\r\n {% block menu_left_sidebar %}\r\n {% include 'include/menu/menuAdmin.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/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 %}{{"Modifier Destination"|trans }}{% endblock %} \r\n {% block content %} \r\n <div class="container-fluid">\r\n \r\n <div class="row">\r\n <div class="col-xl-12 px-0">\r\n <div class="card">\r\n <div class="card-body">\r\n <form class="p-1 " method="post" action="{{ path('edit_destination',{'id':destination.id})}}" enctype="multipart/form-data" >\r\n <form class="p-4 pt-1" id="myform1">\r\n <h5 class="text-lg font-semibold mt-5 ">Détails de destination </h5>\r\n <p class="pb-4 text-gray-700 text-sm">Ici, vous pouvez modifier et consulter la destination . </p>\r\n <div class="row mb-4">\r\n <div class="mb-3 col-md-6">\r\n <p for="" class="form-label font-semibold ">Pays</p>\r\n <select id="country" name="country" class="select border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-3.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500 py-3">\r\n {% for country in countries %}\r\n <option {% if country.id == destination.country.id %}selected{% endif %} value="{{ country.id }}">{{ country.name }}</option>\r\n {% endfor %} \r\n </select>\r\n \r\n </div>\r\n <div class="col-md-6 mb-3">\r\n <p for="" class="form-label font-semibold ">Région</p>\r\n <div class="form-floating pe-0 " id="city">\r\n <input type="text" name="name" value="{{destination.name}}" class="block sm:text-sm form-control p-2.5 rounded-lg w-full mt-0" id="floatingInput" placeholder="lieu">\r\n <label class="mb-2 ps-4 text-sm font-medium text-gray-900 dark:text-white" for="floatingInput">Destination, ville ou lieu de l'expérience </label>\r\n </div>\r\n </div>\r\n \r\n <div class=" col-md-6 mb-3 text-base">\r\n <p for="" class="form-label font-semibold ">Type de destination </p>\r\n <select placeholder="choisir les sous catégories" name="typedestination" class="text-sm select" data-allow-clear="1">\r\n <option value="Ville" {% if 'Ville' in destination.typedestination %}selected{% endif %}>Ville</option>\r\n <option value="Destination" {% if 'Destination' in destination.typedestination %}selected{% endif %}>Destination</option>\r\n <option value="Desert" {% if 'Desert' in destination.typedestination %}selected{% endif %}>Desert</option>\r\n <option value="Montagne" {% if 'Montagne' in destination.typedestination %}selected{% endif %}>Montagne</option>\r\n <option value="Réserve naturelle" {% if 'Réserve naturelle' in destination.typedestination %}selected{% endif %}>Réserve naturelle</option>\r\n </select>\r\n \r\n </div>\r\n \r\n \r\n <div class=" col-md-6 col-sm-12 ">\r\n <p for="" class="form-label font-semibold ">Ordre de destination </p>\r\n \r\n <div class="form-floating ">\r\n <input value="{{ destination.ordre }}" type="number" name="ordre"\r\n class="form-control sm:text-sm rounded-lg focus:ring-primary-600 focus:border-primary-600 block w-full p-2.5 ps-5"\r\n id="nom" placeholder="">\r\n <label class="mb-2 ms-2 ps-5 text-sm font-medium text-gray-900 " for="nom">ordre destination </label>\r\n <div class="absolute" style="top: 11px;left: 17px;color: #a1a1a1;">\r\n <i class="bx bx-sort-a-z" style="font-size: 36px;"></i>\r\n </div>\r\n </div>\r\n \r\n </div>\r\n </div>\r\n \r\n <div class="divider mt-16"></div>\r\n \r\n <div class="flex mt-4 row">\r\n <div class="col-md-6">\r\n <p class="text-xs text-gray-900 mb-2">En cliquant sur le bouton de Enregistrer, vous mettez à jours les informations envoyé dans ce formulaire </p>\r\n </div>\r\n <div class="col-md flex justify-end">\r\n <button type="reset" style=" color: #ffaa00; border: 1px solid;" class="font-medium h-10 py-2.5 rounded-lg text-center text-sm w-40 me-2">\r\n Annuler</button>\r\n <button type="submit" style=" background: #ffaa00;" class="font-medium hover:bg-primary-700 h-10 py-2.5 rounded-lg text-center text-sm text-white w-40">Enregistrer</button>\r\n </div>\r\n </div>\r\n </form>\r\n </div>\r\n <!-- end card body -->\r\n </div>\r\n <!-- end card -->\r\n </div>\r\n <!-- end col -->\r\n \r\n \r\n <!-- end col -->\r\n </div>\r\n \r\n \r\n </div> <!-- container-fluid -->\r\n \r\n \r\n <!-- End main -->\r\n {% endblock %}\r\n \r\n {% block javascripts %}\r\n <!-- apexcharts -->\r\n <script src="{{ asset('admin/libs/parsleyjs/parsley.min.js')}}"></script>\r\n <script src="{{ asset('admin/libs/select2/js/select2.min.js')}}"></script>\r\n <script src="{{ asset('admin/libs/bootstrap-maxlength/bootstrap-maxlength.min.js')}}"></script>\r\n \r\n <script src="{{ asset('admin/js/pages/form-validation.init.js')}}"></script>\r\n \r\n <script src="{{ asset('admin/js/app.js')}}"></script>\r\n <script>\r\n /*\r\n Template Name: Skote - Admin & Dashboard Template\r\n Author: Themesbrand\r\n Website: https://themesbrand.com/\r\n Contact: themesbrand@gmail.com\r\n File: Form Advanced Js File\r\n */\r\n \r\n !function ($) {\r\n "use strict";\r\n \r\n var AdvancedForm = function () { };\r\n \r\n AdvancedForm.prototype.init = function () {\r\n \r\n // Select2\r\n if ($('.select2').length > 0) {\r\n $(".select2").select2();\r\n }\r\n if ($('.select2-tags').length > 0) {\r\n $(".select2-tags").select2({\r\n tags: true\r\n });\r\n }\r\n if ($('.select2-limiting-3').length > 0) {\r\n $(".select2-limiting-3").select2({\r\n maximumSelectionLength: 3\r\n });\r\n }\r\n \r\n //Bootstrap-MaxLength\r\n $('input#defaultconfig').maxlength({\r\n warningClass: "badge bg-info",\r\n limitReachedClass: "badge bg-warning"\r\n });\r\n \r\n $('input#thresholdconfig').maxlength({\r\n threshold: 20,\r\n warningClass: "badge bg-info",\r\n limitReachedClass: "badge bg-warning"\r\n });\r\n \r\n $('input#moreoptions').maxlength({\r\n alwaysShow: true,\r\n warningClass: "badge bg-success",\r\n limitReachedClass: "badge bg-danger"\r\n });\r\n \r\n $('input#alloptions').maxlength({\r\n alwaysShow: true,\r\n warningClass: "badge bg-success",\r\n limitReachedClass: "badge bg-danger",\r\n separator: ' out of ',\r\n preText: 'You typed ',\r\n postText: ' chars available.',\r\n validate: true\r\n });\r\n \r\n $('textarea#textarea').maxlength({\r\n alwaysShow: true,\r\n warningClass: "badge bg-info",\r\n limitReachedClass: "badge bg-warning"\r\n });\r\n \r\n $('input#placement').maxlength({\r\n alwaysShow: true,\r\n placement: 'top-left',\r\n warningClass: "badge bg-info",\r\n limitReachedClass: "badge bg-warning"\r\n });\r\n \r\n },\r\n //init\r\n $.AdvancedForm = new AdvancedForm, $.AdvancedForm.Constructor = AdvancedForm\r\n }(window.jQuery),\r\n //Datepicker\r\n function ($) {\r\n "use strict";\r\n $.AdvancedForm.init();\r\n }(window.jQuery);\r\n \r\n </script>\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, deflate" |
| from | "gptbot(at)openai.com" |
| host | "bookoach.com" |
| user-agent | "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)" |
| x-https | "1" |
| x-openai-host-hash | "307007617" |
| 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 | "Sat, 08 Nov 2025 00:31:11 GMT" |
| x-debug-exception | "Impossible%20to%20access%20an%20attribute%20%28%22id%22%29%20on%20a%20null%20variable." |
| x-debug-exception-file | "%2Fhome%2Fbookoachroot%2Fpublic_html%2Ftemplates%2Fadmin%2Fcountry%2Fedit%2FeditDestination.html.twig:31" |
| x-debug-token | "842df6" |
Cookies
Request Cookies
No request cookies
Response Cookies
No response cookies
Session 6
Session Metadata
| Key | Value |
|---|---|
| Created | "Sat, 08 Nov 25 00:31:11 +0000" |
| Last used | "Sat, 08 Nov 25 00:31:11 +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/64/6402158d1b6bb00239af014a7f73a348.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_a13915ca6dbe756701384d7188799866"
"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/Admin/CountryController.php"
"line" => 172
"function" => "render"
"class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController"
"type" => "->"
]
[
"file" => "/home/bookoachroot/public_html/vendor/symfony/http-kernel/HttpKernel.php"
"line" => 163
"function" => "editDestination"
"class" => "App\Controller\Dashboard\Admin\CountryController"
"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" |
| HTTPS | "on" |
| HTTP_ACCEPT | "*/*" |
| HTTP_ACCEPT_ENCODING | "gzip, br, deflate" |
| HTTP_FROM | "gptbot(at)openai.com" |
| HTTP_HOST | "bookoach.com" |
| HTTP_USER_AGENT | "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)" |
| HTTP_X_HTTPS | "1" |
| HTTP_X_OPENAI_HOST_HASH | "307007617" |
| 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 | "74.7.227.188" |
| REMOTE_PORT | "35864" |
| REQUEST_METHOD | "GET" |
| REQUEST_SCHEME | "https" |
| REQUEST_TIME | 1762561870 |
| REQUEST_TIME_FLOAT | 1762561870.9787 |
| REQUEST_URI | "/en/admin/country/edit-destination-4" |
| SCRIPT_FILENAME | "/home/bookoachroot/public_html/public/index.php" |
| SCRIPT_NAME | "/public/index.php" |
| SCRIPT_URI | "https://bookoach.com/en/admin/country/edit-destination-4" |
| SCRIPT_URL | "/en/admin/country/edit-destination-4" |
| SERVER_ADDR | "92.205.229.182" |
| SERVER_ADMIN | "webmaster@bookoach.com" |
| SERVER_NAME | "bookoach.com" |
| SERVER_PORT | "443" |
| SERVER_PROTOCOL | "HTTP/2.0" |
| SERVER_SIGNATURE | "" |
| SERVER_SOFTWARE | "Apache" |
| SSL_TLS_SNI | "bookoach.com" |
| SYMFONY_DOTENV_VARS | "APP_ENV,APP_SECRET,DATABASE_URL,MESSENGER_TRANSPORT_DSN" |
| TZ | "UTC" |
| argc | 0 |
| argv | [] |
Parent Request
Return to parent request (token = e7fa37)
| Key | Value |
|---|---|
| _controller | "App\Controller\Dashboard\Admin\CountryController::editDestination" |
| _firewall_context | "security.firewall.map.context.main" |
| _locale | "en" |
| _remove_csp_headers | true |
| _route | "edit_destination" |
| _route_params | [ "_locale" => "en" "id" => "4" ] |
| _security_firewall_run | "_security_main" |
| _stopwatch_token | "0b5868" |
| id | "4" |