mysqli_sql_exception #1054

Unknown column 'id' in 'where clause'
D:\wwwroot\w.hbyxfy.com\cms\libs\classes\db_mysqli.class.php(270) 搜索问题 →

SELECT `data` FROM `whbyxfy`.`hbyxfy_session` WHERE `id` = 'cms_session:j1shdsan0h7qmcbm650e72h423' LIMIT 1

D:\wwwroot\w.hbyxfy.com\cms\libs\classes\db_mysqli.class.php at line 270

263             if ($res $this->link->store_result()) {
264                 $res->free();
265             }
266         }
267         $this->lastQuery $sql;
268         $startTime microtime(true);
269         try {
270             $this->lastqueryid = $this->link->query($this->prepQuery($sql), $this->resultMode);
271         } catch (mysqli_sql_exception $e) {
272             log_message('error', (string) $e);
273             if ($this->config['debug']) {
274                 throw $e;
275             }
276         }
277         pc_base::load_sys_class('debug')::addmsg($sql1$startTime);
  1. D:\wwwroot\w.hbyxfy.com\cms\libs\classes\db_mysqli.class.php : 270   —  mysqli->query ( arguments )

    $query
    SELECT `data` FROM `whbyxfy`.`hbyxfy_session` WHERE  `id` = 'cms_session:j1shdsan0h7qmcbm650e72h423' LIMIT 1
    $result_mode
    0

    263             if ($res $this->link->store_result()) {
    264                 $res->free();
    265             }
    266         }
    267         $this->lastQuery $sql;
    268         $startTime microtime(true);
    269         try {
    270             $this->lastqueryid = $this->link->query($this->prepQuery($sql), $this->resultMode);
    271         } catch (mysqli_sql_exception $e) {
    272             log_message('error', (string) $e);
    273             if ($this->config['debug']) {
    274                 throw $e;
    275             }
    276         }
    277         pc_base::load_sys_class('debug')::addmsg($sql1$startTime);
    
  2. D:\wwwroot\w.hbyxfy.com\cms\libs\classes\db_mysqli.class.php : 350   —  db_mysqli->execute ( arguments )

    $sql
    SELECT `data` FROM `whbyxfy`.`hbyxfy_session` WHERE  `id` = 'cms_session:j1shdsan0h7qmcbm650e72h423' LIMIT 1

    343         $group $group == '' '' ' GROUP BY '.$group;
    344         $limit ' LIMIT 1';
    345         $field explode','$data);
    346         array_walk($field, array($this'add_special_char'));
    347         $data implode(','$field);
    348 
    349         $sql 'SELECT '.$data.' FROM `'.$this->config['database'].'`.`'.$table.'`'.$where.$group.$order.$limit;
    350         $this->execute($sql);
    351         $res $this->fetch_next();
    352         $this->free_result();
    353         return $res;
    354     }
    355     
    356     /**
    357      * 遍历查询结果集
    
  3. D:\wwwroot\w.hbyxfy.com\cms\libs\classes\model.class.php : 82   —  db_mysqli->get_one ( arguments )

    $data
    `data`
    $table
    hbyxfy_session
    $where
     WHERE  `id` = 'cms_session:j1shdsan0h7qmcbm650e72h423'
    $order
    $group

    75      * @param $data         需要查询的字段值[例`name`,`gender`,`birthday`]
    76      * @param $order         排序方式    [默认按数据库默认方式排序]
    77      * @param $group         分组方式    [默认为空]
    78      * @return array/null    数据查询结果集,如果不存在,则返回空
    79      */
    80     final public function get_one($where ''$data '*'$order ''$group '') {
    81         if (is_array($where)) $where $this->sqls($where);
    82         return $this->db->get_one($data, $this->table_name, $where, $order, $group);
    83     }
    84 
    85     /**
    86      * 直接执行sql查询
    87      * @param $sql                            查询sql语句
    88      * @return    boolean/query resource        如果为查询语句,返回资源句柄,否则返回true/false
    89      */
    
  4. D:\wwwroot\w.hbyxfy.com\cms\libs\classes\session_mysqli.class.php : 63   —  model->get_one ( arguments )

    $where
     `id` = 'cms_session:j1shdsan0h7qmcbm650e72h423'
    $data
    data

    56 
    57         $where = array('id'=>$this->idPrefix $id);
    58         if ($this->match_ip) {
    59             $where2 = array('ip_address'=>ip());
    60         }
    61         $where dr_array22array($where$where2);
    62 
    63         $result = $this->db->get_one($where, 'data');
    64 
    65         if ($result === null) {
    66             $this->_row_exists false;
    67             $this->_fingerprint md5('');
    68             return '';
    69         }
    70 
    
  5. {PHP internal code}   —  session_mysqli->read ( arguments )

    $id
    j1shdsan0h7qmcbm650e72h423

  6. D:\wwwroot\w.hbyxfy.com\cms\libs\classes\session_mysqli.class.php : 31   —   session_start()

  7. D:\wwwroot\w.hbyxfy.com\cms\base.php : 469   —  session_mysqli->__construct ()

    462             include PC_PATH.$path.DIRECTORY_SEPARATOR.$classname.'.class.php';
    463             $name $classname;
    464             if ($my_path self::my_path(PC_PATH.$path.DIRECTORY_SEPARATOR.$classname.'.class.php')) {
    465                 include $my_path;
    466                 $name 'MY_'.$classname;
    467             }
    468             if ($initialize) {
    469                 $classes[$key] = new $name;
    470             } else {
    471                 $classes[$key] = true;
    472             }
    473             // 站群系统接入
    474             if (is_file(CMS_PATH.'api/fclient/sync.php')) {
    475                 $sync = require CMS_PATH.'api/fclient/sync.php';
    476                 if ($sync['status'] == 4) {
    
  8. D:\wwwroot\w.hbyxfy.com\cms\base.php : 420   —  pc_base::_load_class ( arguments )

    $classname
    session_mysqli
    $path
    libs\classes
    $initialize
    1

    413     /**
    414      * 加载系统类方法
    415      * @param string $classname 类名
    416      * @param string $path 扩展地址
    417      * @param intger $initialize 是否初始化
    418      */
    419     public static function load_sys_class($classname$path ''$initialize 1) {
    420         return self::_load_class($classname, $path, $initialize);
    421     }
    422     
    423     /**
    424      * 加载应用类方法
    425      * @param string $classname 类名
    426      * @param string $m 模块
    427      * @param intger $initialize 是否初始化
    
  9. D:\wwwroot\w.hbyxfy.com\cms\libs\classes\session.class.php : 5   —  pc_base::load_sys_class ( arguments )

    $classname
    session_mysqli

     1 <?php
     2 class session {
     3 
     4     function __construct() {
     5         pc_base::load_sys_class('session_'.SESSION_STORAGE);
     6     }
     7 
     8     public function set($data$value null) {
     9         if (is_array($data)) {
    10             foreach ($data as $key => &$value) {
    11                 if (is_int($key)) {
    12                     $_SESSION[$value] = null;
    13                 } else {
    14                     $_SESSION[$key] = $value;
    15                 }
    
  10. D:\wwwroot\w.hbyxfy.com\cms\base.php : 469   —  session->__construct ()

    462             include PC_PATH.$path.DIRECTORY_SEPARATOR.$classname.'.class.php';
    463             $name $classname;
    464             if ($my_path self::my_path(PC_PATH.$path.DIRECTORY_SEPARATOR.$classname.'.class.php')) {
    465                 include $my_path;
    466                 $name 'MY_'.$classname;
    467             }
    468             if ($initialize) {
    469                 $classes[$key] = new $name;
    470             } else {
    471                 $classes[$key] = true;
    472             }
    473             // 站群系统接入
    474             if (is_file(CMS_PATH.'api/fclient/sync.php')) {
    475                 $sync = require CMS_PATH.'api/fclient/sync.php';
    476                 if ($sync['status'] == 4) {
    
  11. D:\wwwroot\w.hbyxfy.com\cms\base.php : 420   —  pc_base::_load_class ( arguments )

    $classname
    session
    $path
    libs\classes
    $initialize
    1

    413     /**
    414      * 加载系统类方法
    415      * @param string $classname 类名
    416      * @param string $path 扩展地址
    417      * @param intger $initialize 是否初始化
    418      */
    419     public static function load_sys_class($classname$path ''$initialize 1) {
    420         return self::_load_class($classname, $path, $initialize);
    421     }
    422     
    423     /**
    424      * 加载应用类方法
    425      * @param string $classname 类名
    426      * @param string $m 模块
    427      * @param intger $initialize 是否初始化
    
  12. D:\wwwroot\w.hbyxfy.com\cms\libs\classes\param.class.php : 141   —  pc_base::load_sys_class ( arguments )

    $classname
    session

    134     }
    135 
    136     public static function set_session($key$value '') {
    137         pc_base::load_sys_class('session')->set(SYS_KEY.$key$value);
    138     }
    139 
    140     public static function get_session($key) {
    141         return pc_base::load_sys_class('session')->get(SYS_KEY.$key);
    142     }
    143 
    144     public static function del_session($key) {
    145         return pc_base::load_sys_class('session')->remove(SYS_KEY.$key);
    146     }
    147 
    148     public static function setTempdata($key$value$time) {
    
  13. D:\wwwroot\w.hbyxfy.com\cms\model\content_model.class.php : 24   —  param::get_session ( arguments )

    $key
    userid

    17         $this->input pc_base::load_sys_class('input');
    18         $this->cache pc_base::load_sys_class('cache');
    19         $this->db_config pc_base::load_config('database');
    20         $this->db_setting 'default';
    21         parent::__construct();
    22         $this->url pc_base::load_app_class('url''content');
    23         $this->siteid get_siteid();
    24         $this->userid = param::get_session('userid') ? param::get_session('userid') : (param::get_cookie('_userid') ? param::get_cookie('_userid') : param::get_cookie('userid'));
    25         $this->rid md5(FC_NOW_URL.$this->input->get_user_agent().$this->input->ip_address().intval($this->userid));
    26         $this->grouplist getcache('grouplist''member');
    27         $this->isadmin param::get_session('roleid') ? 0;
    28         $this->groupid param::get_cookie('_groupid') ? param::get_cookie('_groupid') : 8;
    29     }
    30     public function set_model($modelid) {
    31         $this->model getcache('model''commons');
    
  14. D:\wwwroot\w.hbyxfy.com\cms\base.php : 469   —  content_model->__construct ()

    462             include PC_PATH.$path.DIRECTORY_SEPARATOR.$classname.'.class.php';
    463             $name $classname;
    464             if ($my_path self::my_path(PC_PATH.$path.DIRECTORY_SEPARATOR.$classname.'.class.php')) {
    465                 include $my_path;
    466                 $name 'MY_'.$classname;
    467             }
    468             if ($initialize) {
    469                 $classes[$key] = new $name;
    470             } else {
    471                 $classes[$key] = true;
    472             }
    473             // 站群系统接入
    474             if (is_file(CMS_PATH.'api/fclient/sync.php')) {
    475                 $sync = require CMS_PATH.'api/fclient/sync.php';
    476                 if ($sync['status'] == 4) {
    
  15. D:\wwwroot\w.hbyxfy.com\cms\base.php : 440   —  pc_base::_load_class ( arguments )

    $classname
    content_model
    $path
    model

    433     }
    434     
    435     /**
    436      * 加载数据模型
    437      * @param string $classname 类名
    438      */
    439     public static function load_model($classname) {
    440         return self::_load_class($classname,'model');
    441     }
    442         
    443     /**
    444      * 加载类文件函数
    445      * @param string $classname 类名
    446      * @param string $path 扩展地址
    447      * @param intger $initialize 是否初始化
    
  16. D:\wwwroot\w.hbyxfy.com\cms\modules\content\classes\content_tag.class.php : 7   —  pc_base::load_model ( arguments )

    $classname
    content_model

     1 <?php
     2 class content_tag {
     3     private $input,$db,$position,$keyword_db,$category,$modelid,$hits_db;
     4     public $tablename;
     5     public function __construct() {
     6         $this->input pc_base::load_sys_class('input');
     7         $this->db = pc_base::load_model('content_model');
     8         $this->position pc_base::load_model('position_data_model');
     9     }
    10     /**
    11      * 初始化模型
    12      * @param $catid
    13      */
    14     public function set_modelid($catid) {
    15         static $CATS;
    
  17. D:\wwwroot\w.hbyxfy.com\cms\base.php : 469   —  content_tag->__construct ()

    462             include PC_PATH.$path.DIRECTORY_SEPARATOR.$classname.'.class.php';
    463             $name $classname;
    464             if ($my_path self::my_path(PC_PATH.$path.DIRECTORY_SEPARATOR.$classname.'.class.php')) {
    465                 include $my_path;
    466                 $name 'MY_'.$classname;
    467             }
    468             if ($initialize) {
    469                 $classes[$key] = new $name;
    470             } else {
    471                 $classes[$key] = true;
    472             }
    473             // 站群系统接入
    474             if (is_file(CMS_PATH.'api/fclient/sync.php')) {
    475                 $sync = require CMS_PATH.'api/fclient/sync.php';
    476                 if ($sync['status'] == 4) {
    
  18. D:\wwwroot\w.hbyxfy.com\cms\base.php : 432   —  pc_base::_load_class ( arguments )

    $classname
    content_tag
    $path
    modules\content\classes
    $initialize
    1

    425      * @param string $classname 类名
    426      * @param string $m 模块
    427      * @param intger $initialize 是否初始化
    428      */
    429     public static function load_app_class($classname$m ''$initialize 1) {
    430         $m = empty($m) && defined('ROUTE_M') ? ROUTE_M $m;
    431         if (empty($m)) return false;
    432         return self::_load_class($classname, 'modules'.DIRECTORY_SEPARATOR.$m.DIRECTORY_SEPARATOR.'classes', $initialize);
    433     }
    434     
    435     /**
    436      * 加载数据模型
    437      * @param string $classname 类名
    438      */
    439     public static function load_model($classname) {
    
  19. D:\wwwroot\w.hbyxfy.com\caches\caches_template\yxfy\content\header.php : 24   —  pc_base::load_app_class ( arguments )

    $classname
    content_tag
    $m
    content

    17     <div id="header">
    18         <div class="wp">
    19             <div class="logo"><a href="<?php echo siteurl($siteid);?>/" title="<?php echo $SEO['site_title'];?>"><img src="<?php echo siteurl($siteid);?>/cms/templates/yxfy/statics/images/logo.png" alt="<?php echo $SEO['site_title'];?>"></a></div>
    20         </div>
    21     </div>
    22     <div id="nav">
    23         <div class="wp">
    24             <?php if(defined('IS_ADMIN') && IS_ADMIN && !defined('HTML')) {echo "<div class=\"admin_piao\" pc_action=\"content\" data=\"op=content&tag_md5=b43f1459ac702900c8d44c91a5e796dd&action=category&catid=0&num=25&siteid=%24siteid&order=listorder+ASC\"><a href=\"javascript:void(0)\" class=\"admin_piao_edit\">编辑</a>";}$content_tag = pc_base::load_app_class("content_tag", "content");if (method_exists($content_tag, 'category')) {$data = $content_tag->category(array('catid'=>'0','siteid'=>$siteid,'order'=>'listorder ASC','limit'=>'25',));}?>
    25             <ul>
    26                 <li class="line"></li>
    27                 <li><a href="<?php echo siteurl($siteid);?><?php if(!$catid) { ?> class="focus" <?php ?>>首页</a></li>
    28                 <li class="line"></li>
    29                 <li><a href="index.php?m=content&c=index&a=lists&catid=2" <?php if($catid==2) { ?> class="focus" <?php ?>>关于我们</a></li>
    30                 <?php $n=1;if(is_array($data)) foreach($data AS $r) { ?>
    31                 <li class="line"></li>
    
  20. include D:\wwwroot\w.hbyxfy.com\caches\caches_template\default\content\msg.php   —   include()

  21. include D:\wwwroot\w.hbyxfy.com\cms\libs\classes\service.class.php   —   include()

  22. D:\wwwroot\w.hbyxfy.com\cms\libs\functions\global.func.php : 1821   —  service->display ( arguments )

    $module
    content
    $template
    msg

    1814         'dialog' => $dialog,
    1815         'backurl' => $backurl,
    1816         'SEO' => $SEO
    1817     ];
    1818     pc_base::load_sys_class('hooks')::trigger('cms_end'$rt);
    1819 
    1820     pc_base::load_sys_class('service')->assign($rt);
    1821     pc_base::load_sys_class('service')->display('content', 'msg');
    1822     if ($return) {
    1823         return;
    1824     }
    1825     exit();
    1826 }
    1827 /**
    1828  * 当前URL
    
  23. D:\wwwroot\w.hbyxfy.com\cms\libs\classes\application.class.php : 151   —   dr_msg()

  24. D:\wwwroot\w.hbyxfy.com\cms\libs\classes\application.class.php : 90   —  application->load_controller ()

    83                     }
    84                 }
    85             }
    86         }
    87         $this->verify();
    88         // 挂钩点 程序运行之前
    89         pc_base::load_sys_class('hooks')::trigger('cms_run');
    90         $controller = $this->load_controller();
    91         // 挂钩点 程序加载之后
    92         pc_base::load_sys_class('hooks')::trigger('init');
    93         // 挂钩点 程序初始化之后
    94         pc_base::load_sys_class('hooks')::trigger('cms_init');
    95         if (IS_API === 'api') {
    96             if(intval(pc_base::load_sys_class('param')::get_cookie('_userid'))) {
    97                 if(pc_base::load_model('member_model')->get_one(array('userid'=>intval(pc_base::load_sys_class('param')::get_cookie('_userid'))),'islock')['islock']) dr_msg(0L('user_is_lock''''member'));
    
  25. D:\wwwroot\w.hbyxfy.com\cms\libs\classes\application.class.php : 57   —  application->init ()

    50         }
    51         // 是否前端
    52         define('IS_HOME', !IS_ADMIN && !IS_MEMBER);
    53         if (IS_ADMIN) {
    54             // 开启session
    55             $this->session();
    56         }
    57         $this->init();
    58         // 挂钩点 程序结束之后
    59         pc_base::load_sys_class('hooks')::trigger('cms_close');
    60     }
    61     
    62     /**
    63      * 调用件事
    64      */
    
  26. D:\wwwroot\w.hbyxfy.com\cms\base.php : 469   —  application->__construct ()

    462             include PC_PATH.$path.DIRECTORY_SEPARATOR.$classname.'.class.php';
    463             $name $classname;
    464             if ($my_path self::my_path(PC_PATH.$path.DIRECTORY_SEPARATOR.$classname.'.class.php')) {
    465                 include $my_path;
    466                 $name 'MY_'.$classname;
    467             }
    468             if ($initialize) {
    469                 $classes[$key] = new $name;
    470             } else {
    471                 $classes[$key] = true;
    472             }
    473             // 站群系统接入
    474             if (is_file(CMS_PATH.'api/fclient/sync.php')) {
    475                 $sync = require CMS_PATH.'api/fclient/sync.php';
    476                 if ($sync['status'] == 4) {
    
  27. D:\wwwroot\w.hbyxfy.com\cms\base.php : 420   —  pc_base::_load_class ( arguments )

    $classname
    application
    $path
    libs\classes
    $initialize
    1

    413     /**
    414      * 加载系统类方法
    415      * @param string $classname 类名
    416      * @param string $path 扩展地址
    417      * @param intger $initialize 是否初始化
    418      */
    419     public static function load_sys_class($classname$path ''$initialize 1) {
    420         return self::_load_class($classname, $path, $initialize);
    421     }
    422     
    423     /**
    424      * 加载应用类方法
    425      * @param string $classname 类名
    426      * @param string $m 模块
    427      * @param intger $initialize 是否初始化
    
  28. D:\wwwroot\w.hbyxfy.com\cms\base.php : 411   —  pc_base::load_sys_class ( arguments )

    $classname
    application

    404 
    405 class pc_base {
    406     
    407     /**
    408      * 初始化应用程序
    409      */
    410     public static function creat_app() {
    411         return self::load_sys_class('application');
    412     }
    413     /**
    414      * 加载系统类方法
    415      * @param string $classname 类名
    416      * @param string $path 扩展地址
    417      * @param intger $initialize 是否初始化
    418      */
    
  29. D:\wwwroot\w.hbyxfy.com\index.php : 40   —  pc_base::creat_app ()

    33 // 判断安装
    34 if (file_exists('install') && is_file(CACHE_PATH.'install.lock')) {
    35     dr_dir_delete('install'TRUE);
    36 }
    37 // 结束,安装之后可以删除此段代码
    38 
    39 // 执行主程序
    40 pc_base::creat_app();
    

$_SERVER

Key Value
_FCGI_X_PIPE_ \\.\pipe\IISFCGI-79016f11-6eb1-4010-a356-09a1db66dd3b
PHP_FCGI_MAX_REQUESTS 10000
ALLUSERSPROFILE C:\ProgramData
APPDATA C:\Windows\system32\config\systemprofile\AppData\Roaming
APP_POOL_CONFIG C:\inetpub\temp\apppools\w.hbyxfy.com\w.hbyxfy.com.config
APP_POOL_ID w.hbyxfy.com
BT_PANEL D:\BtSoft\panel
BT_PYTHON C:\Program Files\python
BT_SETUP D:\BtSoft
CommonProgramFiles C:\Program Files\Common Files
CommonProgramFiles(x86) C:\Program Files (x86)\Common Files
CommonProgramW6432 C:\Program Files\Common Files
COMPUTERNAME KFpvWoqyD3aW
ComSpec C:\Windows\system32\cmd.exe
LOCALAPPDATA C:\Windows\system32\config\systemprofile\AppData\Local
NUMBER_OF_PROCESSORS 2
OS Windows_NT
Path C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\python;C:\Program Files\python\Scripts;D:\BtSoft\panel\script;C:\Program Files\python;C:\Program Files\python\Scripts;D:\BtSoft\panel\script;C:\Program Files\Git\cmd;C:\Windows\system32\config\systemprofile\AppData\Local\Microsoft\WindowsApps
PATHEXT .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC
PROCESSOR_ARCHITECTURE AMD64
PROCESSOR_IDENTIFIER Intel64 Family 6 Model 79 Stepping 1, GenuineIntel
PROCESSOR_LEVEL 6
PROCESSOR_REVISION 4f01
ProgramData C:\ProgramData
ProgramFiles C:\Program Files
ProgramFiles(x86) C:\Program Files (x86)
ProgramW6432 C:\Program Files
PSModulePath C:\Program Files\WindowsPowerShell\Modules;C:\Windows\system32\WindowsPowerShell\v1.0\Modules
PUBLIC C:\Users\Public
SystemDrive C:
SystemRoot C:\Windows
TEMP C:\Windows\TEMP
TMP C:\Windows\TEMP
UNRAR_LIB_PATH C:\Program Files\python\Lib\site-packages\unrar\UnRAR.dll
USERDOMAIN WORKGROUP
USERNAME KFpvWoqyD3aW$
USERPROFILE C:\Windows\system32\config\systemprofile
windir C:\Windows
ORIG_PATH_INFO /index.php
URL /index.php
SERVER_SOFTWARE Microsoft-IIS/10.0
SERVER_PROTOCOL HTTP/1.1
SERVER_PORT_SECURE 0
SERVER_PORT 80
SERVER_NAME hbyxfy.com
SCRIPT_NAME /index.php
SCRIPT_FILENAME d:\wwwroot\w.hbyxfy.com\index.php
REQUEST_URI /index.php?m=content&c=index&a=lists&catid=18
REQUEST_METHOD GET
REMOTE_USER
REMOTE_PORT 3896
REMOTE_HOST 18.227.52.94
REMOTE_ADDR 18.227.52.94
QUERY_STRING m=content&c=index&a=lists&catid=18
PATH_TRANSLATED d:\wwwroot\w.hbyxfy.com\index.php
LOGON_USER
LOCAL_ADDR 122.114.10.199
INSTANCE_META_PATH /LM/W3SVC/11
INSTANCE_NAME W.HBYXFY.COM
INSTANCE_ID 11
HTTPS_SERVER_SUBJECT
HTTPS_SERVER_ISSUER
HTTPS_SECRETKEYSIZE
HTTPS_KEYSIZE
HTTPS off
GATEWAY_INTERFACE CGI/1.1
DOCUMENT_ROOT d:\wwwroot\w.hbyxfy.com
CONTENT_TYPE
CONTENT_LENGTH 0
CERT_SUBJECT
CERT_SERIALNUMBER
CERT_ISSUER
CERT_FLAGS
CERT_COOKIE
AUTH_USER
AUTH_PASSWORD
AUTH_TYPE
APPL_PHYSICAL_PATH d:\wwwroot\w.hbyxfy.com\
APPL_MD_PATH /LM/W3SVC/11/ROOT
IIS_UrlRewriteModule 7.1.0871.0
WEBSOCKET_VERSION 13
HTTP_USER_AGENT Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
HTTP_HOST hbyxfy.com
HTTP_COOKIE fikker-Bele-Xydg=8MFYvwROFOdiKuVETyNI0SOGOIVgLNTL
HTTP_ACCEPT_ENCODING gzip, br, zstd, deflate
HTTP_ACCEPT */*
FCGI_ROLE RESPONDER
PHP_SELF /index.php
REQUEST_TIME_FLOAT
1722053152.5477                                                                    
REQUEST_TIME
1722053152                                                                    

Constants

Key Value
IS_DEV 1
IS_ADMIN
IS_MOBILE
SELF index.php
CMS_PATH D:\wwwroot\w.hbyxfy.com\
IN_CMS 1
IN_PHPCMS 1
IS_API
IS_COLLAPI
PC_PATH D:\wwwroot\w.hbyxfy.com\cms\
PHPCMS_PATH D:\wwwroot\w.hbyxfy.com\
CACHE_PATH D:\wwwroot\w.hbyxfy.com\caches\
CONFIGPATH D:\wwwroot\w.hbyxfy.com\caches\configs\
HTTP_REFERER
SYS_START_TIME 1722053152.5546
SYS_START_MEM 376016
MIN_PHP_VERSION 7.1.0
SYS_TIMEZONE 8
CHARSET utf-8
SYS_TPL_ROOT templates/
TPLPATH D:\wwwroot\w.hbyxfy.com\cms\templates/
SYS_TIME_FORMAT
SYS_ADMIN_PAGESIZE 10
TEMPPATH D:\wwwroot\w.hbyxfy.com\cms\temp/
IS_AJAX
IS_POST
IS_AJAX_POST
SYS_TIME 1722053152
SYS_BDMAP_API
WEB_PATH /
SITE_THEME 0
JS_PATH http://www.hbyxfy.com/statics/js/
CSS_PATH http://www.hbyxfy.com/statics/css/
IMG_PATH http://www.hbyxfy.com/statics/images/
MOBILE_JS_PATH http://www.hbyxfy.com/mobile/statics/js/
MOBILE_CSS_PATH http://www.hbyxfy.com/mobile/statics/css/
MOBILE_IMG_PATH http://www.hbyxfy.com/mobile/statics/images/
APP_PATH http://www.hbyxfy.com/
MOBILE_PATH http://www.hbyxfy.com/mobile/
SYS_DEBUG 1
SYS_EDITOR 0
SESSION_STORAGE mysqli
SESSION_TTL 1800
SESSION_SAVEPATH D:\wwwroot\w.hbyxfy.com\caches\sessions/
COOKIE_PRE CMSADEBABBEF2303_
COOKIE_DOMAIN
COOKIE_PATH
SYS_ADMIN_PATH login
NeedCheckComeUrl 1
SYS_KEY CMSdc45907ce050c1face9de6c3f11ecaed
SYS_LANGUAGE zh-cn
SYS_GO_404
SYS_301
SYS_URL_ONLY
SYS_TOKEN_NAME csrf_test_name
SYS_CSRF 2
SYS_CSRF_TIME 0
SYS_TPL_NAME default
IS_EDIT_TPL 1
SYS_ADMIN_LOG 1
SYS_GZIP 1
ADMIN_FOUNDERS
Array
(
    [0] => 1
)
                                                                    
SYS_HTML_ROOT /html
SYS_MOBILE_ROOT /mobile
SYS_KEYWORDAPI 0
SYS_BAIDU_AID
SYS_BAIDU_SKEY
SYS_BAIDU_ARCRETKEY
SYS_BAIDU_QCNUM 10
SYS_XUNFEI_AID
SYS_XUNFEI_SKEY
SYS_ATTACHMENT_STAT 1
SYS_ATTACHMENT_FILE 0
SYS_ATTACHMENT_DEL 1
SYS_ATTACHMENT_SAVE_ID 0
SYS_ATTACHMENT_CF 0
SYS_ATTACHMENT_PAGESIZE 18
SYS_ATTACHMENT_SAFE 0
SYS_ATTACHMENT_PATH
SYS_ATTACHMENT_URL
SYS_ATTACHMENT_SAVE_TYPE 0
SYS_ATTACHMENT_SAVE_DIR
CI_DEBUG 1
IS_DEBUG 0
SYS_CACHE 0
SYS_CACHE_TYPE 0
SYS_CACHE_CLEAR 0
SYS_CACHE_SHOW 0
SYS_CACHE_SMS 60
SYS_UPLOAD_PATH D:\wwwroot\w.hbyxfy.com\uploadfile/
SYS_UPLOAD_URL http://www.hbyxfy.com/uploadfile/
SYS_AVATAR_PATH D:\wwwroot\w.hbyxfy.com\uploadfile/avatar/
SYS_AVATAR_URL http://www.hbyxfy.com/uploadfile/avatar/
SYS_THUMB_PATH D:\wwwroot\w.hbyxfy.com\uploadfile/thumb/
SYS_THUMB_URL http://www.hbyxfy.com/uploadfile/thumb/
SITE_PROTOCOL http://
FC_NOW_URL http://hbyxfy.com/index.php?m=content&c=index&a=lists&catid=18
FC_NOW_HOST http://hbyxfy.com/
DOMAIN_NAME hbyxfy.com
WEB_DIR /
CMSURI
SITE_ID 1
ROOT_URL http://www.hbyxfy.com/
SITE_URL http://www.hbyxfy.com
SITE_MURL
ROUTE_M content
ROUTE_C index
ROUTE_A lists
IS_MEMBER
IS_HOME 1
EVENT_PRIORITY_LOW 200
EVENT_PRIORITY_NORMAL 10
EVENT_PRIORITY_HIGH 10
SITEID 1
ISMOBILE 0
IS_HTML 0
CACHE_MODEL_PATH D:\wwwroot\w.hbyxfy.com\caches\caches_model\caches_data\
Path http://hbyxfy.com/index.php?m=content&c=index&a=lists&catid=18
HTTP Method GET
IP Address 18.227.52.94
Is AJAX? no
Is CLI? no
User Agent Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)

$_GET

Key Value
m content
c index
a lists
catid 18

$_COOKIE

Key Value
fikker-Bele-Xydg 8MFYvwROFOdiKuVETyNI0SOGOIVgLNTL

Headers

Header Value
User-Agent Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
Host hbyxfy.com
Cookie fikker-Bele-Xydg=8MFYvwROFOdiKuVETyNI0SOGOIVgLNTL
Accept-Encoding gzip, br, zstd, deflate
Accept */*
  1. D:\wwwroot\w.hbyxfy.com\index.php
  2. D:\wwwroot\w.hbyxfy.com\cms\base.php
  3. D:\wwwroot\w.hbyxfy.com\caches\configs\system.php
  4. D:\wwwroot\w.hbyxfy.com\caches\configs\cache.php
  5. D:\wwwroot\w.hbyxfy.com\cms\libs\functions\global.func.php
  6. D:\wwwroot\w.hbyxfy.com\cms\libs\functions\extention.func.php
  7. D:\wwwroot\w.hbyxfy.com\cms\libs\functions\autoload\customfield.func.php
  8. D:\wwwroot\w.hbyxfy.com\cms\libs\classes\cache.class.php
  9. D:\wwwroot\w.hbyxfy.com\cms\libs\classes\application.class.php
  10. D:\wwwroot\w.hbyxfy.com\cms\libs\classes\debug.class.php
  11. D:\wwwroot\w.hbyxfy.com\cms\libs\classes\param.class.php
  12. D:\wwwroot\w.hbyxfy.com\caches\configs\route.php
  13. D:\wwwroot\w.hbyxfy.com\cms\libs\classes\input.class.php
  14. D:\wwwroot\w.hbyxfy.com\cms\libs\classes\security.class.php
  15. D:\wwwroot\w.hbyxfy.com\cms\libs\classes\service.class.php
  16. D:\wwwroot\w.hbyxfy.com\cms\modules\admin\config\hooks.php
  17. D:\wwwroot\w.hbyxfy.com\cms\libs\classes\hooks.class.php
  18. D:\wwwroot\w.hbyxfy.com\cms\modules\admin\config\filters.php
  19. D:\wwwroot\w.hbyxfy.com\caches\configs\hooks.php
  20. D:\wwwroot\w.hbyxfy.com\cms\languages\zh-cn\system.lang.php
  21. D:\wwwroot\w.hbyxfy.com\cms\languages\zh-cn\content.lang.php
  22. D:\wwwroot\w.hbyxfy.com\cms\libs\classes\template_cache.class.php
  23. D:\wwwroot\w.hbyxfy.com\caches\caches_template\default\content\msg.php
  24. D:\wwwroot\w.hbyxfy.com\caches\caches_template\yxfy\content\header.php
  25. D:\wwwroot\w.hbyxfy.com\cms\modules\content\classes\content_tag.class.php
  26. D:\wwwroot\w.hbyxfy.com\cms\model\content_model.class.php
  27. D:\wwwroot\w.hbyxfy.com\cms\libs\classes\model.class.php
  28. D:\wwwroot\w.hbyxfy.com\cms\libs\classes\db_factory.class.php
  29. D:\wwwroot\w.hbyxfy.com\cms\libs\classes\upload.class.php
  30. D:\wwwroot\w.hbyxfy.com\caches\configs\database.php
  31. D:\wwwroot\w.hbyxfy.com\cms\libs\classes\db_mysqli.class.php
  32. D:\wwwroot\w.hbyxfy.com\cms\modules\content\classes\url.class.php
  33. D:\wwwroot\w.hbyxfy.com\cms\model\category_model.class.php
  34. D:\wwwroot\w.hbyxfy.com\cms\libs\classes\session.class.php
  35. D:\wwwroot\w.hbyxfy.com\cms\libs\classes\session_mysqli.class.php
  36. D:\wwwroot\w.hbyxfy.com\cms\model\session_model.class.php
  37. D:\wwwroot\w.hbyxfy.com\cms\temp\errors\html\error_exception.php
Memory Usage 8MB
Peak Memory Usage: 8MB
Memory Limit: 128M