2026-08-25 22:38:04 — PHP8.2.28 — en/news/11.html

CodeIgniter\Database\Exceptions\DatabaseException #1054

Unknown column 'fstatus' in 'where clause'
SELECT *
FROM `dr_2_news`
WHERE `catid` = 3
AND `fstatus` = 1
AND `id` < 11
ORDER BY `id` desc
LIMIT 1

/www/wwwroot/www.mian-du.cn/dayrui/System/Database/BaseConnection.php at line 684

677                     }
678                 }
679 
680                 // Let others do something with this query.
681                 Events::trigger('DBQuery'$query);
682 
683                 if ($exception instanceof DatabaseException) {
684                     throw new DatabaseException(
685                         $exception->getMessage().'<br>'.$query,
686                         $exception->getCode(),
687                         $exception,
688                     );
689                 }
690 
691                 return false;
    Caused by:
    CodeIgniter\Database\Exceptions\DatabaseException #1054
    Unknown column 'fstatus' in 'where clause'    
    /www/wwwroot/www.mian-du.cn/dayrui/System/Database/MySQLi/Connection.php:332    
    Caused by:
    mysqli_sql_exception #1054
    Unknown column 'fstatus' in 'where clause'    
    /www/wwwroot/www.mian-du.cn/dayrui/System/Database/MySQLi/Connection.php:327    
  1. /www/wwwroot/www.mian-du.cn/dayrui/System/Database/MySQLi/Connection.php : 327   —  mysqli->query ()

    320             $this->connID->next_result();
    321             if ($res $this->connID->store_result()) {
    322                 $res->free();
    323             }
    324         }
    325 
    326         try {
    327             return $this->connID->query($this->prepQuery($sql), $this->resultMode);
    328         } catch (mysqli_sql_exception $e) {
    329             log_message('error', (string) $e);
    330 
    331             if ($this->DBDebug) {
    332                 throw new DatabaseException($e->getMessage(), $e->getCode(), $e);
    333             }
    334         }
    
  2. /www/wwwroot/www.mian-du.cn/dayrui/System/Database/BaseConnection.php : 729   —  CodeIgniter\Database\MySQLi\Connection->execute ()

    722      */
    723     public function simpleQuery(string $sql)
    724     {
    725         if (empty($this->connID)) {
    726             $this->initialize();
    727         }
    728 
    729         return $this->execute($sql);
    730     }
    731 
    732     /**
    733      * Disable Transactions
    734      *
    735      * This permits transactions to be disabled at run-time.
    736      *
    
  3. /www/wwwroot/www.mian-du.cn/dayrui/System/Database/BaseConnection.php : 646   —  CodeIgniter\Database\BaseConnection->simpleQuery ()

    639 
    640             return $query;
    641         }
    642 
    643         // Run the query for real
    644         try {
    645             $exception      null;
    646             $this->resultID = $this->simpleQuery($query->getQuery());
    647         } catch (DatabaseException $exception) {
    648             $this->resultID false;
    649         }
    650 
    651         if ($this->resultID === false) {
    652             $query->setDuration($startTime$startTime);
    653 
    
  4. /www/wwwroot/www.mian-du.cn/dayrui/System/Database/BaseBuilder.php : 1649   —  CodeIgniter\Database\BaseConnection->query ()

    1642 
    1643         if ($limit !== null) {
    1644             $this->limit($limit$offset);
    1645         }
    1646 
    1647         $result $this->testMode
    1648             $this->getCompiledSelect($reset)
    1649             : $this->db->query($this->compileSelect(), $this->binds, false);
    1650 
    1651         if ($reset) {
    1652             $this->resetSelect();
    1653 
    1654             // Clear our binds so we don't eat up memory
    1655             $this->binds = [];
    1656         }
    
  5. /www/wwwroot/www.mian-du.cn/dayrui/App/Cms/Extends/Home/Module.php : 800   —  CodeIgniter\Database\BaseBuilder->get ()

    793             }
    794 
    795             // 上一篇文章
    796             $builder \Phpcmf\Service::M()->db->table($table);
    797             $builder->where('catid', (int)$data['catid']);//->where('status', 9)
    798             $is_fstatus && $builder->where('fstatus'1);
    799             $builder->where('id<'. (int)$data['id'])->orderBy('id desc');
    800             $data['prev_page'] = $builder->limit(1)->get()->getRowArray();
    801             if (isset($data['prev_page']['url']) && $data['prev_page']['url']) {
    802                 $data['prev_page']['url'] = dr_url_rel(dr_url_prefix($data['prev_page']['url'], $this->module['dirname'], SITE_ID$this->is_mobile));
    803             }
    804 
    805             // 下一篇文章
    806             $builder \Phpcmf\Service::M()->db->table($table);
    807             $builder->where('catid', (int)$data['catid']);//->where('status', 9)
    
  6. /www/wwwroot/www.mian-du.cn/dayrui/App/Cms/Extends/Home/Module.php : 515   —  Phpcmf\Home\Module->_Show_Data ()

    508                         \Phpcmf\Service::V()->display('goto_url');
    509                         return $data;
    510                     }
    511                 }
    512             }
    513 
    514             // 格式化字段
    515             $data = $this->_Show_Data($data, $page);
    516 
    517             // 缓存结果 
    518             if ($data['uid'] != $this->uid && SYS_CACHE) {
    519                 if ($this->member && $this->member['is_admin']) {
    520                     // 管理员时不进行缓存
    521                     \Phpcmf\Service::L('cache')->init()->delete($name);
    522                 } else {
    
  7. /www/wwwroot/www.mian-du.cn/dayrui/Fcms/Control/Show.php : 34   —  Phpcmf\Home\Module->_Show ()

    27             $this->goto_404_page(dr_lang('无法通过id找到共享模块的模块目录'));
    28         }
    29 
    30         // 初始化模块
    31         $this->_module_init($mid);
    32 
    33         // 调用内容方法
    34         $this->_Show($id, null, max(1, (int)\Phpcmf\Service::L('input')->get('page')));
    35     }
    36 
    37 }
    38 
    
  8. /www/wwwroot/www.mian-du.cn/dayrui/System/Extend/Run.php : 149   —  Phpcmf\Control\Show->index ()

    142                         'value' => $value
    143                     ]);
    144 
    145                 }
    146             }
    147         }
    148 
    149         $app->$method();
    150 
    151         if (CI_DEBUG) {
    152             $tool = new \CodeIgniter\Debug\Toolbar(config(\Config\Toolbar::class));
    153             $tool->prepare($this);
    154         }
    155         
    156        
    
  9. /www/wwwroot/www.mian-du.cn/dayrui/System/Init.php : 404   —  Frame\Run->bootWeb ()

    397         $tool->respond();
    398     });
    399 }
    400 
    401 
    402 // 启动框架
    403 $run = new \Frame\Run();
    404 $run->bootWeb();
    405 
    406 
    
  10. require /www/wwwroot/www.mian-du.cn/dayrui/Fcms/Init.php   —   require()

  11. require /www/wwwroot/www.mian-du.cn/public/index.php   —   require()

  12. require /www/wwwroot/www.mian-du.cn/public/en/index.php   —   require()

$_SERVER

Key Value
USER www
HOME /home/www
HTTP_ACCEPT_ENCODING gzip, br, zstd, deflate
HTTP_USER_AGENT Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
HTTP_ACCEPT */*
HTTP_HOST www.mian-du.cn
PATH_INFO
REDIRECT_STATUS 200
SERVER_NAME www.mian-du.cn
SERVER_PORT 443
SERVER_ADDR 172.27.185.230
REMOTE_PORT 30554
REMOTE_ADDR 216.73.217.131
SERVER_SOFTWARE nginx/1.28.0
GATEWAY_INTERFACE CGI/1.1
HTTPS on
REQUEST_SCHEME https
SERVER_PROTOCOL HTTP/2.0
DOCUMENT_ROOT /www/wwwroot/www.mian-du.cn/public
DOCUMENT_URI /en/index.php
REQUEST_URI /en/news/11.html
SCRIPT_NAME /en/index.php
CONTENT_LENGTH
CONTENT_TYPE
REQUEST_METHOD GET
QUERY_STRING
SCRIPT_FILENAME /www/wwwroot/www.mian-du.cn/public/en/index.php
FCGI_ROLE RESPONDER
PHP_SELF /en/index.php
REQUEST_TIME_FLOAT
1787668684.5999
REQUEST_TIME
1787668684

