13. Symfony\Component\HttpKernel\Exception\MethodNotAllowedHttpException
…/­bootstrap/­compiled.php3747
12. Illuminate\Routing\RouteCollection methodNotAllowed
…/­bootstrap/­compiled.php3743
11. Illuminate\Routing\RouteCollection getOtherMethodsRoute
…/­bootstrap/­compiled.php3721
10. Illuminate\Routing\RouteCollection match
…/­bootstrap/­compiled.php3045
9. Illuminate\Routing\Router findRoute
…/­bootstrap/­compiled.php3033
8. Illuminate\Routing\Router dispatchToRoute
…/­bootstrap/­compiled.php3025
7. Illuminate\Routing\Router dispatch
…/­bootstrap/­compiled.php702
6. Illuminate\Foundation\Application dispatch
…/­bootstrap/­compiled.php678
5. Illuminate\Foundation\Application handle
…/­bootstrap/­compiled.php5797
4. Illuminate\Session\Middleware handle
…/­bootstrap/­compiled.php6404
3. Illuminate\Cookie\Queue handle
…/­bootstrap/­compiled.php6351
2. Illuminate\Cookie\Guard handle
…/­bootstrap/­compiled.php8367
1. Stack\StackedHttpKernel handle
…/­bootstrap/­compiled.php639
0. Illuminate\Foundation\Application run
…/­public/­index.php52

Symfony \ Component \ HttpKernel \ Exception \ MethodNotAllowedHttpException

