11. Symfony\Component\HttpKernel\Exception\NotFoundHttpException
…/­vendor/­laravel/­framework/­src/­Illuminate/­Routing/­RouteCollection.php148
10. Illuminate\Routing\RouteCollection match
…/­vendor/­laravel/­framework/­src/­Illuminate/­Routing/­Router.php1049
9. Illuminate\Routing\Router findRoute
…/­vendor/­laravel/­framework/­src/­Illuminate/­Routing/­Router.php1017
8. Illuminate\Routing\Router dispatchToRoute
…/­vendor/­laravel/­framework/­src/­Illuminate/­Routing/­Router.php996
7. Illuminate\Routing\Router dispatch
…/­vendor/­laravel/­framework/­src/­Illuminate/­Foundation/­Application.php775
6. Illuminate\Foundation\Application dispatch
…/­vendor/­laravel/­framework/­src/­Illuminate/­Foundation/­Application.php745
5. Illuminate\Foundation\Application handle
…/­vendor/­laravel/­framework/­src/­Illuminate/­Session/­Middleware.php72
4. Illuminate\Session\Middleware handle
…/­vendor/­laravel/­framework/­src/­Illuminate/­Cookie/­Queue.php47
3. Illuminate\Cookie\Queue handle
…/­vendor/­laravel/­framework/­src/­Illuminate/­Cookie/­Guard.php51
2. Illuminate\Cookie\Guard handle
…/­vendor/­stack/­builder/­src/­Stack/­StackedHttpKernel.php23
1. Stack\StackedHttpKernel handle
…/­vendor/­laravel/­framework/­src/­Illuminate/­Foundation/­Application.php641
0. Illuminate\Foundation\Application run
…/­index.php49

