Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

Unstinted's avatar

Reset Token Issue

My reset token is not providing my reset views. Please what is the problem? Can someone help me out.

[2015-06-19 17:16:20] production.ERROR: exception 'Symfony\Component\HttpKernel\Exception\NotFoundHttpException' in C:\xampp\htdocs\wpc\bootstrap\compiled.php:5751 Stack trace: #0 C:\xampp\htdocs\wpc\bootstrap\compiled.php(5073): Illuminate\Routing\RouteCollection->match(Object(Illuminate\Http\Request)) #1 C:\xampp\htdocs\wpc\bootstrap\compiled.php(5061): Illuminate\Routing\Router->findRoute(Object(Illuminate\Http\Request)) #2 C:\xampp\htdocs\wpc\bootstrap\compiled.php(5053): Illuminate\Routing\Router->dispatchToRoute(Object(Illuminate\Http\Request)) #3 C:\xampp\htdocs\wpc\bootstrap\compiled.php(715): Illuminate\Routing\Router->dispatch(Object(Illuminate\Http\Request)) #4 C:\xampp\htdocs\wpc\bootstrap\compiled.php(696): Illuminate\Foundation\Application->dispatch(Object(Illuminate\Http\Request)) #5 C:\xampp\htdocs\wpc\bootstrap\compiled.php(7825): Illuminate\Foundation\Application->handle(Object(Illuminate\Http\Request), 1, true) #6 C:\xampp\htdocs\wpc\bootstrap\compiled.php(8432): Illuminate\Session\Middleware->handle(Object(Illuminate\Http\Request), 1, true) #7 C:\xampp\htdocs\wpc\bootstrap\compiled.php(8379): Illuminate\Cookie\Queue->handle(Object(Illuminate\Http\Request), 1, true) #8 C:\xampp\htdocs\wpc\bootstrap\compiled.php(11045): Illuminate\Cookie\Guard->handle(Object(Illuminate\Http\Request), 1, true) #9 C:\xampp\htdocs\wpc\bootstrap\compiled.php(657): Stack\StackedHttpKernel->handle(Object(Illuminate\Http\Request)) #10 C:\xampp\htdocs\wpc\public\index.php(49): Illuminate\Foundation\Application->run() #11 C:\xampp\htdocs\wpc\server.php(19): require_once('C:\xampp\htdocs...') #12 {main} [] []

0 likes
4 replies
mstnorris's avatar
  1. What version of Laravel are you using?
  2. If you're using 5.1, then have you created the views?
leaddevelopers's avatar

i am facing the almost same issue. I have recently installed laravel 4.2 on localhost and just trying to run http://localhost/satyamweb/public/hello and facing the issue below

Symfony \ Component \ HttpKernel \ Exception \ NotFoundHttpException Open: E:\wamp1\www\satyamweb\bootstrap\compiled.php

        if (!is_null($route)) {
            return $route->bind($request);
        }
        $others = $this->checkForAlternateVerbs($request);
        if (count($others) > 0) {
            return $this->getOtherMethodsRoute($request, $others);
        }
        throw new NotFoundHttpException();
    }
    protected function checkForAlternateVerbs($request)
deltasolutions's avatar

@leaddevelopers , i think your problem is that you are not pointing to the correct url , the root of your webserver or virtualhost has to be /public ... If you have urlrewrite enabled and configured correct via .htaccess ( can be found in docs ) then you must receive the laravel welcome page in a clean install if you browse to the root. If this works your config is ok.

In your case here where i think urlrewrite is not active you need to browse to /public/index.php/hello , but it is much better to use urlrewrite

@Unstinted there is not enough information here to help you , does your routing work ? is the variable unknown ?

1 like

Please or to participate in this conversation.