Callstack information; navigate with mouse or keyboard using Ctrl+↑ or Ctrl+↓
Copy-to-clipboard button
Exception message and its type
Code snippet where the error was thrown
Server state information
Application provided context information
Symfony\Component\HttpKernel\Exception\MethodNotAllowedHttpException thrown with message "" Stacktrace: #13 Symfony\Component\HttpKernel\Exception\MethodNotAllowedHttpException in /skymail/dominios/uptime.com.br/httpdocs/bootstrap/compiled.php:3747 #12 Illuminate\Routing\RouteCollection:methodNotAllowed in /skymail/dominios/uptime.com.br/httpdocs/bootstrap/compiled.php:3743 #11 Illuminate\Routing\RouteCollection:getOtherMethodsRoute in /skymail/dominios/uptime.com.br/httpdocs/bootstrap/compiled.php:3721 #10 Illuminate\Routing\RouteCollection:match in /skymail/dominios/uptime.com.br/httpdocs/bootstrap/compiled.php:3045 #9 Illuminate\Routing\Router:findRoute in /skymail/dominios/uptime.com.br/httpdocs/bootstrap/compiled.php:3033 #8 Illuminate\Routing\Router:dispatchToRoute in /skymail/dominios/uptime.com.br/httpdocs/bootstrap/compiled.php:3025 #7 Illuminate\Routing\Router:dispatch in /skymail/dominios/uptime.com.br/httpdocs/bootstrap/compiled.php:702 #6 Illuminate\Foundation\Application:dispatch in /skymail/dominios/uptime.com.br/httpdocs/bootstrap/compiled.php:678 #5 Illuminate\Foundation\Application:handle in /skymail/dominios/uptime.com.br/httpdocs/bootstrap/compiled.php:5797 #4 Illuminate\Session\Middleware:handle in /skymail/dominios/uptime.com.br/httpdocs/bootstrap/compiled.php:6404 #3 Illuminate\Cookie\Queue:handle in /skymail/dominios/uptime.com.br/httpdocs/bootstrap/compiled.php:6351 #2 Illuminate\Cookie\Guard:handle in /skymail/dominios/uptime.com.br/httpdocs/bootstrap/compiled.php:8367 #1 Stack\StackedHttpKernel:handle in /skymail/dominios/uptime.com.br/httpdocs/bootstrap/compiled.php:639 #0 Illuminate\Foundation\Application:run in /skymail/dominios/uptime.com.br/httpdocs/public/index.php:52

                return new Response('', 200, array('Allow' => implode(',', $others)));
            }))->bind($request);
        }
        $this->methodNotAllowed($others);
    }
    protected function methodNotAllowed(array $others)
    {
        throw new MethodNotAllowedHttpException($others);
    }
    protected function check(array $routes, $request, $includingMethod = true)
    protected function getOtherMethodsRoute($request, array $others)
    {
        if ($request->method() == 'OPTIONS') {
            return (new Route('OPTIONS', $request->path(), function () use($others) {
                return new Response('', 200, array('Allow' => implode(',', $others)));
            }))->bind($request);
        }
        $this->methodNotAllowed($others);
    }
    protected function methodNotAllowed(array $others)
        $routes = $this->get($request->getMethod());
        $route = $this->check($routes, $request);
        if (!is_null($route)) {
            return $route->bind($request);
        }
        $others = $this->checkForAlternateVerbs($request);
        if (count($others) > 0) {
            return $this->getOtherMethodsRoute($request, $others);
        }
        throw new NotFoundHttpException();
        }
        $response = $this->prepareResponse($request, $response);
        $this->callRouteAfter($route, $request, $response);
        return $response;
    }
    protected function findRoute($request)
    {
        $this->current = $route = $this->routes->match($request);
        return $this->substituteBindings($route);
    }
        }
        $response = $this->prepareResponse($request, $response);
        $this->callFilter('after', $request, $response);
        return $response;
    }
    public function dispatchToRoute(Request $request)
    {
        $route = $this->findRoute($request);
        $this->events->fire('router.matched', array($route, $request));
        $response = $this->callRouteBefore($route, $request);
        return isset($group['namespace']) ? $group['namespace'] . '\\' . $uses : $uses;
    }
    public function dispatch(Request $request)
    {
        $this->currentRequest = $request;
        $response = $this->callFilter('before', $request);
        if (is_null($response)) {
            $response = $this->dispatchToRoute($request);
        }
        $response = $this->prepareResponse($request, $response);
            if (!is_null($response)) {
                return $this->prepareResponse($response, $request);
            }
        }
        if ($this->runningUnitTests() && !$this['session']->isStarted()) {
            $this['session']->start();
        }
        return $this['router']->dispatch($this->prepareRequest($request));
    }
    public function terminate(SymfonyRequest $request, SymfonyResponse $response)
        });
    }
    public function handle(SymfonyRequest $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
    {
        try {
            $this->refreshRequest($request = Request::createFromBase($request));
            $this->boot();
            return $this->dispatch($request);
        } catch (\Exception $e) {
            if (!$catch || $this->runningUnitTests()) {
    public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
    {
        $this->checkRequestForArraySessions($request);
        if ($this->sessionConfigured()) {
            $session = $this->startSession($request);
            $request->setSession($session);
        }
        $response = $this->app->handle($request, $type, $catch);
        if ($this->sessionConfigured()) {
            $this->closeSession($session);
    public function __construct(HttpKernelInterface $app, CookieJar $cookies)
    {
        $this->app = $app;
        $this->cookies = $cookies;
    }
    public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
    {
        $response = $this->app->handle($request, $type, $catch);
        foreach ($this->cookies->getQueuedCookies() as $cookie) {
            $response->headers->setCookie($cookie);
    public function __construct(HttpKernelInterface $app, Encrypter $encrypter)
    {
        $this->app = $app;
        $this->encrypter = $encrypter;
    }
    public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
    {
        return $this->encrypt($this->app->handle($this->decrypt($request), $type, $catch));
    }
    protected function decrypt(Request $request)
    public function __construct(HttpKernelInterface $app, array $middlewares)
    {
        $this->app = $app;
        $this->middlewares = $middlewares;
    }
    public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
    {
        return $this->app->handle($request, $type, $catch);
    }
    public function terminate(Request $request, Response $response)
        if ($this->isBooted()) {
            $this->fireAppCallbacks(array($callback));
        }
    }
    public function run(SymfonyRequest $request = null)
    {
        $request = $request ?: $this['request'];
        $response = with($stack = $this->getStackedClient())->handle($request);
        $response->send();
        $stack->terminate($request, $response);
| 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();
 
empty
empty
empty
empty
empty
Key Value
USER apache
HOME /usr/share/httpd
FCGI_ROLE RESPONDER
REDIRECT_UNIQUE_ID ZgVPF0WGHv7dJY9D02PDqAAAAQ4
REDIRECT_HTTPS on
REDIRECT_SSL_TLS_SNI uptime.com.br
REDIRECT_STATUS 200
UNIQUE_ID ZgVPF0WGHv7dJY9D02PDqAAAAQ4
HTTPS on
SSL_TLS_SNI uptime.com.br
proxy-nokeepalive 1
HTTP_ACCEPT */*
HTTP_USER_AGENT claudebot
HTTP_REFERER http://uptime.com.br/campanha/unidades
HTTP_HOST uptime.com.br
PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin
SERVER_SIGNATURE
SERVER_SOFTWARE Apache/2.4.37 (rocky) OpenSSL/1.1.1k
SERVER_NAME uptime.com.br
SERVER_ADDR 10.1.0.197
SERVER_PORT 443
REMOTE_ADDR 44.204.204.14
DOCUMENT_ROOT /skymail/dominios/uptime.com.br/httpdocs/public
REQUEST_SCHEME https
CONTEXT_PREFIX
CONTEXT_DOCUMENT_ROOT /skymail/dominios/uptime.com.br/httpdocs/public
SERVER_ADMIN operacao@skymail.com.br
SCRIPT_FILENAME /skymail/dominios/uptime.com.br/httpdocs/public/index.php
REMOTE_PORT 39122
REDIRECT_URL /campanha/unidades
GATEWAY_INTERFACE CGI/1.1
SERVER_PROTOCOL HTTP/1.1
REQUEST_METHOD GET
QUERY_STRING
REQUEST_URI /campanha/unidades
SCRIPT_NAME /index.php
PHP_SELF /index.php
REQUEST_TIME_FLOAT 1711623959.6431
REQUEST_TIME 1711623959
empty
0. Whoops\Handler\PrettyPageHandler