Error!

Fuel\Core\FuelException [ Error ]:
The requested view could not be found: frontend/page/index

COREPATH/classes/view.php @ line 388

383        \Finder::instance()->flash($this->request_paths);
384
385        // locate the view file
386        if (($path = \Finder::search('views'$file'.'.$this->extensionfalsefalse)) === false)
387        {
388            throw new \FuelException('The requested view could not be found: '.\Fuel::clean_path($file));
389        }
390
391        // Store the file path locally
392        $this->file_name $path;
393

Backtrace

  1. PKGPATH/parser/classes/view.php @ line 107
    102        {
    103            // Set extension when given
    104            $extension and $view->extension $extension;
    105
    106            // Load the view file
    107            $view->set_filename($file);
    108        }
    109
    110        return $view;
    111    }
    112}
    
  2. APPPATH/classes/controller/frontend/page.php @ line 8
     3
     4    public function action_index()
     5    {
     6        $data['frontend_pages'] = Model_Frontend_Page::find('all');
     7        $this->template->title "Frontend_pages";
     8        $this->template->content View::forge('frontend/page/index'$data);
     9
    10    }
    11
    12    public function action_view($id null)
    13    {
    
  3. COREPATH/classes/request.php @ line 444
    439                    // fire any controller started events
    440                    \Event::instance()->has_events('controller_started') and \Event::instance()->trigger('controller_started''''none');
    441
    442                    $class->hasMethod('before') and $class->getMethod('before')->invoke($this->controller_instance);
    443
    444                    $response $action->invokeArgs($this->controller_instance$this->method_params);
    445
    446                    $class->hasMethod('after') and $response $class->getMethod('after')->invoke($this->controller_instance$response);
    447
    448                    // fire any controller finished events
    449                    \Event::instance()->has_events('controller_finished') and \Event::instance()->trigger('controller_finished''''none');
    
  4. DOCROOT/index.php @ line 49
    44require APPPATH.'bootstrap.php';
    45
    46// Generate the request, execute it and send the output.
    47try
    48{
    49    $response Request::forge()->execute()->response();
    50}
    51catch (HttpNotFoundException $e)
    52{
    53    \Request::reset_request(true);
    54