Error!

Fuel\Core\FuelException [ Error ]:
The requested view could not be found: information/13/1320170811.php

COREPATH/classes/view.php @ line 477

472        }
473
474        // did we find it?
475        if ( ! $this->file_name)
476        {
477            throw new \FuelException('The requested view could not be found: '.\Fuel::clean_path($search['file']).'.'.$search['extension']);
478        }
479
480        return $this;
481    }
482

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. COREPATH/classes/theme.php @ line 216
    211        if ($this->active['path'] === null)
    212        {
    213            throw new \ThemeException('You must set an active theme.');
    214        }
    215
    216        return \View::forge($this->find_file($view), $data$auto_filter);
    217    }
    218
    219    /**
    220     Loads a viewmodel, and have it use the view from the currently active theme,
    221     the fallback theme, or the standard FuelPHP cascading file system
    
  4. APPPATH/modules/special/classes/controller/information.php @ line 30
    25  
    26    if ($test === 'check') {
    27      $this->theme->template->main->content $this->theme->view('information/' . static::$config['Bank_CD'] . '/pre');
    28      
    29    } else {
    30      $this->theme->template->main->content $this->theme->view('information/' . static::$config['Bank_CD'] . '/' . static::$Kaisai_CD);
    31    }
    32  }
    33}
    
  5. 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');
    
  6. APPPATH/_public/index.php @ line 48
    43require APPPATH.'bootstrap.php';
    44
    45// Generate the request, execute it and send the output.
    46try
    47{
    48    $response Request::forge()->execute()->response();
    49}
    50catch (HttpNotFoundException $e)
    51{
    52    \Request::reset_request(true);
    53