Symfony \ Component \ HttpKernel \ Exception \ NotFoundHttpException Symfony\Component\HttpKernel\Exception\NotFoundHttpException thrown with message "" Stacktrace: #11 Symfony\Component\HttpKernel\Exception\NotFoundHttpException in /home/yildirimsurucu/public_html/vendor/laravel/framework/src/Illuminate/Routing/RouteCollection.php:148 #10 Illuminate\Routing\RouteCollection:match in /home/yildirimsurucu/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:1049 #9 Illuminate\Routing\Router:findRoute in /home/yildirimsurucu/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:1017 #8 Illuminate\Routing\Router:dispatchToRoute in /home/yildirimsurucu/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:996 #7 Illuminate\Routing\Router:dispatch in /home/yildirimsurucu/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:775 #6 Illuminate\Foundation\Application:dispatch in /home/yildirimsurucu/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:745 #5 Illuminate\Foundation\Application:handle in /home/yildirimsurucu/public_html/vendor/laravel/framework/src/Illuminate/Session/Middleware.php:72 #4 Illuminate\Session\Middleware:handle in /home/yildirimsurucu/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Queue.php:47 #3 Illuminate\Cookie\Queue:handle in /home/yildirimsurucu/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Guard.php:51 #2 Illuminate\Cookie\Guard:handle in /home/yildirimsurucu/public_html/vendor/stack/builder/src/Stack/StackedHttpKernel.php:23 #1 Stack\StackedHttpKernel:handle in /home/yildirimsurucu/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:641 #0 Illuminate\Foundation\Application:run in /home/yildirimsurucu/public_html/index.php:49

  1. $others = $this->checkForAlternateVerbs($request);
  2. if (count($others) > 0)
  3. {
  4. return $this->getOtherMethodsRoute($request, $others);
  5. }
  6. throw new NotFoundHttpException;
  7. }
  1. * Find the route matching a given request.
  2. *
  3. * @param \Illuminate\Http\Request $request
  4. * @return \Illuminate\Routing\Route
  5. */
  6. protected function findRoute($request)
  7. {
  8. $this->current = $route = $this->routes->match($request);
  9. return $this->substituteBindings($route);
  1. * Dispatch the request to a route and return the response.
  2. *
  3. * @param \Illuminate\Http\Request $request
  4. * @return mixed
  5. */
  6. public function dispatchToRoute(Request $request)
  7. {
  8. $route = $this->findRoute($request);
  9. $this->events->fire('router.matched', array($route, $request));
  1. // If no response was returned from the before filter, we will call the proper
  2. // route instance to get the response. If no route is found a response will
  3. // still get returned based on why no routes were found for this request.
  4. $response = $this->callFilter('before', $request);
  5. if (is_null($response))
  6. {
  7. $response = $this->dispatchToRoute($request);
  8. }
  1. }
  2. if ($this->runningUnitTests() && ! $this['session']->isStarted())
  3. {
  4. $this['session']->start();
  5. }
  6. return $this['router']->dispatch($this->prepareRequest($request));
  7. }
  1. {
  2. try
  3. {
  4. $this->refreshRequest($request = Request::createFromBase($request));
  5. $this->boot();
  6. return $this->dispatch($request);
  7. }
  8. catch (\Exception $e)
  1. if ($this->sessionConfigured())
  2. {
  3. $session = $this->startSession($request);
  4. $request->setSession($session);
  5. }
  6. $response = $this->app->handle($request, $type, $catch);
  7. // Again, if the session has been configured we will need to close out the session
  1. * @param \Symfony\Component\HttpFoundation\Request $request
  2. * @param int $type
  3. * @param bool $catch
  4. * @return \Symfony\Component\HttpFoundation\Response
  5. */
  6. public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
  7. {
  8. $response = $this->app->handle($request, $type, $catch);
  9. foreach ($this->cookies->getQueuedCookies() as $cookie)
  1. * @param \Symfony\Component\HttpFoundation\Request $request
  2. * @param int $type
  3. * @param bool $catch
  4. * @return \Symfony\Component\HttpFoundation\Response
  5. */
  6. public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
  7. {
  8. return $this->encrypt($this->app->handle($this->decrypt($request), $type, $catch));
  9. }
  1. {
  2. $this->app = $app;
  3. $this->middlewares = $middlewares;
  4. }
  5. public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
  6. {
  7. return $this->app->handle($request, $type, $catch);
  8. }
  1. * @param \Symfony\Component\HttpFoundation\Request $request
  2. * @return void
  3. */
  4. public function run(SymfonyRequest $request = null)
  5. {
  6. $request = $request ?: $this['request'];
  7. $response = with($stack = $this->getStackedClient())->handle($request);
  8. $response->send();
  1. | Once we have the application, we can simply call the run method,
  2. | which will execute the request and send the response back to
  3. | the client's browser allowing them to enjoy the creative
  4. | and wonderful application we have whipped up for them.
  5. |
  6. */
  7. $app->run();
Key Value
HTTP_ACCEPT text/html,image/png,image/jpeg,image/pjpeg,image/x-xbitmap,image/svg+xml,image/gif;q=0.9,*/*;q=0.1
HTTP_ACCEPT_ENCODING gzip, identity;q=0.9
HTTP_ACCEPT_LANGUAGE tr, en, *
HTTP_CONNECTION keep-alive
HTTP_COOKIE $Version=1; laravel_session=eyJpdiI6IlA0dHZISkt6b251S1JzV0pjVWU3ZEE9PSIsInZhbHVlIjoiTHRBWWpNRDY4cURxY21FM3V5Vk9YcHpLemxlblRBUjZieWU4MGVTUnRZRHIrTU4xQ0U5ZW5sSHVkb016RUZTQjh2ejAxdXpYTThWRkhKMGR2bkVuVXc9PSIsIm1hYyI6ImM1ZWVmZTJkNmQxZDE1MDVjNzFiYjBhOGJmYzE4MjIwMzRiYWE3ZTNjOTAxMGIyNTcxYTdhODU3OTk2ZWU0YzcifQ%3D%3D; $Path=/
HTTP_HOST yildirimsurucukursu.com.tr
HTTP_REFERER http://yildirimsurucukursu.com.tr/resim-galerisi
HTTP_USER_AGENT Mozilla/4.5 (compatible; HTTrack 3.0x; Windows 98)
DOCUMENT_ROOT /home/yildirimsurucu/public_html
REMOTE_ADDR 95.9.116.200
REMOTE_PORT 62243
SERVER_ADDR 188.132.231.74
SERVER_NAME yildirimsurucukursu.com.tr
SERVER_ADMIN webmaster@yildirimsurucukursu.com.tr
SERVER_PORT 80
REQUEST_URI /assets/js/jquery.mousewheel-3.0.6.pack.js
REDIRECT_URL /assets/js/jquery.mousewheel-3.0.6.pack.js
REDIRECT_STATUS 200
SCRIPT_FILENAME /home/yildirimsurucu/public_html/index.php
QUERY_STRING
SCRIPT_URI http://yildirimsurucukursu.com.tr/assets/js/jquery.mousewheel-3.0.6.pack.js
SCRIPT_URL /assets/js/jquery.mousewheel-3.0.6.pack.js
SCRIPT_NAME /index.php
SERVER_PROTOCOL HTTP/1.1
SERVER_SOFTWARE LiteSpeed
REQUEST_METHOD GET
PHP_SELF /index.php
REQUEST_TIME_FLOAT 1420274244.9
REQUEST_TIME 1420274244
argv Array ( )
argc 0
empty
empty
empty
Key Value
$Version 1
laravel_session eyJpdiI6IlA0dHZISkt6b251S1JzV0pjVWU3ZEE9PSIsInZhbHVlIjoiTHRBWWpNRDY4cURxY21FM3V5Vk9YcHpLemxlblRBUjZieWU4MGVTUnRZRHIrTU4xQ0U5ZW5sSHVkb016RUZTQjh2ejAxdXpYTThWRkhKMGR2bkVuVXc9PSIsIm1hYyI6ImM1ZWVmZTJkNmQxZDE1MDVjNzFiYjBhOGJmYzE4MjIwMzRiYWE3ZTNjOTAxMGIyNTcxYTdhODU3OTk2ZWU0YzcifQ==
$Path /
empty
empty
0. Whoops\Handler\PrettyPageHandler