13. Symfony\Component\HttpKernel\Exception\MethodNotAllowedHttpException
…/­vendor/­laravel/­framework/­src/­Illuminate/­Routing/­RouteCollection.php210
12. Illuminate\Routing\RouteCollection methodNotAllowed
…/­vendor/­laravel/­framework/­src/­Illuminate/­Routing/­RouteCollection.php197
11. Illuminate\Routing\RouteCollection getOtherMethodsRoute
…/­vendor/­laravel/­framework/­src/­Illuminate/­Routing/­RouteCollection.php145
10. Illuminate\Routing\RouteCollection match
…/­vendor/­laravel/­framework/­src/­Illuminate/­Routing/­Router.php1054
9. Illuminate\Routing\Router findRoute
…/­vendor/­laravel/­framework/­src/­Illuminate/­Routing/­Router.php1022
8. Illuminate\Routing\Router dispatchToRoute
…/­vendor/­laravel/­framework/­src/­Illuminate/­Routing/­Router.php1001
7. Illuminate\Routing\Router dispatch
…/­vendor/­laravel/­framework/­src/­Illuminate/­Foundation/­Application.php775
6. Illuminate\Foundation\Application dispatch
…/­vendor/­laravel/­framework/­src/­Illuminate/­Foundation/­Application.php745
5. Illuminate\Foundation\Application handle
…/­vendor/­laravel/­framework/­src/­Illuminate/­Session/­Middleware.php72
4. Illuminate\Session\Middleware handle
…/­vendor/­laravel/­framework/­src/­Illuminate/­Cookie/­Queue.php47
3. Illuminate\Cookie\Queue handle
…/­vendor/­laravel/­framework/­src/­Illuminate/­Cookie/­Guard.php51
2. Illuminate\Cookie\Guard handle
…/­vendor/­stack/­builder/­src/­Stack/­StackedHttpKernel.php23
1. Stack\StackedHttpKernel handle
…/­vendor/­laravel/­framework/­src/­Illuminate/­Foundation/­Application.php641
0. Illuminate\Foundation\Application run
…/­public/­index.php49

