Error!

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

COREPATH/classes/asset/instance.php @ line 413

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

Backtrace

  1. COREPATH/classes/asset/instance.php @ line 289
    284
    285        $this->_parse_assets($type$files$attr$group$raw);
    286
    287        if ($render)
    288        {
    289            return $this->render($group$raw);
    290        }
    291
    292        return $this;
    293    }
    294
    
  2. COREPATH/classes/asset.php @ line 201
    196     * @param    bool    $raw            whether to return the raw file or not when group is not set
    197     * @return    string
    198     */
    199    public static function css($stylesheets = array(), $attr = array(), $group NULL$raw false)
    200    {
    201        return static::instance()->assettype('css'$stylesheets$attr$group$raw);
    202    }
    203
    204    // --------------------------------------------------------------------
    205
    206    /**
    
  3. APPPATH/views/404.php @ line 11
     6    <meta name="viewport" content="width=device-width, initial-scale=1.0">
     7    <link rel="icon" type="image/png" href="<?= Asset::get_file('logo.png','img')?>" />
     8    <meta name="description" content="WePlay.co">
     9    <meta name="keywords" content="WePlay.co">
    10    <meta name="author" content="OrcaSystems">
    11    <?= Asset::css(array('bootstrap-grid.css',
    12        'icons.css',
    13        'animate.min.css',
    14        'style.css',
    15        'responsive.css',
    16        'chosen.css',
    
  4. COREPATH/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. COREPATH/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. COREPATH/classes/view.php @ line 680
    675        {
    676            throw new \FuelException('You must set the file to use within your view before rendering');
    677        }
    678
    679        // combine local and global data and capture the output
    680        $return $this->process_file();
    681
    682        // restore the current language setting
    683        $this->active_language and \Config::set('language'$current_language);
    684
    685        // and the active request class
    
  7. COREPATH/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. COREPATH/classes/response.php @ line 382
    377     *
    378     * @return  string
    379     */
    380    public function __toString()
    381    {
    382        return (string) $this->body;
    383    }
    384}
    
  9. COREPATH/classes/response.php @ line 362
    357     *
    358     * @return  void
    359     */
    360    public function send($send_headers false)
    361    {
    362        $body $this->__toString();
    363
    364        if ($send_headers)
    365        {
    366            $this->send_headers();
    367        }
    
  10. COREPATH/classes/httpexception.php @ line 40
    35
    36        // fire any framework shutdown events
    37        \Event::instance()->trigger('fuel-shutdown''''none'true);
    38
    39        // send the response out
    40        $response->send(true);
    41    }
    42}
    
  11. COREPATH/classes/errorhandler.php @ line 124
    119        // make sure we've got something useful passed
    120        if ($e instanceOf \Exception or (PHP_VERSION_ID >= 70000 and $e instanceOf \Error))
    121        {
    122            if (method_exists($e'handle'))
    123            {
    124                return $e->handle();
    125            }
    126
    127            $severity = ( ! isset(static::$levels[$e->getCode()])) ? $e->getCode() : static::$levels[$e->getCode()];
    128            logger(static::$loglevel$severity.' - '.$e->getMessage().' in '.$e->getFile().' on line '.$e->getLine(), array('exception' => $e));
    129
    
  12. COREPATH/bootstrap.php @ line 96
    91        include COREPATH.'classes/errorhandler.php';
    92        class_alias('\Fuel\Core\Errorhandler''Errorhandler');
    93        class_alias('\Fuel\Core\PhpErrorException''PhpErrorException');
    94    }
    95
    96    return \Errorhandler::exception_handler($e);
    97});
    98
    99set_error_handler(function ($severity$message$filepath$line)
    100{
    101    // reset the autoloader