/data/CM/svn/svn_checkout/iladynew/application/controllers/notfound.php [ 8 ]
3 exit ( 'No direct script access allowed' );
4 class Notfound extends LC_Controller {
5 public function __construct() {
6 parent::__construct ();
7 //不使用缓存
8 $this->cismarty->caching = FALSE;
9 }
10 public function index(){
11 $this->cismarty->assign ( 'css', array ("style.css","css.css" ) );
12 $this->cismarty->assign ( 'js', null );
13 $this->cismarty->assign ( 'title', '404' );
-
/data/CM/svn/svn_checkout/iladynew/application/controllers/notfound.php [ 8 ] » CI_Error::error_handler(arguments)
0
integer 2
1
string(40) "Creating default object from empty value"
2
string(71) "/data/CM/svn/svn_checkout/iladynew/application/controllers/notfound.php"
3
integer 8
4
array(0)
3 exit ( 'No direct script access allowed' ); 4 class Notfound extends LC_Controller { 5 public function __construct() { 6 parent::__construct (); 7 //不使用缓存 8 $this->cismarty->caching = FALSE; 9 } 10 public function index(){ 11 $this->cismarty->assign ( 'css', array ("style.css","css.css" ) ); 12 $this->cismarty->assign ( 'js', null ); 13 $this->cismarty->assign ( 'title', '404' );
-
/data/CM/svn/svn_checkout/iladynew/system/core/Common.php [ 335 ] » Notfound->__construct()
330 function show_404($page = '', $log_error = TRUE) 331 { 332 include_once(APPPATH.'controllers/notfound.php'); 333 $CI = get_instance(); 334 unset($CI); 335 $CI = new Notfound(); 336 global $URI; 337 call_user_func_array(array(&$CI, 'index'), array_slice($URI->rsegments, 2)); 338 if (class_exists('CI_DB') AND isset($CI->db)) 339 { 340 $CI->db->close();
-
/data/CM/svn/svn_checkout/iladynew/system/core/CodeIgniter.php [ 357 ] » show_404(arguments)
page
string(13) "article/index"
352 353 } 354 } 355 else 356 { 357 show_404("{$class}/{$method}"); 358 } 359 } 360 361 // Call the requested method. 362 // Any URI segments present (besides the class/function) will be passed to the method for convenience
-
/data/CM/svn/svn_checkout/iladynew/index.php [ 203 ] » require_once(arguments)
0
string(62) "/data/CM/svn/svn_checkout/iladynew/system/core/CodeIgniter.php"
198 * 199 * And away we go... 200 * 201 */ 202 203 require_once BASEPATH.'core/CodeIgniter.php'; 204 205 /* End of file index.php */ 206 /* Location: ./index.php */