Symfony \ Component \ HttpKernel \ Exception \ MethodNotAllowedHttpException Symfony\Component\HttpKernel\Exception\MethodNotAllowedHttpException thrown with message "" Stacktrace: #13 Symfony\Component\HttpKernel\Exception\MethodNotAllowedHttpException in /var/www/clients/client3/web4/web/vendor/laravel/framework/src/Illuminate/Routing/RouteCollection.php:210 #12 Illuminate\Routing\RouteCollection:methodNotAllowed in /var/www/clients/client3/web4/web/vendor/laravel/framework/src/Illuminate/Routing/RouteCollection.php:197 #11 Illuminate\Routing\RouteCollection:getOtherMethodsRoute in /var/www/clients/client3/web4/web/vendor/laravel/framework/src/Illuminate/Routing/RouteCollection.php:145 #10 Illuminate\Routing\RouteCollection:match in /var/www/clients/client3/web4/web/vendor/laravel/framework/src/Illuminate/Routing/Router.php:1054 #9 Illuminate\Routing\Router:findRoute in /var/www/clients/client3/web4/web/vendor/laravel/framework/src/Illuminate/Routing/Router.php:1022 #8 Illuminate\Routing\Router:dispatchToRoute in /var/www/clients/client3/web4/web/vendor/laravel/framework/src/Illuminate/Routing/Router.php:1001 #7 Illuminate\Routing\Router:dispatch in /var/www/clients/client3/web4/web/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:775 #6 Illuminate\Foundation\Application:dispatch in /var/www/clients/client3/web4/web/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:745 #5 Illuminate\Foundation\Application:handle in /var/www/clients/client3/web4/web/vendor/laravel/framework/src/Illuminate/Session/Middleware.php:72 #4 Illuminate\Session\Middleware:handle in /var/www/clients/client3/web4/web/vendor/laravel/framework/src/Illuminate/Cookie/Queue.php:47 #3 Illuminate\Cookie\Queue:handle in /var/www/clients/client3/web4/web/vendor/laravel/framework/src/Illuminate/Cookie/Guard.php:51 #2 Illuminate\Cookie\Guard:handle in /var/www/clients/client3/web4/web/vendor/stack/builder/src/Stack/StackedHttpKernel.php:23 #1 Stack\StackedHttpKernel:handle in /var/www/clients/client3/web4/web/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:641 #0 Illuminate\Foundation\Application:run in /var/www/clients/client3/web4/web/public/index.php:49

	 * @param  array  $others
	 * @return void
	 *
	 * @throws \Symfony\Component\HttpKernel\Exception\MethodNotAllowedHttpException
	 */
	protected function methodNotAllowed(array $others)
	{
		throw new MethodNotAllowedHttpException($others);
	}
 
			return (new Route('OPTIONS', $request->path(), function() use ($others)
			{
				return new Response('', 200, array('Allow' => implode(',', $others)));
 
			}))->bind($request);
		}
 
		$this->methodNotAllowed($others);
	}
 
		// If no route was found, we will check if a matching is route is specified on
		// another HTTP verb. If it is we will need to throw a MethodNotAllowed and
		// inform the user agent of which HTTP verb it should use for this route.
		$others = $this->checkForAlternateVerbs($request);
 
		if (count($others) > 0)
		{
			return $this->getOtherMethodsRoute($request, $others);
		}
 
	 * Find the route matching a given request.
	 *
	 * @param  \Illuminate\Http\Request  $request
	 * @return \Illuminate\Routing\Route
	 */
	protected function findRoute($request)
	{
		$this->current = $route = $this->routes->match($request);
 
		return $this->substituteBindings($route);
	 * Dispatch the request to a route and return the response.
	 *
	 * @param  \Illuminate\Http\Request  $request
	 * @return mixed
	 */
	public function dispatchToRoute(Request $request)
	{
		$route = $this->findRoute($request);
 
		$this->events->fire('router.matched', array($route, $request));
		// If no response was returned from the before filter, we will call the proper
		// route instance to get the response. If no route is found a response will
		// still get returned based on why no routes were found for this request.
		$response = $this->callFilter('before', $request);
 
		if (is_null($response))
		{
			$response = $this->dispatchToRoute($request);
		}
 
		}
 
		if ($this->runningUnitTests() && ! $this['session']->isStarted())
		{
			$this['session']->start();
		}
 
		return $this['router']->dispatch($this->prepareRequest($request));
	}
 
	{
		try
		{
			$this->refreshRequest($request = Request::createFromBase($request));
 
			$this->boot();
 
			return $this->dispatch($request);
		}
		catch (\Exception $e)
		if ($this->sessionConfigured())
		{
			$session = $this->startSession($request);
 
			$request->setSession($session);
		}
 
		$response = $this->app->handle($request, $type, $catch);
 
		// Again, if the session has been configured we will need to close out the session
	 * @param  \Symfony\Component\HttpFoundation\Request  $request
	 * @param  int   $type
	 * @param  bool  $catch
	 * @return \Symfony\Component\HttpFoundation\Response
	 */
	public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
	{
		$response = $this->app->handle($request, $type, $catch);
 
		foreach ($this->cookies->getQueuedCookies() as $cookie)
	 * @param  \Symfony\Component\HttpFoundation\Request  $request
	 * @param  int   $type
	 * @param  bool  $catch
	 * @return \Symfony\Component\HttpFoundation\Response
	 */
	public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
	{
		return $this->encrypt($this->app->handle($this->decrypt($request), $type, $catch));
	}
 
    {
        $this->app = $app;
        $this->middlewares = $middlewares;
    }
 
    public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
    {
        return $this->app->handle($request, $type, $catch);
    }
 
	 * @param  \Symfony\Component\HttpFoundation\Request  $request
	 * @return void
	 */
	public function run(SymfonyRequest $request = null)
	{
		$request = $request ?: $this['request'];
 
		$response = with($stack = $this->getStackedClient())->handle($request);
 
		$response->send();
| Once we have the application, we can simply call the run method,
| which will execute the request and send the response back to
| the client's browser allowing them to enjoy the creative
| and wonderful application we have whipped up for them.
|
*/
 
$app->run();
 
Key Value
PHP_FCGI_MAX_REQUESTS 5000
PHPRC /etc/php/7.3/cgi/
PWD /var/www/php-fcgi-scripts/web4
TMPDIR /var/www/clients/client3/web4/tmp
TEMP /var/www/clients/client3/web4/tmp
SHLVL 0
TMP /var/www/clients/client3/web4/tmp
PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PHP_DOCUMENT_ROOT /var/www/clients/client3/web4
CONTENT_LENGTH 0
HTTP_CONNECTION close
SCRIPT_NAME /public/index.php
REQUEST_URI /product/2939
QUERY_STRING
REQUEST_METHOD GET
SERVER_PROTOCOL HTTP/1.1
GATEWAY_INTERFACE CGI/1.1
REDIRECT_URL /public/product/2939
REMOTE_PORT 37248
SCRIPT_FILENAME /var/www/mcg-distribution.fr/web/public/index.php
SERVER_ADMIN webmaster@mcg-distribution.fr
CONTEXT_DOCUMENT_ROOT /var/www/mcg-distribution.fr/web
CONTEXT_PREFIX
REQUEST_SCHEME http
DOCUMENT_ROOT /var/www/mcg-distribution.fr/web
REMOTE_ADDR 44.200.196.114
SERVER_PORT 80
SERVER_ADDR 152.228.162.96
SERVER_NAME www.mcg-distribution.fr
SERVER_SOFTWARE Apache
SERVER_SIGNATURE
HTTP_HOST www.mcg-distribution.fr
HTTP_USER_AGENT claudebot
HTTP_ACCEPT */*
PHP_VER 5_4
REDIRECT_STATUS 200
REDIRECT_PHP_VER 5_4
REDIRECT_REDIRECT_STATUS 200
REDIRECT_REDIRECT_PHP_VER 5_4
FCGI_ROLE RESPONDER
PHP_SELF /public/index.php
REQUEST_TIME_FLOAT 1711676402.03762
REQUEST_TIME 1711676402
empty
empty
empty
empty
empty
empty
0. Whoops\Handler\PrettyPageHandler