ErrorController
Request
GET Parameters
None
POST Parameters
None
Uploaded Files
None
Request Attributes
| Key | Value |
|---|---|
| _controller | "error_controller" |
| _stopwatch_token | "b518b1" |
| exception | Twig\Error\RuntimeError {#899 #message: "Variable "formResetPassword" does not exist." #code: 0 #file: "C:\inetpub\wwwroot\kinkyclub.fr\templates\_blocks\modals.html.twig" #line: 15 -lineno: 15 -name: "_blocks/modals.html.twig" -rawMessage: "Variable "formResetPassword" does not exist." -sourcePath: "C:\inetpub\wwwroot\kinkyclub.fr\templates\_blocks\modals.html.twig" -sourceCode: """ {% block modals %}\r\n \r\n {% if not app.user %}\r\n {# modal mdp oublier #}\r\n <div class="modal fade" id="resetPassword" tabindex="-1" aria-labelledby="resetPasswordLabel" aria-hidden="true">\r\n <div class="modal-dialog modal-dialog-centered modal-dialog-scrollable">\r\n <div class="modal-content">\r\n <div class="modal-header">\r\n <h5 class="modal-title" id="resetPasswordLabel">{% trans %}modal.loginRegister.resetMdp{% endtrans %}</h5>\r\n <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>\r\n </div>\r\n <div class="modal-body">\r\n <div class="alert alert-danger divAlert" id="alertDivresetPassword"></div>\r\n <div class="alert alert-success divAlert" id="successDivresetPassword"></div>\r\n {{ form_start(formResetPassword, {action: null}) }}\r\n {{ form_end(formResetPassword) }}\r\n </div>\r\n <div class="modal-footer">\r\n <span class="">* {% trans %}modal.module.obligatoire{% endtrans %}</span>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n \r\n <script>\r\n grecaptcha.ready(function () {\r\n grecaptcha.execute('6LfXb3grAAAAAJ4rXShVi4CMIeN2YZKTT7K7EONE', { action: 'reset' }).then(function (token) {\r\n document.getElementById('reset_password_gRecaptchaReset').value = token;\r\n });\r\n });\r\n </script>\r\n \r\n {# modal register #}\r\n <div class="modal fade" id="register" tabindex="-1" aria-labelledby="formInfoUserLabel" aria-hidden="true">\r\n <div class="modal-dialog modal-dialog-centered modal-dialog-scrollable">\r\n <div class="modal-content">\r\n <div class="modal-header">\r\n <h5 class="modal-title" id="formInfoUserLabel">{% trans %}modal.infoUse.title{% endtrans %}</h5>\r\n <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>\r\n </div>\r\n <div class="modal-body">\r\n {% for message in app.flashes('error') %}\r\n <div class="alert alert-danger">{{ message }}</div>\r\n {% endfor %}\r\n \r\n <div id="alertInscriptionErreur" class="alert alert-danger"></div>\r\n \r\n \r\n {{ form_start(formLogin) }}\r\n \r\n {{ form_row(formLogin.email) }}\r\n {{ form_row(formLogin.name) }}\r\n {{ form_row(formLogin.firtName) }}\r\n {{ form_row(formLogin.pseudo) }}\r\n \r\n {{ form_row(formLogin.password) }}\r\n <div class="password-strength-wrapper mt-1 mb-2" style="height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px;">\r\n <div id="passwordStrengthBar"\r\n class="password-strength-bar"\r\n style="height: 100%; width: 0%; border-radius: 3px; transition: width 0.3s ease;"></div>\r\n </div>\r\n <div id="passwordCriteria" class="row mt-2 mb-2 d-none small" style="transition: all 0.3s ease;">\r\n <div class="col-6">\r\n <ul class="list-unstyled mb-0">\r\n <li data-check="length">{% trans %} form.criteria.length {% endtrans %}</li>\r\n <li data-check="upper">{% trans %} form.criteria.upper {% endtrans %}</li>\r\n <li data-check="lower">{% trans %} form.criteria.lower {% endtrans %}</li>\r\n </ul>\r\n </div>\r\n <div class="col-6">\r\n <ul class="list-unstyled mb-0">\r\n <li data-check="digit">{% trans %} form.criteria.digit {% endtrans %}</li>\r\n <li data-check="special">{% trans %} form.criteria.special {% endtrans %}</li>\r\n </ul>\r\n </div>\r\n </div>\r\n \r\n {{ form_row(formLogin.passwordTwo) }}\r\n \r\n <div id="passwordMatchInfo" class="small mt-1 mb-2"></div>\r\n \r\n {{ form_row(formLogin.gRecaptchaResponse) }}\r\n {{ form_row(formLogin.submit) }}\r\n \r\n {{ form_end(formLogin) }}\r\n \r\n \r\n </div>\r\n <div class="modal-footer">\r\n <span class="">* {% trans %}modal.module.obligatoire{% endtrans %}</span>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n \r\n <script>\r\n grecaptcha.ready(function () {\r\n grecaptcha.execute('6LfXb3grAAAAAJ4rXShVi4CMIeN2YZKTT7K7EONE', { action: 'register' }).then(function (token) {\r\n document.getElementById('register_gRecaptchaResponse').value = token;\r\n });\r\n });\r\n \r\n const passwordInput = document.querySelector('#register_password');\r\n const strengthBar = document.getElementById('passwordStrengthBar');\r\n \r\n document.addEventListener('DOMContentLoaded', function () {\r\n \r\n \r\n passwordInput.addEventListener('focus', function () {\r\n document.getElementById('passwordCriteria').classList.remove('d-none');\r\n });\r\n \r\n if (!passwordInput || !strengthBar) return;\r\n \r\n passwordInput.addEventListener('input', function () {\r\n const pwd = passwordInput.value;\r\n const score = getPasswordScore(pwd);\r\n \r\n // Reset classes\r\n strengthBar.className = 'password-strength-bar';\r\n \r\n // Mise à jour style + largeur\r\n strengthBar.style.width = (score * 20) + '%';\r\n \r\n if (score <= 1) {\r\n strengthBar.classList.add('bg-weak');\r\n } else if (score === 2 || score === 3) {\r\n strengthBar.classList.add('bg-medium');\r\n } else if (score >= 4) {\r\n strengthBar.classList.add('bg-strong');\r\n }\r\n updateCriteriaDisplay(pwd);\r\n \r\n });\r\n \r\n function getPasswordScore(password) {\r\n let score = 0;\r\n if (password.length >= 8) score++;\r\n if (/[A-Z]/.test(password)) score++;\r\n if (/[a-z]/.test(password)) score++;\r\n if (/[0-9]/.test(password)) score++;\r\n if (/[\W]/.test(password)) score++;\r\n return score;\r\n }\r\n });\r\n \r\n function updateCriteriaDisplay(password) {\r\n const criteriaList = document.getElementById('passwordCriteria');\r\n \r\n const tests = {\r\n length: password.length >= 8,\r\n upper: /[A-Z]/.test(password),\r\n lower: /[a-z]/.test(password),\r\n digit: /[0-9]/.test(password),\r\n special: /[\W]/.test(password),\r\n };\r\n \r\n Object.keys(tests).forEach(key => {\r\n const li = criteriaList.querySelector(`[data-check="${key}"]`);\r\n if (!li) return;\r\n \r\n if (tests[key]) {\r\n li.classList.add('hidden');\r\n } else {\r\n li.classList.remove('hidden');\r\n }\r\n });\r\n }\r\n \r\n \r\n const matchInfo = document.getElementById('passwordMatchInfo');\r\n const passwordTwoInput = document.querySelector('#register_passwordTwo');\r\n \r\n function checkPasswordMatch() {\r\n const pwd1 = passwordInput.value;\r\n const pwd2 = passwordTwoInput.value;\r\n \r\n if (!pwd1 || !pwd2) {\r\n matchInfo.textContent = '';\r\n return;\r\n }\r\n \r\n if (pwd1 === pwd2) {\r\n matchInfo.textContent = '{% trans %}form.criteria.notCorres{% endtrans %}';\r\n matchInfo.classList.remove('text-danger');\r\n matchInfo.classList.add('text-success');\r\n } else {\r\n matchInfo.textContent = '{% trans %}form.criteria.corres{% endtrans %}';\r\n matchInfo.classList.remove('text-success');\r\n matchInfo.classList.add('text-danger');\r\n }\r\n }\r\n \r\n passwordInput.addEventListener('input', checkPasswordMatch);\r\n passwordTwoInput.addEventListener('input', checkPasswordMatch);\r\n \r\n \r\n </script>\r\n \r\n {% endif %}\r\n \r\n \r\n \r\n \r\n {% endblock %} """ : { { __TwigTemplate_b12b404850dc08a6992ada0137963626->{closure} … › |
| logger | Symfony\Bridge\Monolog\Processor\DebugProcessor {#131 -records: [ 2 => [ [ "timestamp" => 1769105333 "timestamp_rfc3339" => "2026-01-22T19:08:53.960+01:00" "message" => "Matched route "{route}"." "priority" => 200 "priorityName" => "INFO" "context" => [ "route" => "app_about" "route_parameters" => [ "_route" => "app_about" "_controller" => "App\Controller\StaticPageController::about" "_locale" => "fr" ] "request_uri" => "https://kinkyclub.e-world-france.fr/a-propos" "method" => "GET" ] "channel" => "request" ] [ "timestamp" => 1769105333 "timestamp_rfc3339" => "2026-01-22T19:08:53.979+01:00" "message" => "Checking for authenticator support." "priority" => 100 "priorityName" => "DEBUG" "context" => [ "firewall_name" => "main" "authenticators" => 1 ] "channel" => "security" ] [ "timestamp" => 1769105333 "timestamp_rfc3339" => "2026-01-22T19:08:53.979+01:00" "message" => "Checking support on authenticator." "priority" => 100 "priorityName" => "DEBUG" "context" => [ "firewall_name" => "main" "authenticator" => "Symfony\Component\Security\Http\Authenticator\Debug\TraceableAuthenticator" ] "channel" => "security" ] [ "timestamp" => 1769105333 "timestamp_rfc3339" => "2026-01-22T19:08:53.979+01:00" "message" => "Authenticator does not support the request." "priority" => 100 "priorityName" => "DEBUG" "context" => [ "firewall_name" => "main" "authenticator" => "Symfony\Component\Security\Http\Authenticator\Debug\TraceableAuthenticator" ] "channel" => "security" ] [ "timestamp" => 1769105333 "timestamp_rfc3339" => "2026-01-22T19:08:53.979+01:00" "message" => "Notified event "{event}" to listener "{listener}"." "priority" => 100 "priorityName" => "DEBUG" "context" => [ "event" => "kernel.request" "listener" => "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure" ] "channel" => "event" ] [ "timestamp" => 1769105333 "timestamp_rfc3339" => "2026-01-22T19:08:53.979+01:00" "message" => "Notified event "{event}" to listener "{listener}"." "priority" => 100 "priorityName" => "DEBUG" "context" => [ "event" => "kernel.request" "listener" => "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest" ] "channel" => "event" ] [ "timestamp" => 1769105333 "timestamp_rfc3339" => "2026-01-22T19:08:53.979+01:00" "message" => "Notified event "{event}" to listener "{listener}"." "priority" => 100 "priorityName" => "DEBUG" "context" => [ "event" => "kernel.request" "listener" => "Symfony\Bridge\Doctrine\Middleware\IdleConnection\Listener::onKernelRequest" ] "channel" => "event" ] [ "timestamp" => 1769105333 "timestamp_rfc3339" => "2026-01-22T19:08:53.979+01:00" "message" => "Notified event "{event}" to listener "{listener}"." "priority" => 100 "priorityName" => "DEBUG" "context" => [ "event" => "kernel.request" "listener" => "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest" ] "channel" => "event" ] [ "timestamp" => 1769105333 "timestamp_rfc3339" => "2026-01-22T19:08:53.979+01:00" "message" => "Notified event "{event}" to listener "{listener}"." "priority" => 100 "priorityName" => "DEBUG" "context" => [ "event" => "kernel.request" "listener" => "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale" ] "channel" => "event" ] [ "timestamp" => 1769105333 "timestamp_rfc3339" => "2026-01-22T19:08:53.979+01:00" "message" => "Notified event "{event}" to listener "{listener}"." "priority" => 100 "priorityName" => "DEBUG" "context" => [ "event" => "kernel.request" "listener" => "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelRequest" ] "channel" => "event" ] [ "timestamp" => 1769105333 "timestamp_rfc3339" => "2026-01-22T19:08:53.979+01:00" "message" => "Notified event "{event}" to listener "{listener}"." "priority" => 100 "priorityName" => "DEBUG" "context" => [ "event" => "kernel.request" "listener" => "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest" ] "channel" => "event" ] [ "timestamp" => 1769105333 "timestamp_rfc3339" => "2026-01-22T19:08:53.979+01:00" "message" => "Notified event "{event}" to listener "{listener}"." "priority" => 100 "priorityName" => "DEBUG" "context" => [ "event" => "kernel.request" "listener" => "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest" ] "channel" => "event" ] [ "timestamp" => 1769105333 "timestamp_rfc3339" => "2026-01-22T19:08:53.979+01:00" "message" => "Notified event "{event}" to listener "{listener}"." "priority" => 100 "priorityName" => "DEBUG" "context" => [ "event" => "kernel.request" "listener" => "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest" ] "channel" => "event" ] [ "timestamp" => 1769105333 "timestamp_rfc3339" => "2026-01-22T19:08:53.979+01:00" "message" => "Notified event "{event}" to listener "{listener}"." "priority" => 100 "priorityName" => "DEBUG" "context" => [ "event" => "kernel.request" "listener" => "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator" ] "channel" => "event" ] [ "timestamp" => 1769105333 "timestamp_rfc3339" => "2026-01-22T19:08:53.979+01:00" "message" => "Notified event "{event}" to listener "{listener}"." "priority" => 100 "priorityName" => "DEBUG" "context" => [ "event" => "kernel.request" "listener" => "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest" ] "channel" => "event" ] [ "timestamp" => 1769105333 "timestamp_rfc3339" => "2026-01-22T19:08:53.982+01:00" "message" => "Notified event "{event}" to listener "{listener}"." "priority" => 100 "priorityName" => "DEBUG" "context" => [ "event" => "kernel.controller" "listener" => "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController" ] "channel" => "event" ] [ "timestamp" => 1769105333 "timestamp_rfc3339" => "2026-01-22T19:08:53.982+01:00" "message" => "Notified event "{event}" to listener "{listener}"." "priority" => 100 "priorityName" => "DEBUG" "context" => [ "event" => "kernel.controller" "listener" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController" ] "channel" => "event" ] [ "timestamp" => 1769105333 "timestamp_rfc3339" => "2026-01-22T19:08:53.984+01:00" "message" => "Notified event "{event}" to listener "{listener}"." "priority" => 100 "priorityName" => "DEBUG" "context" => [ "event" => "kernel.controller_arguments" "listener" => "Symfony\Component\Security\Http\EventListener\IsCsrfTokenValidAttributeListener::onKernelControllerArguments" ] "channel" => "event" ] [ "timestamp" => 1769105333 "timestamp_rfc3339" => "2026-01-22T19:08:53.984+01:00" "message" => "Notified event "{event}" to listener "{listener}"." "priority" => 100 "priorityName" => "DEBUG" "context" => [ "event" => "kernel.controller_arguments" "listener" => "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments" ] "channel" => "event" ] [ "timestamp" => 1769105333 "timestamp_rfc3339" => "2026-01-22T19:08:53.984+01:00" "message" => "Notified event "{event}" to listener "{listener}"." "priority" => 100 "priorityName" => "DEBUG" "context" => [ "event" => "kernel.controller_arguments" "listener" => "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments" ] "channel" => "event" ] [ "timestamp" => 1769105333 "timestamp_rfc3339" => "2026-01-22T19:08:53.984+01:00" "message" => "Notified event "{event}" to listener "{listener}"." "priority" => 100 "priorityName" => "DEBUG" "context" => [ "event" => "kernel.controller_arguments" "listener" => "ContainerOk5UKm1\RequestPayloadValueResolverGhost01ca9cc::onKernelControllerArguments" ] "channel" => "event" ] [ "timestamp" => 1769105333 "timestamp_rfc3339" => "2026-01-22T19:08:53.984+01:00" "message" => "Notified event "{event}" to listener "{listener}"." "priority" => 100 "priorityName" => "DEBUG" "context" => [ "event" => "kernel.controller_arguments" "listener" => "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments" ] "channel" => "event" ] [ "timestamp" => 1769105333 "timestamp_rfc3339" => "2026-01-22T19:08:53.992+01:00" "message" => "User Deprecated: Version detection logic for MySQL will change in DBAL 4. Please specify the version as the server reports it, e.g. "8.0.31" instead of "8". (AbstractMySQLDriver.php:89 called by AbstractDriverMiddleware.php:68, https://github.com/doctrine/dbal/pull/5779, package doctrine/orm)" "priority" => 200 "priorityName" => "INFO" "context" => [ "exception" => ErrorException {#739 #message: "User Deprecated: Version detection logic for MySQL will change in DBAL 4. Please specify the version as the server reports it, e.g. "8.0.31" instead of "8". (AbstractMySQLDriver.php:89 called by AbstractDriverMiddleware.php:68, https://github.com/doctrine/dbal/pull/5779, package doctrine/orm)" #code: 0 #file: "C:\inetpub\wwwroot\kinkyclub.fr\vendor\doctrine\deprecations\src\Deprecation.php" #line: 208 #severity: E_USER_DEPRECATED : { { Doctrine\Deprecations\Deprecation::delegateTriggerToBackend(string $message, array $backtrace, string $link, string $package): void … › |
Request Headers
| Header | Value |
|---|---|
| accept | "*/*" |
| accept-encoding | "gzip, br, zstd, deflate" |
| connection | "close" |
| content-length | "0" |
| host | "kinkyclub.e-world-france.fr" |
| user-agent | "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" |
| x-original-url | "/a-propos" |
| x-php-ob-level | "1" |
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 | "Thu, 22 Jan 2026 18:08:54 GMT" |
| vary | "Accept" |
| x-debug-exception | "Variable%20%22formResetPassword%22%20does%20not%20exist." |
| x-debug-exception-file | "C%3A%5Cinetpub%5Cwwwroot%5Ckinkyclub.fr%5Ctemplates%5C_blocks%5Cmodals.html.twig:15" |
| x-debug-token | "1184ec" |
Cookies
Request Cookies
No request cookies
Response Cookies
No response cookies
Session 7
Session Metadata
| Key | Value |
|---|---|
| Created | "Thu, 22 Jan 26 19:08:53 +0100" |
| Last used | "Thu, 22 Jan 26 19:08:53 +0100" |
| Lifetime | 0 |
Session Attributes
No session attributes
Session Usage
7
Usages
Stateless check enabled
| Usage |
|---|
App\Security\AuthenticationEntryPoint:28
[
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\src\Security\AuthenticationEntryPoint.php"
"line" => 28
"function" => "start"
"class" => "Symfony\Component\HttpFoundation\Session\Session"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\var\cache\dev\ContainerOk5UKm1\getSecurity_Firewall_Map_Context_MainService.php"
"line" => 43
"function" => "__construct"
"class" => "App\Security\AuthenticationEntryPoint"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\var\cache\dev\ContainerOk5UKm1\App_KernelDevDebugContainer.php"
"line" => 554
"function" => "do"
"class" => "ContainerOk5UKm1\getSecurity_Firewall_Map_Context_MainService"
"type" => "::"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\dependency-injection\Container.php"
"line" => 391
"function" => "load"
"class" => "ContainerOk5UKm1\App_KernelDevDebugContainer"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\dependency-injection\Argument\ServiceLocator.php"
"line" => 36
"function" => "getService"
"class" => "Symfony\Component\DependencyInjection\Container"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\security-bundle\Security\FirewallMap.php"
"line" => 66
"function" => "get"
"class" => "Symfony\Component\DependencyInjection\Argument\ServiceLocator"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\security-bundle\Security\FirewallMap.php"
"line" => 46
"function" => "getFirewallContext"
"class" => "Symfony\Bundle\SecurityBundle\Security\FirewallMap"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\security-bundle\EventListener\FirewallListener.php"
"line" => 42
"function" => "getFirewallConfig"
"class" => "Symfony\Bundle\SecurityBundle\Security\FirewallMap"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\event-dispatcher\Debug\WrappedListener.php"
"line" => 115
"function" => "configureLogoutUrlGenerator"
"class" => "Symfony\Bundle\SecurityBundle\EventListener\FirewallListener"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\event-dispatcher\EventDispatcher.php"
"line" => 206
"function" => "__invoke"
"class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\event-dispatcher\EventDispatcher.php"
"line" => 56
"function" => "callListeners"
"class" => "Symfony\Component\EventDispatcher\EventDispatcher"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\event-dispatcher\Debug\TraceableEventDispatcher.php"
"line" => 122
"function" => "dispatch"
"class" => "Symfony\Component\EventDispatcher\EventDispatcher"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\http-kernel\HttpKernel.php"
"line" => 159
"function" => "dispatch"
"class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\http-kernel\HttpKernel.php"
"line" => 76
"function" => "handleRaw"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\http-kernel\Kernel.php"
"line" => 182
"function" => "handle"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\runtime\Runner\Symfony\HttpKernelRunner.php"
"line" => 35
"function" => "handle"
"class" => "Symfony\Component\HttpKernel\Kernel"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\autoload_runtime.php"
"line" => 29
"function" => "run"
"class" => "Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\public\index.php"
"line" => 5
"args" => [
"C:\inetpub\wwwroot\kinkyclub.fr\vendor\autoload_runtime.php"
]
"function" => "require_once"
]
]
|
Symfony\Component\Security\Core\Authentication\Token\Storage\UsageTrackingTokenStorage:39
[
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\security-core\Authentication\Token\Storage\UsageTrackingTokenStorage.php"
"line" => 39
"function" => "getMetadataBag"
"class" => "Symfony\Component\HttpFoundation\Session\Session"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\twig-bridge\AppVariable.php"
"line" => 92
"function" => "getToken"
"class" => "Symfony\Component\Security\Core\Authentication\Token\Storage\UsageTrackingTokenStorage"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\twig\twig\src\Extension\CoreExtension.php"
"line" => 1861
"function" => "getUser"
"class" => "Symfony\Bridge\Twig\AppVariable"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\var\cache\dev\twig\a6\a61df74b0a15fcf34680ddacf453ef2e.php"
"line" => 75
"function" => "getAttribute"
"class" => "Twig\Extension\CoreExtension"
"type" => "::"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\twig\twig\src\Template.php"
"line" => 431
"function" => "block_modals"
"class" => "__TwigTemplate_b12b404850dc08a6992ada0137963626"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\var\cache\dev\twig\a8\a82d90636a0e256626cc9a85206f9fb2.php"
"line" => 232
"function" => "yieldBlock"
"class" => "Twig\Template"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\twig\twig\src\Template.php"
"line" => 387
"function" => "doDisplay"
"class" => "__TwigTemplate_2c2f5f269a7bb318bcff3646940fc359"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\var\cache\dev\twig\c3\c36fe31d2e94e7ee40384e1f5ce98dee.php"
"line" => 55
"function" => "yield"
"class" => "Twig\Template"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\twig\twig\src\Template.php"
"line" => 387
"function" => "doDisplay"
"class" => "__TwigTemplate_9714fad6b42bfc64b95e7251188824b8"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\twig\twig\src\Template.php"
"line" => 343
"function" => "yield"
"class" => "Twig\Template"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\twig\twig\src\Template.php"
"line" => 358
"function" => "display"
"class" => "Twig\Template"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\twig\twig\src\TemplateWrapper.php"
"line" => 35
"function" => "render"
"class" => "Twig\Template"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\twig\twig\src\Environment.php"
"line" => 320
"function" => "render"
"class" => "Twig\TemplateWrapper"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\framework-bundle\Controller\AbstractController.php"
"line" => 431
"function" => "render"
"class" => "Twig\Environment"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\framework-bundle\Controller\AbstractController.php"
"line" => 436
"function" => "doRenderView"
"class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\framework-bundle\Controller\AbstractController.php"
"line" => 250
"function" => "doRender"
"class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\src\Controller\StaticPageController.php"
"line" => 14
"function" => "render"
"class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\http-kernel\HttpKernel.php"
"line" => 183
"function" => "about"
"class" => "App\Controller\StaticPageController"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\http-kernel\HttpKernel.php"
"line" => 76
"function" => "handleRaw"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\http-kernel\Kernel.php"
"line" => 182
"function" => "handle"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\runtime\Runner\Symfony\HttpKernelRunner.php"
"line" => 35
"function" => "handle"
"class" => "Symfony\Component\HttpKernel\Kernel"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\autoload_runtime.php"
"line" => 29
"function" => "run"
"class" => "Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\public\index.php"
"line" => 5
"args" => [
"C:\inetpub\wwwroot\kinkyclub.fr\vendor\autoload_runtime.php"
]
"function" => "require_once"
]
]
|
Symfony\Component\HttpKernel\DataCollector\RequestDataCollector:68
[
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\http-kernel\DataCollector\RequestDataCollector.php"
"line" => 68
"function" => "getMetadataBag"
"class" => "Symfony\Component\HttpFoundation\Session\Session"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\http-kernel\Profiler\Profiler.php"
"line" => 158
"function" => "collect"
"class" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\http-kernel\EventListener\ProfilerListener.php"
"line" => 102
"function" => "collect"
"class" => "Symfony\Component\HttpKernel\Profiler\Profiler"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\event-dispatcher\Debug\WrappedListener.php"
"line" => 115
"function" => "onKernelResponse"
"class" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\event-dispatcher\EventDispatcher.php"
"line" => 206
"function" => "__invoke"
"class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\event-dispatcher\EventDispatcher.php"
"line" => 56
"function" => "callListeners"
"class" => "Symfony\Component\EventDispatcher\EventDispatcher"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\event-dispatcher\Debug\TraceableEventDispatcher.php"
"line" => 122
"function" => "dispatch"
"class" => "Symfony\Component\EventDispatcher\EventDispatcher"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\http-kernel\HttpKernel.php"
"line" => 216
"function" => "dispatch"
"class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\http-kernel\HttpKernel.php"
"line" => 204
"function" => "filterResponse"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\http-kernel\HttpKernel.php"
"line" => 76
"function" => "handleRaw"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\http-kernel\EventListener\ErrorListener.php"
"line" => 97
"function" => "handle"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\event-dispatcher\Debug\WrappedListener.php"
"line" => 115
"function" => "onKernelException"
"class" => "Symfony\Component\HttpKernel\EventListener\ErrorListener"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\event-dispatcher\EventDispatcher.php"
"line" => 206
"function" => "__invoke"
"class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\event-dispatcher\EventDispatcher.php"
"line" => 56
"function" => "callListeners"
"class" => "Symfony\Component\EventDispatcher\EventDispatcher"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\event-dispatcher\Debug\TraceableEventDispatcher.php"
"line" => 122
"function" => "dispatch"
"class" => "Symfony\Component\EventDispatcher\EventDispatcher"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\http-kernel\HttpKernel.php"
"line" => 241
"function" => "dispatch"
"class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\http-kernel\HttpKernel.php"
"line" => 91
"function" => "handleThrowable"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\http-kernel\Kernel.php"
"line" => 182
"function" => "handle"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\runtime\Runner\Symfony\HttpKernelRunner.php"
"line" => 35
"function" => "handle"
"class" => "Symfony\Component\HttpKernel\Kernel"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\autoload_runtime.php"
"line" => 29
"function" => "run"
"class" => "Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\public\index.php"
"line" => 5
"args" => [
"C:\inetpub\wwwroot\kinkyclub.fr\vendor\autoload_runtime.php"
]
"function" => "require_once"
]
]
|
Symfony\Component\HttpKernel\DataCollector\RequestDataCollector:69
[
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\http-kernel\DataCollector\RequestDataCollector.php"
"line" => 69
"function" => "getMetadataBag"
"class" => "Symfony\Component\HttpFoundation\Session\Session"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\http-kernel\Profiler\Profiler.php"
"line" => 158
"function" => "collect"
"class" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\http-kernel\EventListener\ProfilerListener.php"
"line" => 102
"function" => "collect"
"class" => "Symfony\Component\HttpKernel\Profiler\Profiler"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\event-dispatcher\Debug\WrappedListener.php"
"line" => 115
"function" => "onKernelResponse"
"class" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\event-dispatcher\EventDispatcher.php"
"line" => 206
"function" => "__invoke"
"class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\event-dispatcher\EventDispatcher.php"
"line" => 56
"function" => "callListeners"
"class" => "Symfony\Component\EventDispatcher\EventDispatcher"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\event-dispatcher\Debug\TraceableEventDispatcher.php"
"line" => 122
"function" => "dispatch"
"class" => "Symfony\Component\EventDispatcher\EventDispatcher"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\http-kernel\HttpKernel.php"
"line" => 216
"function" => "dispatch"
"class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\http-kernel\HttpKernel.php"
"line" => 204
"function" => "filterResponse"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\http-kernel\HttpKernel.php"
"line" => 76
"function" => "handleRaw"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\http-kernel\EventListener\ErrorListener.php"
"line" => 97
"function" => "handle"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\event-dispatcher\Debug\WrappedListener.php"
"line" => 115
"function" => "onKernelException"
"class" => "Symfony\Component\HttpKernel\EventListener\ErrorListener"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\event-dispatcher\EventDispatcher.php"
"line" => 206
"function" => "__invoke"
"class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\event-dispatcher\EventDispatcher.php"
"line" => 56
"function" => "callListeners"
"class" => "Symfony\Component\EventDispatcher\EventDispatcher"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\event-dispatcher\Debug\TraceableEventDispatcher.php"
"line" => 122
"function" => "dispatch"
"class" => "Symfony\Component\EventDispatcher\EventDispatcher"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\http-kernel\HttpKernel.php"
"line" => 241
"function" => "dispatch"
"class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\http-kernel\HttpKernel.php"
"line" => 91
"function" => "handleThrowable"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\http-kernel\Kernel.php"
"line" => 182
"function" => "handle"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\runtime\Runner\Symfony\HttpKernelRunner.php"
"line" => 35
"function" => "handle"
"class" => "Symfony\Component\HttpKernel\Kernel"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\autoload_runtime.php"
"line" => 29
"function" => "run"
"class" => "Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\public\index.php"
"line" => 5
"args" => [
"C:\inetpub\wwwroot\kinkyclub.fr\vendor\autoload_runtime.php"
]
"function" => "require_once"
]
]
|
Symfony\Component\HttpKernel\DataCollector\RequestDataCollector:70
[
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\http-kernel\DataCollector\RequestDataCollector.php"
"line" => 70
"function" => "getMetadataBag"
"class" => "Symfony\Component\HttpFoundation\Session\Session"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\http-kernel\Profiler\Profiler.php"
"line" => 158
"function" => "collect"
"class" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\http-kernel\EventListener\ProfilerListener.php"
"line" => 102
"function" => "collect"
"class" => "Symfony\Component\HttpKernel\Profiler\Profiler"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\event-dispatcher\Debug\WrappedListener.php"
"line" => 115
"function" => "onKernelResponse"
"class" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\event-dispatcher\EventDispatcher.php"
"line" => 206
"function" => "__invoke"
"class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\event-dispatcher\EventDispatcher.php"
"line" => 56
"function" => "callListeners"
"class" => "Symfony\Component\EventDispatcher\EventDispatcher"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\event-dispatcher\Debug\TraceableEventDispatcher.php"
"line" => 122
"function" => "dispatch"
"class" => "Symfony\Component\EventDispatcher\EventDispatcher"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\http-kernel\HttpKernel.php"
"line" => 216
"function" => "dispatch"
"class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\http-kernel\HttpKernel.php"
"line" => 204
"function" => "filterResponse"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\http-kernel\HttpKernel.php"
"line" => 76
"function" => "handleRaw"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\http-kernel\EventListener\ErrorListener.php"
"line" => 97
"function" => "handle"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\event-dispatcher\Debug\WrappedListener.php"
"line" => 115
"function" => "onKernelException"
"class" => "Symfony\Component\HttpKernel\EventListener\ErrorListener"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\event-dispatcher\EventDispatcher.php"
"line" => 206
"function" => "__invoke"
"class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\event-dispatcher\EventDispatcher.php"
"line" => 56
"function" => "callListeners"
"class" => "Symfony\Component\EventDispatcher\EventDispatcher"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\event-dispatcher\Debug\TraceableEventDispatcher.php"
"line" => 122
"function" => "dispatch"
"class" => "Symfony\Component\EventDispatcher\EventDispatcher"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\http-kernel\HttpKernel.php"
"line" => 241
"function" => "dispatch"
"class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\http-kernel\HttpKernel.php"
"line" => 91
"function" => "handleThrowable"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\http-kernel\Kernel.php"
"line" => 182
"function" => "handle"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\runtime\Runner\Symfony\HttpKernelRunner.php"
"line" => 35
"function" => "handle"
"class" => "Symfony\Component\HttpKernel\Kernel"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\autoload_runtime.php"
"line" => 29
"function" => "run"
"class" => "Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\public\index.php"
"line" => 5
"args" => [
"C:\inetpub\wwwroot\kinkyclub.fr\vendor\autoload_runtime.php"
]
"function" => "require_once"
]
]
|
Symfony\Component\HttpKernel\DataCollector\RequestDataCollector:71
[
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\http-kernel\DataCollector\RequestDataCollector.php"
"line" => 71
"function" => "all"
"class" => "Symfony\Component\HttpFoundation\Session\Session"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\http-kernel\Profiler\Profiler.php"
"line" => 158
"function" => "collect"
"class" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\http-kernel\EventListener\ProfilerListener.php"
"line" => 102
"function" => "collect"
"class" => "Symfony\Component\HttpKernel\Profiler\Profiler"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\event-dispatcher\Debug\WrappedListener.php"
"line" => 115
"function" => "onKernelResponse"
"class" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\event-dispatcher\EventDispatcher.php"
"line" => 206
"function" => "__invoke"
"class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\event-dispatcher\EventDispatcher.php"
"line" => 56
"function" => "callListeners"
"class" => "Symfony\Component\EventDispatcher\EventDispatcher"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\event-dispatcher\Debug\TraceableEventDispatcher.php"
"line" => 122
"function" => "dispatch"
"class" => "Symfony\Component\EventDispatcher\EventDispatcher"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\http-kernel\HttpKernel.php"
"line" => 216
"function" => "dispatch"
"class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\http-kernel\HttpKernel.php"
"line" => 204
"function" => "filterResponse"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\http-kernel\HttpKernel.php"
"line" => 76
"function" => "handleRaw"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\http-kernel\EventListener\ErrorListener.php"
"line" => 97
"function" => "handle"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\event-dispatcher\Debug\WrappedListener.php"
"line" => 115
"function" => "onKernelException"
"class" => "Symfony\Component\HttpKernel\EventListener\ErrorListener"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\event-dispatcher\EventDispatcher.php"
"line" => 206
"function" => "__invoke"
"class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\event-dispatcher\EventDispatcher.php"
"line" => 56
"function" => "callListeners"
"class" => "Symfony\Component\EventDispatcher\EventDispatcher"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\event-dispatcher\Debug\TraceableEventDispatcher.php"
"line" => 122
"function" => "dispatch"
"class" => "Symfony\Component\EventDispatcher\EventDispatcher"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\http-kernel\HttpKernel.php"
"line" => 241
"function" => "dispatch"
"class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\http-kernel\HttpKernel.php"
"line" => 91
"function" => "handleThrowable"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\http-kernel\Kernel.php"
"line" => 182
"function" => "handle"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\runtime\Runner\Symfony\HttpKernelRunner.php"
"line" => 35
"function" => "handle"
"class" => "Symfony\Component\HttpKernel\Kernel"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\autoload_runtime.php"
"line" => 29
"function" => "run"
"class" => "Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\public\index.php"
"line" => 5
"args" => [
"C:\inetpub\wwwroot\kinkyclub.fr\vendor\autoload_runtime.php"
]
"function" => "require_once"
]
]
|
Symfony\Component\HttpKernel\DataCollector\RequestDataCollector:72
[
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\http-kernel\DataCollector\RequestDataCollector.php"
"line" => 72
"function" => "getFlashBag"
"class" => "Symfony\Component\HttpFoundation\Session\Session"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\http-kernel\Profiler\Profiler.php"
"line" => 158
"function" => "collect"
"class" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\http-kernel\EventListener\ProfilerListener.php"
"line" => 102
"function" => "collect"
"class" => "Symfony\Component\HttpKernel\Profiler\Profiler"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\event-dispatcher\Debug\WrappedListener.php"
"line" => 115
"function" => "onKernelResponse"
"class" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\event-dispatcher\EventDispatcher.php"
"line" => 206
"function" => "__invoke"
"class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\event-dispatcher\EventDispatcher.php"
"line" => 56
"function" => "callListeners"
"class" => "Symfony\Component\EventDispatcher\EventDispatcher"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\event-dispatcher\Debug\TraceableEventDispatcher.php"
"line" => 122
"function" => "dispatch"
"class" => "Symfony\Component\EventDispatcher\EventDispatcher"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\http-kernel\HttpKernel.php"
"line" => 216
"function" => "dispatch"
"class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\http-kernel\HttpKernel.php"
"line" => 204
"function" => "filterResponse"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\http-kernel\HttpKernel.php"
"line" => 76
"function" => "handleRaw"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\http-kernel\EventListener\ErrorListener.php"
"line" => 97
"function" => "handle"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\event-dispatcher\Debug\WrappedListener.php"
"line" => 115
"function" => "onKernelException"
"class" => "Symfony\Component\HttpKernel\EventListener\ErrorListener"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\event-dispatcher\EventDispatcher.php"
"line" => 206
"function" => "__invoke"
"class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\event-dispatcher\EventDispatcher.php"
"line" => 56
"function" => "callListeners"
"class" => "Symfony\Component\EventDispatcher\EventDispatcher"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\event-dispatcher\Debug\TraceableEventDispatcher.php"
"line" => 122
"function" => "dispatch"
"class" => "Symfony\Component\EventDispatcher\EventDispatcher"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\http-kernel\HttpKernel.php"
"line" => 241
"function" => "dispatch"
"class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\http-kernel\HttpKernel.php"
"line" => 91
"function" => "handleThrowable"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\http-kernel\Kernel.php"
"line" => 182
"function" => "handle"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\symfony\runtime\Runner\Symfony\HttpKernelRunner.php"
"line" => 35
"function" => "handle"
"class" => "Symfony\Component\HttpKernel\Kernel"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\vendor\autoload_runtime.php"
"line" => 29
"function" => "run"
"class" => "Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner"
"type" => "->"
]
[
"file" => "C:\inetpub\wwwroot\kinkyclub.fr\public\index.php"
"line" => 5
"args" => [
"C:\inetpub\wwwroot\kinkyclub.fr\vendor\autoload_runtime.php"
]
"function" => "require_once"
]
]
|
Flashes
Flashes
No flash messages were created.
Server Parameters
Server Parameters
Defined in .env
| Key | Value |
|---|---|
| API_SECRET_KEY | "EryAl6MX5e6MrnyZO1dvtTW0a9XKmXTlwGI385q8c4O" |
| APP_ENV | "dev" |
| APP_SECRET | "7413da21b67d92c5d4c6f90c0763513d" |
| DATABASE_URL | "mysql://root:iOdhmU%23t]0p9H+=KsXqbhfm=CI1^~+on@127.0.0.1:3306/kinkyclub?serverVersion=8.0" |
| FFMPEG_PATH | "C:\ffmpeg-2023-12-23-full\bin\ffmpeg.exe" |
| FFPROBE_PATH | "C:\ffmpeg-2023-12-23-full\bin\ffprobe.exe" |
| FTP_ROOT_DIR | "C:\inetpub\wwwroot\kinkyclub.fr\public\uploads\videos" |
| MAILER_DSN | "null://null" |
| MAIL_RECAP_24 | "dirtyvonp@gmail.com" |
| MESSENGER_TRANSPORT_DSN | "doctrine://default?auto_setup=0" |
| PAYPAL_CLIENT_ID | "AZWXrEswZRSvsWfHGdEgaFVeLwn8PAlKQJeGk5dS0efqGTnQkat8c_5e3OltoYQDEir5SltuEa8bSGST" |
| PAYPAL_CLIENT_SECRET | "EK9POECW1bUOjyXZaE-rHZHK9dliFn6QMQj5vekL-iWHP9xyey583CSOY3IhK5ORrSjeE640nTrS78wH" |
| PAYPAL_SANDBOX | "true" |
| UPLOAD_PATH | "C:\inetpub\wwwroot\kinkyclub.fr\public\uploads" |
Defined as regular env variables
| Key | Value |
|---|---|
| ALLUSERSPROFILE | "C:\ProgramData" |
| APPDATA | "C:\Windows\system32\config\systemprofile\AppData\Roaming" |
| APPL_MD_PATH | "/LM/W3SVC/8/ROOT" |
| APPL_PHYSICAL_PATH | "C:\inetpub\wwwroot\kinkyclub.fr\public\" |
| APP_DEBUG | "1" |
| APP_POOL_CONFIG | "C:\inetpub\temp\apppools\kinkyclub.fr\kinkyclub.fr.config" |
| APP_POOL_ID | "kinkyclub.fr" |
| AUTH_PASSWORD | "" |
| AUTH_TYPE | "" |
| AUTH_USER | "" |
| CERT_COOKIE | "" |
| CERT_FLAGS | "" |
| CERT_ISSUER | "" |
| CERT_SERIALNUMBER | "" |
| CERT_SUBJECT | "" |
| COMPUTERNAME | "SVR-WEB-CLIENTS" |
| CONTENT_LENGTH | "0" |
| CONTENT_TYPE | "" |
| ComSpec | "C:\Windows\system32\cmd.exe" |
| CommonProgramFiles | "C:\Program Files\Common Files" |
| CommonProgramFiles(x86) | "C:\Program Files (x86)\Common Files" |
| CommonProgramW6432 | "C:\Program Files\Common Files" |
| DOCUMENT_ROOT | "C:\inetpub\wwwroot\kinkyclub.fr\public" |
| DriverData | "C:\Windows\System32\Drivers\DriverData" |
| FCGI_ROLE | "RESPONDER" |
| GATEWAY_INTERFACE | "CGI/1.1" |
| HTTPS | "on" |
| HTTPS_KEYSIZE | "256" |
| HTTPS_SECRETKEYSIZE | "3072" |
| HTTPS_SERVER_ISSUER | "C=US, O=Let's Encrypt, CN=R12" |
| HTTPS_SERVER_SUBJECT | "CN=kinkyclub.e-world-france.fr" |
| HTTP_ACCEPT | "*/*" |
| HTTP_ACCEPT_ENCODING | "gzip, br, zstd, deflate" |
| HTTP_CONNECTION | "close" |
| HTTP_CONTENT_LENGTH | "0" |
| HTTP_HOST | "kinkyclub.e-world-france.fr" |
| HTTP_USER_AGENT | "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" |
| HTTP_X_ORIGINAL_URL | "/a-propos" |
| IIS_UrlRewriteModule | "7,1,1993,2351" |
| INSTANCE_ID | "8" |
| INSTANCE_META_PATH | "/LM/W3SVC/8" |
| INSTANCE_NAME | "KINKYCLUB.FR" |
| LOCALAPPDATA | "C:\Windows\system32\config\systemprofile\AppData\Local" |
| LOCAL_ADDR | "11.0.2.5" |
| LOGON_USER | "" |
| NUMBER_OF_PROCESSORS | "2" |
| ORIG_PATH_INFO | "/index.php" |
| OS | "Windows_NT" |
| PATHEXT | ".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC" |
| PATH_TRANSLATED | "C:\inetpub\wwwroot\kinkyclub.fr\public\index.php" |
| PHP_SELF | "/index.php" |
| POWERSHELL_DISTRIBUTION_CHANNEL | "MSI:Windows Server 2022 Standard" |
| PROCESSOR_ARCHITECTURE | "AMD64" |
| PROCESSOR_IDENTIFIER | "Intel64 Family 6 Model 167 Stepping 1, GenuineIntel" |
| PROCESSOR_LEVEL | "6" |
| PROCESSOR_REVISION | "a701" |
| PSModulePath | "C:\Program Files\WindowsPowerShell\Modules;C:\Windows\system32\WindowsPowerShell\v1.0\Modules" |
| PUBLIC | "C:\Users\Public" |
| Path | "C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\php\php-8.5.0;C:\php\php-8.2.9;C:\ProgramData\ComposerSetup\bin;C:\Program Files\PowerShell\7\;C:\Program Files\Git\cmd;C:\Windows\system32\config\systemprofile\AppData\Local\Microsoft\WindowsApps" |
| ProgramData | "C:\ProgramData" |
| ProgramFiles | "C:\Program Files" |
| ProgramFiles(x86) | "C:\Program Files (x86)" |
| ProgramW6432 | "C:\Program Files" |
| QUERY_STRING | "" |
| REMOTE_ADDR | "216.73.216.188" |
| REMOTE_HOST | "216.73.216.188" |
| REMOTE_PORT | "21566" |
| REMOTE_USER | "" |
| REQUEST_METHOD | "GET" |
| REQUEST_TIME | 1769105333 |
| REQUEST_TIME_FLOAT | 1769105333.9198 |
| REQUEST_URI | "/a-propos" |
| SCRIPT_FILENAME | "C:\inetpub\wwwroot\kinkyclub.fr\public\index.php" |
| SCRIPT_NAME | "/index.php" |
| SERVER_NAME | "kinkyclub.e-world-france.fr" |
| SERVER_PORT | "443" |
| SERVER_PORT_SECURE | "1" |
| SERVER_PROTOCOL | "HTTP/1.1" |
| SERVER_SOFTWARE | "Microsoft-IIS/10.0" |
| SYMFONY_DOTENV_PATH | "C:\inetpub\wwwroot\kinkyclub.fr/.env" |
| SYMFONY_DOTENV_VARS | "APP_ENV,APP_SECRET,DATABASE_URL,MESSENGER_TRANSPORT_DSN,MAILER_DSN,MAIL_RECAP_24,PAYPAL_SANDBOX,PAYPAL_CLIENT_ID,PAYPAL_CLIENT_SECRET,FFMPEG_PATH,FFPROBE_PATH,UPLOAD_PATH,API_SECRET_KEY,FTP_ROOT_DIR" |
| SystemDrive | "C:" |
| SystemRoot | "C:\Windows" |
| TEMP | "C:\Windows\TEMP" |
| TMP | "C:\Windows\TEMP" |
| URL | "/index.php" |
| USERDOMAIN | "E-WORLD-FRANCE" |
| USERNAME | "SVR-WEB-CLIENTS$" |
| USERPROFILE | "C:\Windows\system32\config\systemprofile" |
| _FCGI_X_PIPE_ | "\\.\pipe\IISFCGI-05346e8f-ace8-4c08-985c-ed3bd99b2c5b" |
| windir | "C:\Windows" |
Parent Request
Return to parent request (token = 5c18c0)
| Key | Value |
|---|---|
| _controller | "App\Controller\StaticPageController::about" |
| _firewall_context | "security.firewall.map.context.main" |
| _locale | "fr" |
| _remove_csp_headers | true |
| _route | "app_about" |
| _route_params | [ "_locale" => "fr" ] |
| _security_authenticators | [] |
| _security_firewall_run | "_security_main" |
| _security_skipped_authenticators | [ Symfony\Component\Security\Http\Authenticator\Debug\TraceableAuthenticator {#601 -supports: false -passport: null -duration: null -stub: "Symfony\Component\Security\Http\Authenticator\FormLoginAuthenticator" -authenticated: null -exception: null -authenticator: Symfony\Component\Security\Http\Authenticator\FormLoginAuthenticator {#598 …} } ] |
| _stopwatch_token | "872379" |