-
/www/wwwroot/fzbofeng.com/dayrui/System/Database/BaseConnection.php : 614 — CodeIgniter\Database\BaseConnection->initialize ()
607 * @todo BC set $queryClass default as null in 4.1 608 */ 609 public function query(string $sql, $binds = null, bool $setEscapeFlags = true, string $queryClass = '') 610 { 611 $queryClass = $queryClass !== '' && $queryClass !== '0' ? $queryClass : $this->queryClass; 612 613 if (empty($this->connID)) { 614 $this->initialize(); 615 } 616 617 /** 618 * @var Query $query 619 */ 620 $query = new $queryClass($this); 621 -
/www/wwwroot/fzbofeng.com/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 } -
/www/wwwroot/fzbofeng.com/dayrui/App/Seolang/Helpers/SeolangHelper.php : 357 — CodeIgniter\Database\BaseBuilder->get ()
350 $db = \Phpcmf\Service::M()->db; 351 } catch (\Throwable $e) { 352 return ''; 353 } 354 $langs = $db->table('seolang_lang') 355 ->where('status', 1) 356 ->orderBy('is_default DESC, id ASC') 357 ->get()->getResultArray(); 358 359 if (empty($langs)) { 360 return ''; 361 } 362 363 $current_lang = seolang_current_mark(); 364 // ★ 修复:使用 seolang_get_full_uri() 过滤后台预览参数 -
/www/wwwroot/fzbofeng.com/cache/template/template_DS_pc_DS_default_DS_home_DS_404.html.cache.php : 9 — seolang_seo_tags()
-
include /www/wwwroot/fzbofeng.com/dayrui/Fcms/Core/View.php — include()
-
/www/wwwroot/fzbofeng.com/dayrui/Fcms/Core/Phpcmf.php : 807 — Phpcmf\View->display ()
800 } 801 } 802 803 \Phpcmf\Service::V()->assign([ 804 'msg' => $msg, 805 'meta_title' => dr_lang('你访问的页面不存在') 806 ]); 807 \Phpcmf\Service::V()->display('404.html'); 808 !defined('SC_HTML_FILE') && exit(); 809 } 810 811 /** 812 * 生成静态时的跳转提示 813 */ 814 public function _html_msg($code, $msg, $url = '', $note = '') { -
/www/wwwroot/fzbofeng.com/dayrui/Fcms/Control/Home.php : 47 — Phpcmf\Common->goto_404_page ()
40 public function s404() { 41 if (IS_DEV) { 42 $uri = \Phpcmf\Service::L('input')->get('uri', true); 43 $msg = '没有找到这个页面: '.$uri; 44 } else { 45 $msg = dr_lang('没有找到这个页面'); 46 } 47 $this->goto_404_page($msg); 48 } 49 50 } 51 -
/www/wwwroot/fzbofeng.com/dayrui/System/Extend/Run.php : 149 — Phpcmf\Control\Home->s404 ()
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 -
/www/wwwroot/fzbofeng.com/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 -
require /www/wwwroot/fzbofeng.com/dayrui/Fcms/Init.php — require()
-
require /www/wwwroot/fzbofeng.com/index.php — require()