xxy.cmcc.digital Open in urlscan Pro
2606:4700:3035::ac43:da36  Public Scan

URL: https://xxy.cmcc.digital/
Submission: On June 20 via api from US — Scanned from DE

Form analysis 0 forms found in the DOM

Text Content

SYMFONY EXCEPTION

Symfony Docs


NOTFOUNDHTTPEXCEPTION


HTTP 404 NOT FOUND


 * Exception
 * Stack Trace


EXCEPTION


SYMFONY\COMPONENT\HTTPKERNEL\EXCEPTION\ NOTFOUNDHTTPEXCEPTION

in
/www/wwwroot/apps.siuu.me/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php
(line 233)
 228.      */
 229.     protected function handleDispatcherResponse($routeInfo)
 230.     {
 231.         switch ($routeInfo[0]) {
 232.             case Dispatcher::NOT_FOUND:
 233.                 throw new NotFoundHttpException;
 234.             case Dispatcher::METHOD_NOT_ALLOWED:
 235.                 throw new MethodNotAllowedHttpException($routeInfo[1]);
 236.             case Dispatcher::FOUND:
 237.                 return $this->handleFoundRoute($routeInfo);
 238.         }

in
/www/wwwroot/apps.siuu.me/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php
-> handleDispatcherResponse (line 173)
 168.                 if (isset($this->router->getRoutes()[$method.$pathInfo])) {
 169.                     return $this->handleFoundRoute([true, $this->router->getRoutes()[$method.$pathInfo]['action'], []]);
 170.                 }
 171. 
 172.                 return $this->handleDispatcherResponse(
 173.                     $this->createDispatcher()->dispatch($method, $pathInfo)
 174.                 );
 175.             });
 176.         } catch (Throwable $e) {
 177.             return $this->prepareResponse($this->sendExceptionToHandler($e));
 178.         }

in
/www/wwwroot/apps.siuu.me/vendor/laravel/lumen-framework/src/Routing/Pipeline.php
-> Laravel\Lumen\Concerns\{closure} (line 48)
 43.      */
 44.     protected function prepareDestination(BaseClosure $destination)
 45.     {
 46.         return function ($passable) use ($destination) {
 47.             try {
 48.                 return $destination($passable);
 49.             } catch (Throwable $e) {
 50.                 return $this->handleException($passable, $e);
 51.             }
 52.         };
 53.     }

in
/www/wwwroot/apps.siuu.me/vendor/illuminate/session/Middleware/StartSession.php
-> Laravel\Lumen\Routing\{closure} (line 121)
 116.             $this->startSession($request, $session)
 117.         );
 118. 
 119.         $this->collectGarbage($session);
 120. 
 121.         $response = $next($request);
 122. 
 123.         $this->storeCurrentUrl($request, $session);
 124. 
 125.         $this->addCookieToResponse($response, $session);
 126. 

