Error!

Fuel\Core\FuelException [ Error ]:
Could not find asset: bootstrap.min.css

DOCROOT/fuel/core/classes/asset/instance.php @ line 415

410                            if ($this->_fail_silently)
411                            {
412                                continue;
413                            }
414
415                            throw new \FuelException('Could not find asset: '.$filename);
416                        }
417                    }
418                    else
419                    {
420                        if ($raw or $inline)

Backtrace

  1. DOCROOT/fuel/core/classes/asset/instance.php @ line 291
    286
    287        $this->_parse_assets($type$files$attr$group$raw);
    288
    289        if ($render)
    290        {
    291            return $this->render($group$raw);
    292        }
    293
    294        return $this;
    295    }
    296
    
  2. DOCROOT/fuel/core/classes/asset.php @ line 180
    175     * @param    bool    $raw            whether to return the raw file or not when group is not set
    176     * @return    string
    177     */
    178    public static function css($stylesheets = array(), $attr = array(), $group NULL$raw false)
    179    {
    180        return static::instance()->assettype('css'$stylesheets$attr$group$raw);
    181    }
    182
    183    // --------------------------------------------------------------------
    184
    185    /**
    
  3. APPPATH/views/template_pride.php @ line 26
    21    <link rel="apple-touch-icon" sizes="76x76" href="<?php echo Uri::base(false); ?>assets/img/ico76px.png">
    22    <link rel="apple-touch-icon" sizes="120x120" href="<?php echo Uri::base(false); ?>assets/img/ico120px.png">
    23    <link rel="apple-touch-icon" sizes="152x152" href="<?php echo Uri::base(false); ?>assets/img/ico152px.png">
    24
    25    <!-- CSS -->
    26    <?php echo Asset::css('bootstrap.min.css'); ?>
    27    <?php echo Asset::css('font-awesome.min.css'); ?>
    28    <?php echo Asset::css('ddtech.min.css'); ?>
    29    <?php echo Asset::css('mediaqueries.min.css'); ?>
    30
    31    <!-- HTML5 elements and media queries Support for IE8 HTML5 shim and Respond.js -->
    
  4. DOCROOT/fuel/core/classes/view.php @ line 258
    253            ob_start();
    254
    255            try
    256            {
    257                // Load the view within the current scope
    258                include $__file_name;
    259            }
    260            catch (\Exception $e)
    261            {
    262                // Delete the output buffer
    263                ob_end_clean();
    
  5. DOCROOT/fuel/core/classes/view.php @ line 274
    269            // Get the captured output and close the buffer
    270            return ob_get_clean();
    271        };
    272
    273        // import and process the view file
    274        $result $clean_room($file_override ?: $this->file_name$data $this->get_data());
    275
    276        // disable sanitization on objects that support it
    277        $this->unsanitize($data);
    278
    279        // return the result
    
  6. DOCROOT/fuel/core/classes/view.php @ line 678
    673        {
    674            throw new \FuelException('You must set the file to use within your view before rendering');
    675        }
    676
    677        // combine local and global data and capture the output
    678        $return $this->process_file();
    679
    680        // restore the current language setting
    681        $this->active_language and \Config::set('language'$current_language);
    682
    683        // and the active request class
    
  7. DOCROOT/fuel/core/classes/view.php @ line 227
    222     */
    223    public function __toString()
    224    {
    225        try
    226        {
    227            return $this->render();
    228        }
    229        catch (\Exception $e)
    230        {
    231            \Errorhandler::exception_handler($e);
    232
    
  8. DOCROOT/fuel/core/classes/response.php @ line 382
    377     *
    378     * @return  string
    379     */
    380    public function __toString()
    381    {
    382        return (string) $this->body;
    383    }
    384}
    
  9. DOCROOT/index.php @ line 117
    112    $response $routerequest('_500_'$e);
    113}
    114
    115// This will add the execution time and memory usage to the output.
    116// Comment this out if you don't use it.
    117$response->body((string) $response);
    118if (strpos($response->body(), '{exec_time}') !== false or strpos($response->body(), '{mem_usage}') !== false)
    119{
    120    $bm Profiler::app_total();
    121    $response->body(
    122        str_replace(