Error!

Fuel\Core\FuelException [ Error ]:
The requested view could not be found: inquire/index.php

COREPATH/classes/view.php @ line 440

435        \Finder::instance()->flash($this->request_paths);
436
437        // locate the view file
438        if (($path = \Finder::search('views'$file'.'.$this->extensionfalsefalse)) === false)
439        {
440            throw new \FuelException('The requested view could not be found: '.\Fuel::clean_path($file).'.'.$this->extension);
441        }
442
443        // Store the file path locally
444        $this->file_name $path;
445

Backtrace

  1. COREPATH/classes/view.php @ line 126
    121
    122        $this->filter_closures = \Config::get('filter_closures'true);
    123
    124        if ($file !== null)
    125        {
    126            $this->set_filename($file);
    127        }
    128
    129        if ($data !== null)
    130        {
    131            // Add the values to the current data
    
  2. COREPATH/classes/view.php @ line 96
    91     * @param   bool    $auto_filter
    92     * @return  View
    93     */
    94    public static function forge($file null$data null$auto_filter null)
    95    {
    96        return new static($file$data$auto_filter);
    97    }
    98
    99    /**
    100     Sets the initial view filename and local data.
    101     *
    
  3. APPPATH/classes/controller/inquire.php @ line 63
    58        $formRand rand($rand_min$rand_max);
    59        $data['formRand'] = $formRand;
    60        $_SESSION['formRandSession'] = $formRand;
    61
    62        $data['title'] = 'ポケットの中の物語';
    63        $this->template->content View::forge('inquire/index'$data);
    64    }
    65
    66    /**
    67     お問い合わせ確認.
    68     *
    
  4. COREPATH/classes/request.php @ line 454
    449                    // fire any controller started events
    450                    \Event::instance()->has_events('controller_started') and \Event::instance()->trigger('controller_started''''none');
    451
    452                    $class->hasMethod('before') and $class->getMethod('before')->invoke($this->controller_instance);
    453
    454                    $response $action->invokeArgs($this->controller_instance$this->method_params);
    455
    456                    $class->hasMethod('after') and $response $class->getMethod('after')->invoke($this->controller_instance$response);
    457
    458                    // fire any controller finished events
    459                    \Event::instance()->has_events('controller_finished') and \Event::instance()->trigger('controller_finished''''none');
    
  5. DOCROOT/index.php @ line 71
    66            $response Response::forge($response);
    67        }
    68    }
    69    elseif ($e === false)
    70    {
    71        $response Request::forge()->execute()->response();
    72    }
    73    elseif ($route)
    74    {
    75        $response Request::forge($routefalse)->execute(array($e))->response();
    76    }
    
  6. DOCROOT/index.php @ line 92
    87{
    88    // Boot the app...
    89    require APPPATH.'bootstrap.php';
    90
    91    // ... and execute the main request
    92    $response $routerequest();
    93}
    94catch (HttpBadRequestException $e)
    95{
    96    $response $routerequest('_400_'$e);
    97}