in
/www/wwwroot/apps.siuu.me/vendor/illuminate/session/Middleware/StartSession.php
-> handleStatefulRequest (line 64)
 59.         if ($this->manager->shouldBlock() ||
 60.             ($request->route() instanceof Route && $request->route()->locksFor())) {
 61.             return $this->handleRequestWhileBlocking($request, $session, $next);
 62.         }
 63. 
 64.         return $this->handleStatefulRequest($request, $session, $next);
 65.     }
 66. 
 67.     /**
 68.      * Handle the given request within session state.
 69.      *

in /www/wwwroot/apps.siuu.me/vendor/illuminate/pipeline/Pipeline.php -> handle
(line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

in
/www/wwwroot/apps.siuu.me/vendor/laravel/lumen-framework/src/Routing/Pipeline.php
-> Illuminate\Pipeline\{closure} (line 30)
 25.         return function ($stack, $pipe) {
 26.             return function ($passable) use ($stack, $pipe) {
 27.                 try {
 28.                     $slice = parent::carry();
 29. 
 30.                     return ($slice($stack, $pipe))($passable);
 31.                 } catch (Throwable $e) {
 32.                     return $this->handleException($passable, $e);
 33.                 }
 34.             };
 35.         };

in /www/wwwroot/apps.siuu.me/vendor/illuminate/pipeline/Pipeline.php ->
Laravel\Lumen\Routing\{closure} (line 103)
 98.      {
 99.          $pipeline = array_reduce(
 100.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
 101.         );
 102. 
 103.         return $pipeline($this->passable);
 104.     }
 105. 
 106.     /**
 107.      * Run the pipeline and return the result.
 108.      *

in
/www/wwwroot/apps.siuu.me/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php
-> then (line 426)
 421.     {
 422.         if (count($middleware) > 0 && ! $this->shouldSkipMiddleware()) {
 423.             return (new Pipeline($this))
 424.                 ->send($this->make('request'))
 425.                 ->through($middleware)
 426.                 ->then($then);
 427.         }
 428. 
 429.         return $then($this->make('request'));
 430.     }
 431. 

in
/www/wwwroot/apps.siuu.me/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php
-> sendThroughPipeline (line 175)
 170.                 }
 171. 
 172.                 return $this->handleDispatcherResponse(
 173.                     $this->createDispatcher()->dispatch($method, $pathInfo)
 174.                 );
 175.             });
 176.         } catch (Throwable $e) {
 177.             return $this->prepareResponse($this->sendExceptionToHandler($e));
 178.         }
 179.     }
 180. 

in
/www/wwwroot/apps.siuu.me/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php
-> dispatch (line 112)
 107.      * @param  \Symfony\Component\HttpFoundation\Request|null  $request
 108.      * @return void
 109.      */
 110.     public function run($request = null)
 111.     {
 112.         $response = $this->dispatch($request);
 113. 
 114.         if ($response instanceof SymfonyResponse) {
 115.             $response->send();
 116.         } else {
 117.             echo (string) $response;

Application->run() in /www/wwwroot/apps.siuu.me/public/index.php (line 28)
 23. | the client's browser allowing them to enjoy the creative
 24. | and wonderful application we have prepared for them.
 25. |
 26. */
 27. 
 28. $app->run();
 29. 


STACK TRACE

NotFoundHttpException

Symfony\Component\HttpKernel\Exception\NotFoundHttpException:

  at /www/wwwroot/apps.siuu.me/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php:233
  at Laravel\Lumen\Application->handleDispatcherResponse()
     (/www/wwwroot/apps.siuu.me/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php:173)
  at Laravel\Lumen\Application->Laravel\Lumen\Concerns\{closure}()
     (/www/wwwroot/apps.siuu.me/vendor/laravel/lumen-framework/src/Routing/Pipeline.php:48)
  at Laravel\Lumen\Routing\Pipeline->Laravel\Lumen\Routing\{closure}()
     (/www/wwwroot/apps.siuu.me/vendor/illuminate/session/Middleware/StartSession.php:121)
  at Illuminate\Session\Middleware\StartSession->handleStatefulRequest()
     (/www/wwwroot/apps.siuu.me/vendor/illuminate/session/Middleware/StartSession.php:64)
  at Illuminate\Session\Middleware\StartSession->handle()
     (/www/wwwroot/apps.siuu.me/vendor/illuminate/pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/www/wwwroot/apps.siuu.me/vendor/laravel/lumen-framework/src/Routing/Pipeline.php:30)
  at Laravel\Lumen\Routing\Pipeline->Laravel\Lumen\Routing\{closure}()
     (/www/wwwroot/apps.siuu.me/vendor/illuminate/pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then()
     (/www/wwwroot/apps.siuu.me/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php:426)
  at Laravel\Lumen\Application->sendThroughPipeline()
     (/www/wwwroot/apps.siuu.me/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php:175)
  at Laravel\Lumen\Application->dispatch()
     (/www/wwwroot/apps.siuu.me/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php:112)
  at Laravel\Lumen\Application->run()
     (/www/wwwroot/apps.siuu.me/public/index.php:28)