數據緩存失敗,/data/home/qxu1587770056/htdocs/cache/data文件夾的讀寫權限設置為777!
- /data/home/qxu1587770056/htdocs/frphp/common/Functions.php on line 630
625.
$res = '<?php die();?>'.$res;
626.
$r = file_put_contents($cache_file_data,$res);
627.
if($r){
628.
return true;
629.
}else{
630.
631.
Error_msg('數據緩存失敗,'.Cache_Path.'/data文件夾的讀寫權限設置為777!');
}
632.
633.
634.
}
635.
- /data/home/qxu1587770056/htdocs/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.
- /data/home/qxu1587770056/htdocs/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/';
- /data/home/qxu1587770056/htdocs/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.
// 自動調用方法
47.
public function _init(){
48.
- /data/home/qxu1587770056/htdocs/frphp/fr.php on line 334
329.
$newhook = null;
330.
}
331.
332.
}
333.
}
334.
335.
$dispatch = new $controller($param);
$dispatch->$actionName($param);
336.
337.
338.
339.
- /data/home/qxu1587770056/htdocs/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()
- /data/home/qxu1587770056/htdocs/frphp/fr.php on line 520
515.
//定義靜態文件路徑
516.
defined('Tpl_style') or define('Tpl_style', '/static/');
517.
}
518.
519.
//實例化核心類
520.
(new frphp($config))->run();
- /data/home/qxu1587770056/htdocs/index.php on line 17
12.
13.
// 應用目錄為當前目錄
14.
define('APP_PATH', __DIR__ . '/');
15.
define('ADMIN_MODEL','admins');
16.
// 加載框架文件
17.
18.
require(APP_PATH . 'frphp/fr.php');
19.
// 就這么簡單~
20.