-
/www/wwwroot/taozhaigs.com/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 } -
/www/wwwroot/taozhaigs.com/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 * -
/www/wwwroot/taozhaigs.com/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 -
/www/wwwroot/taozhaigs.com/dayrui/System/Database/BaseBuilder.php : 1733 — CodeIgniter\Database\BaseConnection->query ()
1726 $sql = $this->compileSelect($this->countString . $this->db->protectIdentifiers('numrows')); 1727 } 1728 1729 if ($this->testMode) { 1730 return $sql; 1731 } 1732 1733 $result = $this->db->query($sql, $this->binds, false); 1734 1735 if ($reset) { 1736 $this->resetSelect(); 1737 } elseif (! isset($this->QBOrderBy)) { 1738 $this->QBOrderBy = $orderBy; 1739 } 1740 -
/www/wwwroot/taozhaigs.com/dayrui/Fcms/Core/Model.php : 241 — CodeIgniter\Database\BaseBuilder->countAllResults ()
234 // 分组 235 $this->param['group'] && $builder->groupBy($this->param['group']); 236 237 $where && $builder->where($where); 238 239 $this->_clear(); 240 241 return $builder->countAllResults(); 242 } 243 244 // 插入数据 245 public function insert($data) { 246 247 $this->db->table($this->table)->insert($data); 248 $rt = $this->db->error(); -
/www/wwwroot/taozhaigs.com/dayrui/App/Weblog/Models/Log.php : 174 — Phpcmf\Model->counts ()
167 } 168 if (isset($post['data']['password']) && $post['data']['password']) { 169 $post['data']['password'] = '****'; 170 } 171 172 !$config['max'] && $config['max'] = 500000; 173 if ($config['max']) { 174 $rs = $this->table('app_web_log')->counts(); 175 if ($rs > $config['max']) { 176 $this->query('delete from `'.$this->dbprefix('app_web_log').'` order by id asc limit 1000'); 177 } 178 } 179 180 $data = [ 181 'domain' => strtolower($_SERVER['HTTP_HOST']), -
/www/wwwroot/taozhaigs.com/dayrui/App/Weblog/Models/Log.php : 21 — Phpcmf\Model\Weblog\Log->_save_log ()
14 return; 15 } 16 17 if (is_cli()) { 18 return; 19 } 20 21 $this->_save_log(FC_NOW_URL); 22 } 23 24 public function html($url) { 25 $this->_save_log($url); 26 } 27 28 // 禁止访问 -
/www/wwwroot/taozhaigs.com/dayrui/App/Weblog/Config/Hooks.php : 4 — Phpcmf\Model\Weblog\Log->run ()
1<?php 2 3 \Phpcmf\Hooks::on('cms_init', function() { 4 \Phpcmf\Service::M('log', 'weblog')->run(); 5 }); 6 7 \Phpcmf\Hooks::on('cms_end', function($rt) { 8 \Phpcmf\Service::M('log', 'weblog')->end($rt); 9 }); -
{PHP internal code} — Phpcmf\Service::{closure:/www/wwwroot/taozhaigs.com/dayrui/App/Weblog/Config/Hooks.php:3} ()
-
/www/wwwroot/taozhaigs.com/dayrui/Fcms/Core/Hooks.php : 337 — call_user_func()
-
/www/wwwroot/taozhaigs.com/dayrui/Fcms/Core/Phpcmf.php : 472 — Phpcmf\Hooks::trigger ()
465 466 // 插件目录初始化(排除用户系统重复触发) 467 if (APP_DIR && APP_DIR != 'member') { 468 $this->init_file(APP_DIR); 469 } 470 471 // 挂钩点 程序初始化之后 472 \Phpcmf\Hooks::trigger('cms_init'); 473 } 474 475 /** 476 * 插件目录初始化文件 477 */ 478 public function init_file($namespace) { 479 -
/www/wwwroot/taozhaigs.com/dayrui/Fcms/Core/Phpcmf.php : 442 — Phpcmf\Common->_init_run ()
435 } else { 436 $this->_msg(0, dr_lang('账号被锁定')); 437 } 438 } 439 } 440 441 // 加载初始化文件 442 $this->_init_run(); 443 } 444 445 /** 446 * 加载初始化文件 447 */ 448 private function _init_run() { 449 -
/www/wwwroot/taozhaigs.com/dayrui/System/Extend/Run.php : 115 — Phpcmf\Common->__construct ()
108 109 $class = $namespace.'\\'.$controller; 110 if (! class_exists($class)) { 111 throw \CodeIgniter\Exceptions\PageNotFoundException::forControllerNotFound($class); 112 exit('<font color=red>控制器不存在</font>'); 113 } 114 115 $app = new $class; 116 117 if (! method_exists($app, $method)) { 118 throw \CodeIgniter\Exceptions\PageNotFoundException::forMethodNotFound($class, $method); 119 exit('<font color=red>方法不存在</font>'); 120 } 121 122 if (IS_POST && SYS_CSRF) { -
/www/wwwroot/taozhaigs.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/taozhaigs.com/dayrui/Fcms/Init.php — require()
-
require /www/wwwroot/taozhaigs.com/public/index.php — require()
-
require /www/wwwroot/taozhaigs.com/public/fenzhan/pc/index.php — require()