數(shù)據(jù)緩存失敗,C:\wwwroot\www.4kreprosys.com/cache/data文件夾的讀寫權(quán)限設(shè)置為777!
- C:\wwwroot\www.4kreprosys.com\frphp\common\Functions.php on line 624
619.
$res = '<?php die();?>'.$res;
620.
$r = file_put_contents($cache_file_data,$res);
621.
if($r){
622.
return true;
623.
}else{
624.
625.
Error_msg('數(shù)據(jù)緩存失敗,'.Cache_Path.'/data文件夾的讀寫權(quán)限設(shè)置為777!');
}
626.
627.
628.
}
629.
- C:\wwwroot\www.4kreprosys.com\conf\Functions.php on line 338
333.
$d[$v['id']]['url'] = get_domain().$htmlpath.'/'.$v['htmlurl'].$file_txt;
334.
}
335.
336.
}
337.
338.
339.
setCache('classtype',$d,$cache_time);
return $d;
340.
}
341.
return $res;
342.
343.
- C:\wwwroot\www.4kreprosys.com\app\home\c\CommonController.php on line 44
39.
$m = 1;
40.
if(isMobile() && $webconf['iswap']==1){
41.
$classtypedata = classTypeDataMobile();
42.
$m = 1;
43.
}else{
44.
45.
$classtypedata = classTypeData();
$m = 0;
46.
}
47.
$this->classtypetree = $classtypedata;
48.
$this->classtypedata = getclasstypedata($classtypedata,$m);
49.
$this->common = Tpl_style.'common/';
- C:\wwwroot\www.4kreprosys.com\frphp\lib\Controller.php on line 43
38.
}else{
39.
define('LANG',APP_LANG);
40.
}
41.
42.
$this->_view = new View(APP_CONTROLLER, APP_ACTION);
43.
44.
$this->_init();
45.
}
46.
// 自動調(diào)用方法
47.
public function _init(){
48.
- C:\wwwroot\www.4kreprosys.com\frphp\fr.php on line 338
333.
$newhook = null;
334.
}
335.
336.
}
337.
}
338.
339.
$dispatch = new $controller($param);
$dispatch->$actionName($param);
340.
341.
342.
343.
- C:\wwwroot\www.4kreprosys.com\frphp\fr.php on line 94
89.
spl_autoload_register(array($this, 'loadClass'));
90.
$this->setDbConfig();
91.
$this->setReporting();
92.
$this->removeMagicQuotes();
93.
//$this->unregisterGlobals();
94.
95.
$this->route();
96.
}
97.
98.
// 路由處理
99.
public function route()
- C:\wwwroot\www.4kreprosys.com\frphp\fr.php on line 469
464.
465.
// 加載配置文件
466.
$config = require(APP_PATH . 'conf/config.php');
467.
468.
//實例化核心類
469.
(new frphp($config))->run();
- C:\wwwroot\www.4kreprosys.com\index.php on line 50
45.
46.
//定義靜態(tài)文件路徑
47.
define('Tpl_style','/static/');
48.
49.
// 加載框架文件
50.
51.
require(APP_PATH . 'frphp/fr.php');
52.
// 就這么簡單~
53.