21. Symfony\Component\HttpKernel\Exception\NotFoundHttpException
…/­bootstrap/­compiled.php751
20. Illuminate\Foundation\Application abort
…/­bootstrap/­compiled.php3166
19. Illuminate\Support\Facades\Facade __callStatic
…/­app/­controllers/­ArtistsController.php93
18. Illuminate\Support\Facades\App abort
…/­app/­controllers/­ArtistsController.php93
17. ArtistsController getDetail
<#unknown>0
16. call_user_func_array
…/­vendor/­laravel/­framework/­src/­Illuminate/­Routing/­Controller.php231
15. Illuminate\Routing\Controller callAction
…/­bootstrap/­compiled.php5391
14. Illuminate\Routing\ControllerDispatcher call
…/­bootstrap/­compiled.php5379
13. Illuminate\Routing\ControllerDispatcher dispatch
…/­bootstrap/­compiled.php4647
12. Illuminate\Routing\Router Illuminate\Routing\{closure}
<#unknown>0
11. call_user_func_array
…/­bootstrap/­compiled.php4957
10. Illuminate\Routing\Route run
…/­bootstrap/­compiled.php4672
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

    public function down(Closure $callback)
    {
        $this['events']->listen('illuminate.app.down', $callback);
    }
    public function abort($code, $message = '', array $headers = array())
    {
        if ($code == 404) {
            throw new NotFoundHttpException($message);
        } else {
            throw new HttpException($code, $message, null, $headers);
    public static function __callStatic($method, $args)
    {
        $instance = static::resolveFacadeInstance(static::getFacadeAccessor());
        switch (count($args)) {
            case 0:
                return $instance->{$method}();
            case 1:
                return $instance->{$method}($args[0]);
            case 2:
                return $instance->{$method}($args[0], $args[1]);
		// Check if the blog post exists
		if (is_null($artist))
		{
			// If we ended up in here, it means that
			// a page or a blog post didn't exist.
			// So, this means that it is time for
			// 404 error page.
			return App::abort(404);
		}
 
		// Check if the blog post exists
		if (is_null($artist))
		{
			// If we ended up in here, it means that
			// a page or a blog post didn't exist.
			// So, this means that it is time for
			// 404 error page.
			return App::abort(404);
		}
 
<#unknown>
	 * @param array   $parameters
	 * @return \Symfony\Component\HttpFoundation\Response
	 */
	public function callAction($method, $parameters)
	{
		$this->setupLayout();
 
		$response = call_user_func_array(array($this, $method), $parameters);
 
		// If no response is returned from the controller action and a layout is being
    {
        Controller::setFilterer($this->filterer);
        return $this->container->make($controller);
    }
    protected function call($instance, $route, $method)
    {
        $parameters = $route->parametersWithoutNulls();
        return $instance->callAction($method, $parameters);
    }
    protected function before($instance, $route, $request, $method)
    }
    public function dispatch(Route $route, Request $request, $controller, $method)
    {
        $instance = $this->makeController($controller);
        $this->assignAfter($instance, $route, $request, $method);
        $response = $this->before($instance, $route, $request, $method);
        if (is_null($response)) {
            $response = $this->call($instance, $route, $method);
        }
        return $response;
    {
        $me = $this;
        $d = $this->getControllerDispatcher();
        return function () use($me, $d, $controller) {
            $route = $me->current();
            $request = $me->getCurrentRequest();
            list($class, $method) = explode('@', $controller);
            return $d->dispatch($route, $request, $class, $method);
        };
    }
<#unknown>
        }
    }
    public function run()
    {
        $parameters = array_filter($this->parameters(), function ($p) {
            return isset($p);
        });
        return call_user_func_array($this->action['uses'], $parameters);
    }
    public function matches(Request $request)
    }
    public function dispatchToRoute(Request $request)
    {
        $route = $this->findRoute($request);
        $this->events->fire('router.matched', array($route, $request));
        $response = $this->callRouteBefore($route, $request);
        if (is_null($response)) {
            $response = $route->run($request);
        }
        $response = $this->prepareResponse($request, $response);
        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
PATH_TRANSLATED redirect:/index.php/detalle/badfinger
PATH_INFO /artistas/detalle/badfinger
SCRIPT_NAME /index.php
REQUEST_URI /index.php/artistas/detalle/badfinger
QUERY_STRING
REQUEST_METHOD GET
SERVER_PROTOCOL HTTP/1.1
GATEWAY_INTERFACE CGI/1.1
REMOTE_PORT 43186
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 44.197.251.102
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/index.php/artistas/detalle/badfinger
HTTP_USER_AGENT claudebot
HTTP_ACCEPT */*
SSL_TLS_SNI www.rockola.fm
HTTPS on
SCRIPT_URI https://www.rockola.fm/index.php/artistas/detalle/badfinger
SCRIPT_URL /index.php/artistas/detalle/badfinger
FCGI_ROLE RESPONDER
PHP_SELF /index.php/artistas/detalle/badfinger
REQUEST_TIME_FLOAT 1710841602.5936
REQUEST_TIME 1710841602
empty
empty
empty
empty
empty
empty
0. Whoops\Handler\PrettyPageHandler