数据缓存失败,/usr/home/qxu1193160039/htdocs/cache/data文件夹的读写权限设置为777!
- /usr/home/qxu1193160039/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.
- /usr/home/qxu1193160039/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.
- /usr/home/qxu1193160039/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/';
- /usr/home/qxu1193160039/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.
- /usr/home/qxu1193160039/htdocs/frphp/fr.php on line 330
325.
$newhook = null;
326.
}
327.
328.
}
329.
}
330.
331.
$dispatch = new $controller($param);
$dispatch->$actionName($param);
332.
333.
334.
335.
- /usr/home/qxu1193160039/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()
- /usr/home/qxu1193160039/htdocs/frphp/fr.php on line 461
456.
457.
// 加载配置文件
458.
$config = require(APP_PATH . 'conf/config.php');
459.
460.
//实例化核心类
461.
(new frphp($config))->run();
- /usr/home/qxu1193160039/htdocs/index.php on line 52
47.
48.
//定义静态文件路径
49.
define('Tpl_style','/static/');
50.
51.
// 加载框架文件
52.
53.
require(APP_PATH . 'frphp/fr.php');
54.
// 就这么简单~
55.