Constants

Key Value
SITE_ID 2
WEBPATH /www/wwwroot/www.mian-du.cn/public/en/
FIX_WEB_DIR en
IS_DEV
1
IS_EDIT_TPL
0
ROOTPATH /www/wwwroot/www.mian-du.cn/public/
FCPATH /www/wwwroot/www.mian-du.cn/dayrui/
WRITEPATH /www/wwwroot/www.mian-du.cn/cache/
CONFIGPATH /www/wwwroot/www.mian-du.cn/config/
SELF index.php
IS_ADMIN

                                                                    
IS_VERSION
1
FRAMEPATH /www/wwwroot/www.mian-du.cn/dayrui/System/
CMSPATH /www/wwwroot/www.mian-du.cn/dayrui/Fcms/
MAX_CATEGORY
300
COREPATH /www/wwwroot/www.mian-du.cn/dayrui/Fcms/
BASEPATH /www/wwwroot/www.mian-du.cn/dayrui/System/System/
APPSPATH /www/wwwroot/www.mian-du.cn/dayrui/App/
MYPATH /www/wwwroot/www.mian-du.cn/dayrui/My/
TPLPATH /www/wwwroot/www.mian-du.cn/template/
IS_XRDEV
0
MOBILE_TPL_DIR mobile
UEDITOR_IMG_TITLE {cms_img_title}
TESTPATH /www/wwwroot/www.mian-du.cn/cache/tests/
TEMPPATH /www/wwwroot/www.mian-du.cn/dayrui/Fcms/Temp/
COMPOSER_PATH /www/wwwroot/www.mian-du.cn/public/vendor/autoload.php
IS_AJAX

                                                                    
IS_POST

                                                                    
IS_AJAX_POST

                                                                    
SYS_TIME
1787668684
SYS_DEBUG
1
SYS_ADMIN_CODE
0
SYS_ADMIN_LOG
0
SYS_AUTO_FORM
0
SYS_ADMIN_PAGESIZE
10
SYS_CRON_AUTH
0
SYS_TABLE_ISFOOTER
0
SYS_SMS_IMG_CODE
0
SYS_GO_404
0
SYS_THEME_ROOT_PATH
1
SYS_301
1
SYS_NOT_UPDATE
1
SYS_URL_ONLY
0
SYS_URL_REL
1
SYS_KEY PHPCMFf1cd4648aa33a4097c2af7b4c18f590e
SYS_API_TOKEN PHPCMFC378FC555A9D1
SYS_CSRF
0
SYS_CSRF_TIME
1
SYS_API_REL
0
SYS_HTTPS
1
SYS_NOT_ADMIN_CACHE
0
SYS_ADMIN_MODE
0
SYS_ADMIN_LOGINS
10
SYS_ADMIN_LOGIN_AES
SYS_ATTACHMENT_DOWN_REMOTE
SYS_ATTACHMENT_DOWN_SIZE
SYS_ADMIN_LOGIN_TIME
0
SYS_LOGIN_AES
0
SYS_ADMIN_OAUTH
0
SYS_ADMIN_SMS_LOGIN
0
SYS_ADMIN_SMS_CHECK
0
SYS_ATTACHMENT_DB
SYS_ATTACHMENT_PAGESIZE
SYS_ATTACHMENT_GUEST
SYS_ATTACHMENT_CF
SYS_ATTACHMENT_REL
SYS_ATTACHMENT_PATH
SYS_ATTACHMENT_SAVE_TYPE
SYS_ATTACHMENT_SAVE_DIR
SYS_ATTACHMENT_SAVE_ID
SYS_ATTACHMENT_URL
SYS_AVATAR_PATH
SYS_AVATAR_URL
SYS_API_CODE
0
SYS_ATTACHMENT_SAFE
IS_ADMIN_CACHE 1
SQGS 迅睿开源框架
CI_DEBUG
1
IS_FB_DEBUG
0
ENVIRONMENT development
SYS_CACHE
0
SYS_CACHE_TYPE
0
SYS_CACHE_SHOW
0
SYS_CACHE_LIST
0
SYS_CACHE_SEARCH
0
SYS_CACHE_SMS
0
SYS_CACHE_CRON
0
SYS_CACHE_CLEAR
0
IS_USE_CMS /www/wwwroot/www.mian-du.cn/dayrui/App/Cms/
IS_USE_MODULE /www/wwwroot/www.mian-du.cn/dayrui/App/Cms/
IS_USE_MEMBER /www/wwwroot/www.mian-du.cn/dayrui/App/Member/
FC_NOW_URL https://www.mian-du.cn/en/news/11.html
FC_NOW_HOST https://www.mian-du.cn/
DOMAIN_NAME www.mian-du.cn
WEB_DIR /en/
CMSURI news/11.html
IS_API

                                                                    
APPPATH /www/wwwroot/www.mian-du.cn/dayrui/System/
APP_DIR
IS_MEMBER

                                                                    
IS_HOME
1
FRAME_PHP_VERSION 8.0
FRAME_NAME System
FRAME_VERSION 4.7
EXIT_SUCCESS
0
EXIT_ERROR
1
EXIT_CONFIG
3
EXIT_UNKNOWN_FILE
4
EXIT_UNKNOWN_CLASS
5
EXIT_UNKNOWN_METHOD
6
EXIT_USER_INPUT
7
EXIT_DATABASE
8
EXIT__AUTO_MIN
9
EXIT__AUTO_MAX
125
EVENT_PRIORITY_LOW
200
EVENT_PRIORITY_NORMAL
100
EVENT_PRIORITY_HIGH
10
IS_COMMON
1
CMF_NAME 众里博士CMS
CMF_VERSION 4.7.1
CMF_UPDATE_TIME 1784974512
IS_SITES
1
SITE_URL https://www.mian-du.cn/en/
SITE_MURL https://www.mian-du.cn/en/book/
SITE_NAME Shanghai Miandu Technology Co., Ltd.
SITE_LOGO https://www.mian-du.cn/static/assets/logo-web.png
SITE_IS_MOBILE
2
SITE_IS_MOBILE_HTML
0
SITE_MOBILE_DIR book
SITE_MOBILE_NOT_PAD
0
SITE_THUMB_WATERMARK
0
SITE_THEME dr599
SITE_SEOJOIN _
SITE_REWRITE
0
SITE_TEMPLATE dr599
SITE_LANGUAGE zh-en
SITE_TIME_FORMAT Y-m-d H:i:s
ADMIN_URL https://www.mian-du.cn/
PAY_URL https://www.mian-du.cn/en/
ROOT_URL https://www.mian-du.cn/
OAUTH_URL https://www.mian-du.cn/en/
THEME_PATH https://www.mian-du.cn/static/
LANG_PATH https://www.mian-du.cn/api/language/zh-en/
ROOT_THEME_PATH https://www.mian-du.cn/static/
HOME_THEME_PATH https://www.mian-du.cn/static/dr599/
MOBILE_THEME_PATH https://www.mian-du.cn/en/book/static/dr599/
SYS_UPLOAD_PATH /www/wwwroot/www.mian-du.cn/public/uploadfile/
SYS_UPLOAD_URL https://www.mian-du.cn/uploadfile/
CLIENT_URL https://www.mian-du.cn/en/
CLIENT_NAME pc
IS_CLIENT
MEMBER_URL https://www.mian-du.cn/en/index.php?s=member
SITE_FID
0
MEMBER_CNAME 姓名
SITE_ICP 沪ICP备19006561号
SITE_TONGJI
SITE_LOGIN_TIME
36000
SITE_SCORE 金币
SITE_EXPERIENCE 经验
IS_API_HTTP
0
USER_HTTP_CODE 9718ce3edc87cbca4ffe88750d359ced
APP_WEBLOG_ID
485
MOD_DIR news
IS_SHARE 1
IS_COMMENT
0
MODULE_URL /
MODULE_NAME 内容
  1. /www/wwwroot/www.mian-du.cn/public/en/index.php
  2. /www/wwwroot/www.mian-du.cn/public/index.php
  3. /www/wwwroot/www.mian-du.cn/dayrui/Fcms/Init.php
  4. /www/wwwroot/www.mian-du.cn/config/custom.php
  5. /www/wwwroot/www.mian-du.cn/cache/config/system.php
  6. /www/wwwroot/www.mian-du.cn/config/rewrite.php
  7. /www/wwwroot/www.mian-du.cn/cache/config/domain_app.php
  8. /www/wwwroot/www.mian-du.cn/dayrui/Fcms/Core/Helper.php
  9. /www/wwwroot/www.mian-du.cn/dayrui/System/Init.php
  10. /www/wwwroot/www.mian-du.cn/dayrui/Fcms/Core/Auto.php
  11. /www/wwwroot/www.mian-du.cn/dayrui/Fcms/Core/Service.php
  12. /www/wwwroot/www.mian-du.cn/dayrui/Fcms/Core/Hooks.php
  13. /www/wwwroot/www.mian-du.cn/dayrui/System/Extend/Run.php
  14. /www/wwwroot/www.mian-du.cn/dayrui/Fcms/Core/Phpcmf.php
  15. /www/wwwroot/www.mian-du.cn/dayrui/System/Extend/Controller.php
  16. /www/wwwroot/www.mian-du.cn/dayrui/App/Pay/Config/Filters.php
  17. /www/wwwroot/www.mian-du.cn/dayrui/App/Comment/Config/Auto.php
  18. /www/wwwroot/www.mian-du.cn/dayrui/App/Comment/Config/Hooks.php
  19. /www/wwwroot/www.mian-du.cn/dayrui/App/Form/Config/Auto.php
  20. /www/wwwroot/www.mian-du.cn/dayrui/App/Safe/Config/Hooks.php
  21. /www/wwwroot/www.mian-du.cn/dayrui/App/Safe/Config/Filters.php
  22. /www/wwwroot/www.mian-du.cn/dayrui/App/Adcontent/Config/Hooks.php
  23. /www/wwwroot/www.mian-du.cn/dayrui/App/Excel/Config/Hooks.php
  24. /www/wwwroot/www.mian-du.cn/dayrui/App/Cms/Config/Version.php
  25. /www/wwwroot/www.mian-du.cn/dayrui/App/Cms/Config/Auto.php
  26. /www/wwwroot/www.mian-du.cn/dayrui/App/Cms/Config/Hooks.php
  27. /www/wwwroot/www.mian-du.cn/dayrui/App/Cms/Config/Filters.php
  28. /www/wwwroot/www.mian-du.cn/dayrui/App/Tag/Config/Hooks.php
  29. /www/wwwroot/www.mian-du.cn/dayrui/App/Access_password/Config/Hooks.php
  30. /www/wwwroot/www.mian-du.cn/dayrui/App/Mform/Config/Auto.php
  31. /www/wwwroot/www.mian-du.cn/dayrui/App/Mform/Config/Hooks.php
  32. /www/wwwroot/www.mian-du.cn/dayrui/App/Hy/Config/Hooks.php
  33. /www/wwwroot/www.mian-du.cn/dayrui/App/Chtml/Config/Hooks.php
  34. /www/wwwroot/www.mian-du.cn/dayrui/App/Weblog/Config/Hooks.php
  35. /www/wwwroot/www.mian-du.cn/dayrui/App/Member/Config/Hooks.php
  36. /www/wwwroot/www.mian-du.cn/dayrui/App/Ai_helper/Config/Hooks.php
  37. /www/wwwroot/www.mian-du.cn/dayrui/App/Sites/Config/Hooks.php
  38. /www/wwwroot/www.mian-du.cn/dayrui/App/Spider/Config/Hooks.php
  39. /www/wwwroot/www.mian-du.cn/dayrui/App/Fstatus/Config/Hooks.php
  40. /www/wwwroot/www.mian-du.cn/config/hooks.php
  41. /www/wwwroot/www.mian-du.cn/dayrui/System/Extend/Hook.php
  42. /www/wwwroot/www.mian-du.cn/dayrui/System/Config/Services.php
  43. /www/wwwroot/www.mian-du.cn/dayrui/System/Config/BaseService.php
  44. /www/wwwroot/www.mian-du.cn/dayrui/System/Config/Factories.php
  45. /www/wwwroot/www.mian-du.cn/dayrui/System/Config/Factory.php
  46. /www/wwwroot/www.mian-du.cn/dayrui/System/Config/BaseConfig.php
  47. /www/wwwroot/www.mian-du.cn/dayrui/System/Config/Exceptions.php
  48. /www/wwwroot/www.mian-du.cn/dayrui/System/Debug/Exceptions.php
  49. /www/wwwroot/www.mian-du.cn/dayrui/System/Events/Events.php
  50. /www/wwwroot/www.mian-du.cn/dayrui/System/Debug/Timer.php
  51. /www/wwwroot/www.mian-du.cn/dayrui/System/Config/Toolbar.php
  52. /www/wwwroot/www.mian-du.cn/dayrui/System/Debug/Toolbar.php
  53. /www/wwwroot/www.mian-du.cn/dayrui/System/Debug/Toolbar/Collectors/Database.php
  54. /www/wwwroot/www.mian-du.cn/dayrui/System/Debug/Toolbar/Collectors/BaseCollector.php
  55. /www/wwwroot/www.mian-du.cn/dayrui/System/Config/Database.php
  56. /www/wwwroot/www.mian-du.cn/dayrui/System/Database/Config.php
  57. /www/wwwroot/www.mian-du.cn/dayrui/System/Debug/Toolbar/Collectors/Views.php
  58. /www/wwwroot/www.mian-du.cn/dayrui/Fcms/Core/View.php
  59. /www/wwwroot/www.mian-du.cn/dayrui/System/Debug/Toolbar/Collectors/Files.php
  60. /www/wwwroot/www.mian-du.cn/dayrui/System/Debug/Toolbar/Collectors/Routes.php
  61. /www/wwwroot/www.mian-du.cn/dayrui/Fcms/Control/Show.php
  62. /www/wwwroot/www.mian-du.cn/dayrui/App/Cms/Extends/Home/Module.php
  63. /www/wwwroot/www.mian-du.cn/dayrui/My/Config/Version.php
  64. /www/wwwroot/www.mian-du.cn/cache/config/site.php
  65. /www/wwwroot/www.mian-du.cn/dayrui/Fcms/Library/Cache.php
  66. /www/wwwroot/www.mian-du.cn/dayrui/Fcms/Library/Lang.php
  67. /www/wwwroot/www.mian-du.cn/public/api/language/zh-en/lang.php
  68. /www/wwwroot/www.mian-du.cn/cache/lang_zh-en.php
  69. /www/wwwroot/www.mian-du.cn/dayrui/Fcms/Library/Input.php
  70. /www/wwwroot/www.mian-du.cn/dayrui/Fcms/Library/Security.php
  71. /www/wwwroot/www.mian-du.cn/dayrui/Fcms/Model/Member.php
  72. /www/wwwroot/www.mian-du.cn/dayrui/Fcms/Core/Model.php
  73. /www/wwwroot/www.mian-du.cn/dayrui/System/Extend/Model.php
  74. /www/wwwroot/www.mian-du.cn/config/database.php
  75. /www/wwwroot/www.mian-du.cn/dayrui/System/Database/Database.php
  76. /www/wwwroot/www.mian-du.cn/dayrui/System/Database/MySQLi/Connection.php
  77. /www/wwwroot/www.mian-du.cn/dayrui/System/Database/BaseConnection.php
  78. /www/wwwroot/www.mian-du.cn/dayrui/System/Database/ConnectionInterface.php
  79. /www/wwwroot/www.mian-du.cn/dayrui/App/Cms/Config/Run.php
  80. /www/wwwroot/www.mian-du.cn/cache/config/domain_client.php
  81. /www/wwwroot/www.mian-du.cn/dayrui/Fcms/Library/Router.php
  82. /www/wwwroot/www.mian-du.cn/dayrui/App/Member/Libraries/Member_auth.php
  83. /www/wwwroot/www.mian-du.cn/dayrui/App/Weblog/Models/Log.php
  84. /www/wwwroot/www.mian-du.cn/cache/config/weblog.php
  85. /www/wwwroot/www.mian-du.cn/dayrui/System/Database/MySQLi/Builder.php
  86. /www/wwwroot/www.mian-du.cn/dayrui/System/Database/BaseBuilder.php
  87. /www/wwwroot/www.mian-du.cn/dayrui/System/Traits/ConditionalTrait.php
  88. /www/wwwroot/www.mian-du.cn/dayrui/System/Database/Query.php
  89. /www/wwwroot/www.mian-du.cn/dayrui/System/Database/QueryInterface.php
  90. /www/wwwroot/www.mian-du.cn/dayrui/System/Database/MySQLi/Result.php
  91. /www/wwwroot/www.mian-du.cn/dayrui/System/Database/BaseResult.php
  92. /www/wwwroot/www.mian-du.cn/dayrui/System/Database/ResultInterface.php
  93. /www/wwwroot/www.mian-du.cn/dayrui/App/Member/Libraries/Member.php
  94. /www/wwwroot/www.mian-du.cn/dayrui/App/Cms/Config/Module_init.php
  95. /www/wwwroot/www.mian-du.cn/dayrui/Fcms/Model/Content.php
  96. /www/wwwroot/www.mian-du.cn/dayrui/App/Cms/Models/Content.php
  97. /www/wwwroot/www.mian-du.cn/dayrui/System/Extend/Cache.php
  98. /www/wwwroot/www.mian-du.cn/dayrui/System/Config/Cache.php
  99. /www/wwwroot/www.mian-du.cn/dayrui/System/Cache/CacheFactory.php
  100. /www/wwwroot/www.mian-du.cn/dayrui/System/Cache/Handlers/FileHandler.php
  101. /www/wwwroot/www.mian-du.cn/dayrui/System/Cache/Handlers/BaseHandler.php
  102. /www/wwwroot/www.mian-du.cn/dayrui/System/Cache/CacheInterface.php
  103. /www/wwwroot/www.mian-du.cn/dayrui/System/Helpers/filesystem_helper.php
  104. /www/wwwroot/www.mian-du.cn/dayrui/Fcms/Library/Field.php
  105. /www/wwwroot/www.mian-du.cn/dayrui/Fcms/Field/Text.php
  106. /www/wwwroot/www.mian-du.cn/dayrui/Fcms/Field/File.php
  107. /www/wwwroot/www.mian-du.cn/dayrui/Fcms/Field/Textarea.php
  108. /www/wwwroot/www.mian-du.cn/dayrui/Fcms/Field/Touchspin.php
  109. /www/wwwroot/www.mian-du.cn/dayrui/Fcms/Field/Uid.php
  110. /www/wwwroot/www.mian-du.cn/dayrui/Fcms/Field/Textbtn.php
  111. /www/wwwroot/www.mian-du.cn/dayrui/Fcms/Field/Date.php
  112. /www/wwwroot/www.mian-du.cn/dayrui/Fcms/Field/Editor.php
  113. /www/wwwroot/www.mian-du.cn/dayrui/App/Tag/Models/Tag.php
  114. /www/wwwroot/www.mian-du.cn/dayrui/Fcms/Model/App.php
  115. /www/wwwroot/www.mian-du.cn/dayrui/System/Database/Exceptions/DatabaseException.php
  116. /www/wwwroot/www.mian-du.cn/dayrui/System/Exceptions/RuntimeException.php
  117. /www/wwwroot/www.mian-du.cn/dayrui/System/Exceptions/ExceptionInterface.php
  118. /www/wwwroot/www.mian-du.cn/dayrui/System/Database/Exceptions/ExceptionInterface.php
  119. /www/wwwroot/www.mian-du.cn/dayrui/System/Exceptions/HasExitCodeInterface.php
  120. /www/wwwroot/www.mian-du.cn/dayrui/System/Debug/ExceptionHandler.php
  121. /www/wwwroot/www.mian-du.cn/dayrui/System/Debug/BaseExceptionHandler.php
  122. /www/wwwroot/www.mian-du.cn/dayrui/System/Debug/ExceptionHandlerInterface.php
  123. /www/wwwroot/www.mian-du.cn/dayrui/System/Exceptions/Views/html/error_exception.php