Error!

Fuel\Core\FuelException [ Error ]:
The requested view could not be found: user/data/magdata.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/user/data.php @ line 263
    258*/
    259
    260        // 印刷部数公表バナー用配列
    261        $this->data['printed_arr'] = Func_Model_User_Common::gen_printed_arr();
    262
    263        $this->template->contents View::forge('user/data/magdata'$this->data);
    264    }
    265
    266
    267
    268    // --------------------------------------------------
    
  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 74
    69            $response Response::forge($response);
    70        }
    71    }
    72    elseif ($e === false)
    73    {
    74        $response Request::forge()->execute()->response();
    75    }
    76    elseif ($route)
    77    {
    78        $response Request::forge($routefalse)->execute(array($e))->response();
    79    }
    
  6. DOCROOT/index.php @ line 95
    90{
    91    // Boot the app...
    92    require APPPATH.'bootstrap.php';
    93
    94    // ... and execute the main request
    95    $response $routerequest();
    96}
    97catch (HttpBadRequestException $e)
    98{
    99    $response $routerequest('_400_'$e);
    100}