sige.tecmexiquense.com
Open in
urlscan Pro
148.135.1.122
Public Scan
Submitted URL: https://mmerida.tecmexiquense.com/
Effective URL: https://sige.tecmexiquense.com/public
Submission: On August 29 via api from US — Scanned from US
Effective URL: https://sige.tecmexiquense.com/public
Submission: On August 29 via api from US — Scanned from US
Form analysis
0 forms found in the DOMText Content
SYMFONY EXCEPTION Symfony Docs RESOURCENOTFOUNDEXCEPTION NOTFOUNDHTTPEXCEPTION HTTP 404 NOT FOUND NO ROUTE FOUND FOR "GET HTTPS://SIGE.TECMEXIQUENSE.COM/PUBLIC" * Exceptions 2 * Logs 1 * Stack Traces 2 EXCEPTIONS 2 SYMFONY\COMPONENT\HTTPKERNEL\EXCEPTION\ NOTFOUNDHTTPEXCEPTION in vendor/symfony/http-kernel/EventListener/RouterListener.php (line 135) 130. 131. if ($referer = $request->headers->get('referer')) { 132. $message .= sprintf(' (from "%s")', $referer); 133. } 134. 135. throw new NotFoundHttpException($message, $e); 136. } catch (MethodNotAllowedException $e) { 137. $message = sprintf('No route found for "%s %s": Method Not Allowed (Allow: %s)', $request->getMethod(), $request->getUriForPath($request->getPathInfo()), implode(', ', $e->getAllowedMethods())); 138. 139. throw new MethodNotAllowedHttpException($e->getAllowedMethods(), $message, $e); 140. } in vendor/symfony/event-dispatcher/Debug/WrappedListener.php -> onKernelRequest (line 118) 113. $this->priority = $dispatcher->getListenerPriority($eventName, $this->listener); 114. 115. $e = $this->stopwatch->start($this->name, 'event_listener'); 116. 117. try { 118. ($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher); 119. } finally { 120. if ($e->isStarted()) { 121. $e->stop(); 122. } 123. } in vendor/symfony/event-dispatcher/EventDispatcher.php -> __invoke (line 230) 225. 226. foreach ($listeners as $listener) { 227. if ($stoppable && $event->isPropagationStopped()) { 228. break; 229. } 230. $listener($event, $eventName, $this); 231. } 232. } 233. 234. /** 235. * Sorts the internal list of listeners for the given event by priority. in vendor/symfony/event-dispatcher/EventDispatcher.php -> callListeners (line 59) 54. } else { 55. $listeners = $this->getListeners($eventName); 56. } 57. 58. if ($listeners) { 59. $this->callListeners($listeners, $eventName, $event); 60. } 61. 62. return $event; 63. } 64. in vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php -> dispatch (line 154) 149. try { 150. $this->beforeDispatch($eventName, $event); 151. try { 152. $e = $this->stopwatch->start($eventName, 'section'); 153. try { 154. $this->dispatcher->dispatch($event, $eventName); 155. } finally { 156. if ($e->isStarted()) { 157. $e->stop(); 158. } 159. } in vendor/symfony/http-kernel/HttpKernel.php -> dispatch (line 139) 134. */ 135. private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response 136. { 137. // request 138. $event = new RequestEvent($this, $request, $type); 139. $this->dispatcher->dispatch($event, KernelEvents::REQUEST); 140. 141. if ($event->hasResponse()) { 142. return $this->filterResponse($event->getResponse(), $request, $type); 143. } 144. in vendor/symfony/http-kernel/HttpKernel.php -> handleRaw (line 75) 70. { 71. $request->headers->set('X-Php-Ob-Level', (string) ob_get_level()); 72. 73. $this->requestStack->push($request); 74. try { 75. return $this->handleRaw($request, $type); 76. } catch (\Exception $e) { 77. if ($e instanceof RequestExceptionInterface) { 78. $e = new BadRequestHttpException($e->getMessage(), $e); 79. } 80. if (false === $catch) { in vendor/symfony/http-kernel/Kernel.php -> handle (line 202) 197. $this->boot(); 198. ++$this->requestStackSize; 199. $this->resetServices = true; 200. 201. try { 202. return $this->getHttpKernel()->handle($request, $type, $catch); 203. } finally { 204. --$this->requestStackSize; 205. } 206. } 207. in vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php -> handle (line 35) 30. $this->request = $request; 31. } 32. 33. public function run(): int 34. { 35. $response = $this->kernel->handle($this->request); 36. $response->send(); 37. 38. if ($this->kernel instanceof TerminableInterface) { 39. $this->kernel->terminate($this->request, $response); 40. } in vendor/autoload_runtime.php -> run (line 35) 30. $app = $app(...$args); 31. 32. exit( 33. $runtime 34. ->getRunner($app) 35. ->run() 36. ); 37. require_once('/home/tecmexi1/public_html/SIGE_UTM/vendor/autoload_runtime.php') in public/index.php (line 5) 1. <?php 2. 3. use App\Kernel; 4. 5. require_once dirname(__DIR__).'/vendor/autoload_runtime.php'; 6. 7. return function (array $context) { 8. return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']); 9. }; 10. SYMFONY\COMPONENT\ROUTING\EXCEPTION\ RESOURCENOTFOUNDEXCEPTION No routes found for "/public/". in vendor/symfony/routing/Matcher/Dumper/CompiledUrlMatcherTrait.php (line 74) 69. if ($allowSchemes) { 70. goto redirect_scheme; 71. } 72. } 73. 74. throw new ResourceNotFoundException(sprintf('No routes found for "%s".', $pathinfo)); 75. } 76. 77. private function doMatch(string $pathinfo, array &$allow = [], array &$allowSchemes = []): array 78. { 79. $allow = $allowSchemes = []; in vendor/symfony/routing/Matcher/UrlMatcher.php -> match (line 106) 101. */ 102. public function matchRequest(Request $request) 103. { 104. $this->request = $request; 105. 106. $ret = $this->match($request->getPathInfo()); 107. 108. $this->request = null; 109. 110. return $ret; 111. } in vendor/symfony/routing/Router.php -> matchRequest (line 257) 252. if (!$matcher instanceof RequestMatcherInterface) { 253. // fallback to the default UrlMatcherInterface 254. return $matcher->match($request->getPathInfo()); 255. } 256. 257. return $matcher->matchRequest($request); 258. } 259. 260. /** 261. * Gets the UrlMatcher or RequestMatcher instance associated with this Router. 262. * in vendor/symfony/http-kernel/EventListener/RouterListener.php -> matchRequest (line 111) 106. 107. // add attributes based on the request (routing) 108. try { 109. // matching a request is more powerful than matching a URL path + context, so try that first 110. if ($this->matcher instanceof RequestMatcherInterface) { 111. $parameters = $this->matcher->matchRequest($request); 112. } else { 113. $parameters = $this->matcher->match($request->getPathInfo()); 114. } 115. 116. if (null !== $this->logger) { in vendor/symfony/event-dispatcher/Debug/WrappedListener.php -> onKernelRequest (line 118) 113. $this->priority = $dispatcher->getListenerPriority($eventName, $this->listener); 114. 115. $e = $this->stopwatch->start($this->name, 'event_listener'); 116. 117. try { 118. ($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher); 119. } finally { 120. if ($e->isStarted()) { 121. $e->stop(); 122. } 123. } in vendor/symfony/event-dispatcher/EventDispatcher.php -> __invoke (line 230) 225. 226. foreach ($listeners as $listener) { 227. if ($stoppable && $event->isPropagationStopped()) { 228. break; 229. } 230. $listener($event, $eventName, $this); 231. } 232. } 233. 234. /** 235. * Sorts the internal list of listeners for the given event by priority. in vendor/symfony/event-dispatcher/EventDispatcher.php -> callListeners (line 59) 54. } else { 55. $listeners = $this->getListeners($eventName); 56. } 57. 58. if ($listeners) { 59. $this->callListeners($listeners, $eventName, $event); 60. } 61. 62. return $event; 63. } 64. in vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php -> dispatch (line 154) 149. try { 150. $this->beforeDispatch($eventName, $event); 151. try { 152. $e = $this->stopwatch->start($eventName, 'section'); 153. try { 154. $this->dispatcher->dispatch($event, $eventName); 155. } finally { 156. if ($e->isStarted()) { 157. $e->stop(); 158. } 159. } in vendor/symfony/http-kernel/HttpKernel.php -> dispatch (line 139) 134. */ 135. private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response 136. { 137. // request 138. $event = new RequestEvent($this, $request, $type); 139. $this->dispatcher->dispatch($event, KernelEvents::REQUEST); 140. 141. if ($event->hasResponse()) { 142. return $this->filterResponse($event->getResponse(), $request, $type); 143. } 144. in vendor/symfony/http-kernel/HttpKernel.php -> handleRaw (line 75) 70. { 71. $request->headers->set('X-Php-Ob-Level', (string) ob_get_level()); 72. 73. $this->requestStack->push($request); 74. try { 75. return $this->handleRaw($request, $type); 76. } catch (\Exception $e) { 77. if ($e instanceof RequestExceptionInterface) { 78. $e = new BadRequestHttpException($e->getMessage(), $e); 79. } 80. if (false === $catch) { in vendor/symfony/http-kernel/Kernel.php -> handle (line 202) 197. $this->boot(); 198. ++$this->requestStackSize; 199. $this->resetServices = true; 200. 201. try { 202. return $this->getHttpKernel()->handle($request, $type, $catch); 203. } finally { 204. --$this->requestStackSize; 205. } 206. } 207. in vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php -> handle (line 35) 30. $this->request = $request; 31. } 32. 33. public function run(): int 34. { 35. $response = $this->kernel->handle($this->request); 36. $response->send(); 37. 38. if ($this->kernel instanceof TerminableInterface) { 39. $this->kernel->terminate($this->request, $response); 40. } in vendor/autoload_runtime.php -> run (line 35) 30. $app = $app(...$args); 31. 32. exit( 33. $runtime 34. ->getRunner($app) 35. ->run() 36. ); 37. require_once('/home/tecmexi1/public_html/SIGE_UTM/vendor/autoload_runtime.php') in public/index.php (line 5) 1. <?php 2. 3. use App\Kernel; 4. 5. require_once dirname(__DIR__).'/vendor/autoload_runtime.php'; 6. 7. return function (array $context) { 8. return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']); 9. }; 10. LOGS 1 Level * Emergency * Alert * Critical * Error * Warning * Notice * Info * Debug Channel * event * request Message DEBUG 18:45:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } DEBUG 18:45:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } DEBUG 18:45:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } DEBUG 18:45:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } DEBUG 18:45:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } ERROR 18:45:29 request Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://sige.tecmexiquense.com/public"" at /home/tecmexi1/public_html/SIGE_UTM/vendor/symfony/http-kernel/EventListener/RouterListener.php line 135 { "exception": {} } DEBUG 18:45:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } DEBUG 18:45:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } DEBUG 18:45:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } DEBUG 18:45:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } DEBUG 18:45:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } DEBUG 18:45:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } DEBUG 18:45:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } DEBUG 18:45:29 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } DEBUG 18:45:29 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } DEBUG 18:45:29 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } DEBUG 18:45:29 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } DEBUG 18:45:29 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments" } STACK TRACES 2 [2/2] NotFoundHttpException Symfony\Component\HttpKernel\Exception\NotFoundHttpException: No route found for "GET https://sige.tecmexiquense.com/public" at vendor/symfony/http-kernel/EventListener/RouterListener.php:135 at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest(object(RequestEvent), 'kernel.request', object(TraceableEventDispatcher)) (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:118) at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object(RequestEvent), 'kernel.request', object(TraceableEventDispatcher)) (vendor/symfony/event-dispatcher/EventDispatcher.php:230) at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener)), 'kernel.request', object(RequestEvent)) (vendor/symfony/event-dispatcher/EventDispatcher.php:59) at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(RequestEvent), 'kernel.request') (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:154) at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object(RequestEvent), 'kernel.request') (vendor/symfony/http-kernel/HttpKernel.php:139) at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1) (vendor/symfony/http-kernel/HttpKernel.php:75) at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true) (vendor/symfony/http-kernel/Kernel.php:202) at Symfony\Component\HttpKernel\Kernel->handle(object(Request)) (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35) at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run() (vendor/autoload_runtime.php:35) at require_once('/home/tecmexi1/public_html/SIGE_UTM/vendor/autoload_runtime.php') (public/index.php:5) [1/2] ResourceNotFoundException Symfony\Component\Routing\Exception\ResourceNotFoundException: No routes found for "/public/". at vendor/symfony/routing/Matcher/Dumper/CompiledUrlMatcherTrait.php:74 at Symfony\Component\Routing\Matcher\CompiledUrlMatcher->match('/public/') (vendor/symfony/routing/Matcher/UrlMatcher.php:106) at Symfony\Component\Routing\Matcher\UrlMatcher->matchRequest(object(Request)) (vendor/symfony/routing/Router.php:257) at Symfony\Component\Routing\Router->matchRequest(object(Request)) (vendor/symfony/http-kernel/EventListener/RouterListener.php:111) at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest(object(RequestEvent), 'kernel.request', object(TraceableEventDispatcher)) (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:118) at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object(RequestEvent), 'kernel.request', object(TraceableEventDispatcher)) (vendor/symfony/event-dispatcher/EventDispatcher.php:230) at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener)), 'kernel.request', object(RequestEvent)) (vendor/symfony/event-dispatcher/EventDispatcher.php:59) at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(RequestEvent), 'kernel.request') (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:154) at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object(RequestEvent), 'kernel.request') (vendor/symfony/http-kernel/HttpKernel.php:139) at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1) (vendor/symfony/http-kernel/HttpKernel.php:75) at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true) (vendor/symfony/http-kernel/Kernel.php:202) at Symfony\Component\HttpKernel\Kernel->handle(object(Request)) (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35) at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run() (vendor/autoload_runtime.php:35) at require_once('/home/tecmexi1/public_html/SIGE_UTM/vendor/autoload_runtime.php') (public/index.php:5) 404 HTTP status 404 Not Found Controller n/a Route name n/a Has session no Stateless Check no Forwarded to ErrorController (1166ce) 30 ms Total time 30 ms Initialization time 7 ms 4.0 MiB Peak memory usage 4.0 MiB PHP memory limit 128 MiB 0 0 AJAX requests (Clear) # Profile Method Type Status URL Time 1 Errors 1 Warnings 0 Deprecations 0 n/a Authenticated No Firewall name main 1 ms Render Time 1 ms Template Calls 8 Block Calls 1 Macro Calls 0 5.4.41 Profiler token 6d226c Environment dev Debug enabled PHP version 8.1.29 View phpinfo() PHP Extensions xdebug ✗ APCu ✗ OPcache ✓ PHP SAPI fpm-fcgi Resources Read Symfony 5.4.41 Docs Help Symfony Support Channels