12. Symfony\Component\HttpKernel\Exception\NotFoundHttpException
…/­bootstrap/­compiled.php5306
11. Illuminate\Routing\RouteCollection match
…/­bootstrap/­compiled.php4680
10. Illuminate\Routing\Router findRoute
…/­bootstrap/­compiled.php4668
9. Illuminate\Routing\Router dispatchToRoute
…/­bootstrap/­compiled.php4660
8. Illuminate\Routing\Router dispatch
…/­bootstrap/­compiled.php698
7. Illuminate\Foundation\Application dispatch
…/­bootstrap/­compiled.php679
6. Illuminate\Foundation\Application handle
…/­bootstrap/­compiled.php1136
5. Illuminate\Http\FrameGuard handle
…/­bootstrap/­compiled.php7235
4. Illuminate\Session\Middleware handle
…/­bootstrap/­compiled.php7832
3. Illuminate\Cookie\Queue handle
…/­bootstrap/­compiled.php7779
2. Illuminate\Cookie\Guard handle
…/­bootstrap/­compiled.php10817
1. Stack\StackedHttpKernel handle
…/­bootstrap/­compiled.php640
0. Illuminate\Foundation\Application run
…/­public/­index.php51

Symfony \ Component \ HttpKernel \ Exception \ NotFoundHttpException

    {
        $routes = $this->get($request->getMethod());
        $route = $this->check($routes, $request);
        if (!is_null($route)) {
            return $route->bind($request);
        }
        $this->checkForAlternateVerbs($request);
        throw new NotFoundHttpException();
    }
    protected function checkForAlternateVerbs($request)
        }
        $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 ($this->runningUnitTests()) {
    protected $app;
    public function __construct(HttpKernelInterface $app)
    {
        $this->app = $app;
    }
    public function handle(SymfonyRequest $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
    {
        $response = $this->app->handle($request, $type, $catch);
        $response->headers->set('X-Frame-Options', 'SAMEORIGIN', false);
        return $response;
    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();
Key Value
PHP_FCGI_MAX_REQUESTS 99999
PHPRC /home/rockola/fcgi-bin/../etc/php5.6
PWD /home/rockola/fcgi-bin
SHLVL 0
PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin
CONTENT_LENGTH 0
HTTP_CONNECTION close
SCRIPT_NAME /index.php
REQUEST_URI /usuario/mrgifted
QUERY_STRING
REQUEST_METHOD GET
SERVER_PROTOCOL HTTP/1.1
GATEWAY_INTERFACE CGI/1.1
REDIRECT_URL /usuario/mrgifted
REMOTE_PORT 38450
SCRIPT_FILENAME /home/rockola/public_html/htdocs/web/public/index.php
SERVER_ADMIN [no address given]
CONTEXT_DOCUMENT_ROOT /home/rockola/public_html/htdocs/web/public
CONTEXT_PREFIX
REQUEST_SCHEME https
DOCUMENT_ROOT /home/rockola/public_html/htdocs/web/public
REMOTE_ADDR 3.230.128.106
SERVER_PORT 443
SERVER_ADDR 141.94.78.50
SERVER_NAME www.rockola.fm
SERVER_SOFTWARE Apache
SERVER_SIGNATURE
HTTP_HOST www.rockola.fm
HTTP_REFERER http://www.rockola.fm/usuario/mrgifted
HTTP_USER_AGENT claudebot
HTTP_ACCEPT */*
SSL_TLS_SNI www.rockola.fm
HTTPS on
SCRIPT_URI https://www.rockola.fm/usuario/mrgifted
SCRIPT_URL /usuario/mrgifted
REDIRECT_STATUS 200
REDIRECT_SSL_TLS_SNI www.rockola.fm
REDIRECT_HTTPS on
REDIRECT_SCRIPT_URI https://www.rockola.fm/usuario/mrgifted
REDIRECT_SCRIPT_URL /usuario/mrgifted
FCGI_ROLE RESPONDER
PHP_SELF /index.php
REQUEST_TIME_FLOAT 1710816591.6447
REQUEST_TIME 1710816591
empty
empty
empty
empty
empty
empty
0. Whoops\Handler\PrettyPageHandler