数据缓存失败,C:\wwwroot\htoven\web/cache/data文件夹的读写权限设置为777!
- C:\wwwroot\htoven\web\conf\Functions.php on line 675
670.
var laydate = layui.laydate;
671.
laydate.render({elem: "#laydate_'.$v['field'].'" });});</script>';
672.
if(array_key_exists($v['field'],$data)){
673.
if(format_param($data[$v['field']])!=0){
674.
$fields_search_check[] =" (".$v['field']." >= ".$laytime." and ".$v['field']." < ".($laytime+86400).") ";
675.
676.
}
677.
}
678.
break;
679.
case 13:
680.
$body = explode(',',$v['body']);
- C:\wwwroot\htoven\web\app\home\c\CommonController.php on line 87
82.
$nav = M('menu')->findAll(['isshow'=>1]);
83.
$jznav = [];
84.
if($nav){
85.
foreach($nav as $v){
86.
$menulist = unserialize($v['nav']);
87.
88.
foreach($menulist as $vv){
if($vv['status']==1){
89.
$vv['url'] = $vv['tid'] ? $this->classtypedata[$vv['tid']]['url'] : $vv['gourl'];
90.
$vv['title'] = $vv['title'] ? $vv['title'] : ($vv['tid'] ? $this->classtypedata[$vv['tid']]['classname'] : '');
91.
$jznav[$v['id']][]=$vv;
92.
}
- C:\wwwroot\htoven\web\frphp\lib\Controller.php on line 85
80.
$value = $data[$str];
81.
}else{
82.
$method = strtolower($method);
83.
switch($method){
84.
case 'get':
85.
86.
$value = $_GET[$str];
break;
87.
case 'post':
88.
$value = $_POST[$str];
89.
break;
90.
case 'cookie':
- C:\wwwroot\htoven\web\frphp\fr.php on line 167
162.
163.
if($route_ok){
164.
165.
break;
166.
}
167.
168.
}
}
169.
if($route_ok){
170.
//print_r($matches);
171.
foreach($matches as $k=>$v){
172.
$urls = str_replace('$'.$k,$v[0],$urls);
- C:\wwwroot\htoven\web\index.php on line 40
35.
36.
//定义静态文件路径
37.
define('Tpl_style','/static/');
38.
39.
// 加载框架文件
40.
41.
require(APP_PATH . 'frphp/fr.php');
42.
// 就这么简单~
43.