-
SYSTEMPATH/View/View.php : 213 — CodeIgniter\Exceptions\FrameworkException::forInvalidFile ( arguments )
$path
404.php
206 { 207 $this->renderVars['file'] = $this->loader->locateFile($this->renderVars['view'], 'Views', empty($fileExt) ? 'php' : $fileExt); 208 } 209 210 // locateFile will return an empty string if the file cannot be found. 211 if (empty($this->renderVars['file'])) 212 { 213 throw ViewException::forInvalidFile($this->renderVars['view']); 214 } 215 216 // Make our view data available to the view. 217 $this->tempData = $this->tempData ?? $this->data; 218 219 if ($saveData) 220 {
-
SYSTEMPATH/Common.php : 1271 — CodeIgniter\View\View->render ( arguments )
$view
404
$options
Array ( )
$saveData
1
1264 if (array_key_exists('saveData', $options)) 1265 { 1266 $saveData = (bool) $options['saveData']; 1267 unset($options['saveData']); 1268 } 1269 1270 return $renderer->setData($data, 'raw') 1271 ->render($name, $options, $saveData); 1272 } 1273 } 1274 1275 if (! function_exists('view_cell')) 1276 { 1277 /** 1278 * View cells are used within views to insert HTML chunks that are managed
-
APPPATH/Config/Routes.php : 24 — view()
-
SYSTEMPATH/CodeIgniter.php : 953 — CodeIgniter\CodeIgniter->Config\{closure} ( arguments )
#0
Controller or its method is not found: \App\Controllers\Js::bootstrap.js
946 protected function display404errors(PageNotFoundException $e) 947 { 948 // Is there a 404 Override available? 949 if ($override = $this->router->get404Override()) 950 { 951 if ($override instanceof Closure) 952 { 953 echo $override($e->getMessage()); 954 } 955 elseif (is_array($override)) 956 { 957 $this->benchmark->start('controller'); 958 $this->benchmark->start('controller_constructor'); 959 960 $this->controller = $override[0];
-
SYSTEMPATH/CodeIgniter.php : 355 — CodeIgniter\CodeIgniter->display404errors ( arguments )
$e
CodeIgniter\Exceptions\PageNotFoundException Object ( [code:protected] => 404 [message:protected] => Controller or its method is not found: \App\Controllers\Js::bootstrap.js [string:Exception:private] => [file:protected] => /customers/0/6/8/alimranmuslimaid.org/httpd.www/vendor/codeigniter4/framework/system/CodeIgniter.php [line:protected] => 889 [trace:Exception:private] => Array ( [0] => Array ( [file] => /customers/0/6/8/alimranmuslimaid.org/httpd.www/vendor/codeigniter4/framework/system/CodeIgniter.php [line] => 889 [function] => forControllerNotFound [class] => CodeIgniter\Exceptions\PageNotFoundException [type] => :: [args] => Array ( [0] => \App\Controllers\Js [1] => bootstrap.js ) ) [1] => Array ( [file] => /customers/0/6/8/alimranmuslimaid.org/httpd.www/vendor/codeigniter4/framework/system/CodeIgniter.php [line] => 423 [function] => startController [class] => CodeIgniter\CodeIgniter [type] => -> [args] => Array ( ) ) [2] => Array ( [file] => /customers/0/6/8/alimranmuslimaid.org/httpd.www/vendor/codeigniter4/framework/system/CodeIgniter.php [line] => 338 [function] => handleRequest [class] => CodeIgniter\CodeIgniter [type] => -> [args] => Array ( [0] => [1] => Config\Cache Object ( [handler] => file [backupHandler] => dummy [storePath] => /customers/0/6/8/alimranmuslimaid.org/httpd.www/writable/cache/ [cacheQueryString] => [prefix] => [ttl] => 60 [file] => Array ( [storePath] => /customers/0/6/8/alimranmuslimaid.org/httpd.www/writable/cache/ [mode] => 416 ) [memcached] => Array ( [host] => 127.0.0.1 [port] => 11211 [weight] => 1 [raw] => ) [redis] => Array ( [host] => 127.0.0.1 [password] => [port] => 6379 [timeout] => 0 [database] => 0 ) [validHandlers] => Array ( [dummy] => CodeIgniter\Cache\Handlers\DummyHandler [file] => CodeIgniter\Cache\Handlers\FileHandler [memcached] => CodeIgniter\Cache\Handlers\MemcachedHandler [predis] => CodeIgniter\Cache\Handlers\PredisHandler [redis] => CodeIgniter\Cache\Handlers\RedisHandler [wincache] => CodeIgniter\Cache\Handlers\WincacheHandler ) ) [2] => ) ) [3] => Array ( [file] => /customers/0/6/8/alimranmuslimaid.org/httpd.www/index.php [line] => 37 [function] => run [class] => CodeIgniter\CodeIgniter [type] => -> [args] => Array ( ) ) ) [previous:Exception:private] => )
348 $this->sendResponse(); 349 350 $this->callExit(EXIT_SUCCESS); 351 return; 352 } 353 catch (PageNotFoundException $e) 354 { 355 $this->display404errors($e); 356 } 357 } 358 359 //-------------------------------------------------------------------- 360 361 /** 362 * Set our Response instance to "pretend" mode so that things like
-
FCPATH/index.php : 37 — CodeIgniter\CodeIgniter->run ()
30 /* 31 *--------------------------------------------------------------- 32 * LAUNCH THE APPLICATION 33 *--------------------------------------------------------------- 34 * Now that everything is setup, it's time to actually fire 35 * up the engines and make this app do its thang. 36 */ 37 $app->run(); 38