<bdo id='oBJDk'></bdo><ul id='oBJDk'></ul>
      <i id='oBJDk'><tr id='oBJDk'><dt id='oBJDk'><q id='oBJDk'><span id='oBJDk'><b id='oBJDk'><form id='oBJDk'><ins id='oBJDk'></ins><ul id='oBJDk'></ul><sub id='oBJDk'></sub></form><legend id='oBJDk'></legend><bdo id='oBJDk'><pre id='oBJDk'><center id='oBJDk'></center></pre></bdo></b><th id='oBJDk'></th></span></q></dt></tr></i><div id='oBJDk'><tfoot id='oBJDk'></tfoot><dl id='oBJDk'><fieldset id='oBJDk'></fieldset></dl></div>
      <tfoot id='oBJDk'></tfoot>

      <small id='oBJDk'></small><noframes id='oBJDk'>

      <legend id='oBJDk'><style id='oBJDk'><dir id='oBJDk'><q id='oBJDk'></q></dir></style></legend>
    1. pbootcms网站自动清理runtime缓存方法

      时间:2023-05-26
        <tbody id='QMIN8'></tbody>
      • <small id='QMIN8'></small><noframes id='QMIN8'>

          <bdo id='QMIN8'></bdo><ul id='QMIN8'></ul>
          <tfoot id='QMIN8'></tfoot>
          1. <i id='QMIN8'><tr id='QMIN8'><dt id='QMIN8'><q id='QMIN8'><span id='QMIN8'><b id='QMIN8'><form id='QMIN8'><ins id='QMIN8'></ins><ul id='QMIN8'></ul><sub id='QMIN8'></sub></form><legend id='QMIN8'></legend><bdo id='QMIN8'><pre id='QMIN8'><center id='QMIN8'></center></pre></bdo></b><th id='QMIN8'></th></span></q></dt></tr></i><div id='QMIN8'><tfoot id='QMIN8'></tfoot><dl id='QMIN8'><fieldset id='QMIN8'></fieldset></dl></div>
            • <legend id='QMIN8'><style id='QMIN8'><dir id='QMIN8'><q id='QMIN8'></q></dir></style></legend>

                最近有朋友在用到pbootcms建网站,他购买的是一个空间比较小的虚拟主机,时间一长空间就满了,网站就没法运行,只能手动删除下runtime这个缓存目录,如果我们要让系统自动删除清理缓存目录,要怎么操作呢?

                首先将需要修改的问题做好备份,找到/apps/home/controller/ExtLabelController.php文件

                找到代码
                    // 测试扩展单个标签
                    private function test()
                    {
                        $this->content = str_replace('{pboot:userip}', get_user_ip(), $this->content);
                    }
                }
                在下面加入
                public function clean_session()
                
                {
                
                    check_dir(RUN_PATH . '/archive', true);
                
                    $data = json_decode(trim(substr(file_get_contents(RUN_PATH . '/archive/session_ticket.php'), 15)));
                
                    if($data->expire_time && $data->expire_time < time()){
                
                        ignore_user_abort(true);
                
                        set_time_limit(7200);
                
                        ob_start();
                
                        ob_end_flush();
                
                        flush();
                
                        $rs = path_delete(RUN_PATH . '/session');
                
                        if($rs){
                
                            $data->expire_time = time() + 60 * 60 * 24; // 下一次清理时间
                
                            create_file(RUN_PATH . '/archive/session_ticket.php', "<?php exit();?>".json_encode($data), true);
                
                        }
                
                    } else {
                
                        $data->expire_time = time() - 60 * 60 * 24; // 初始化清理时间
                
                        create_file(RUN_PATH . '/archive/session_ticket.php', "<?php exit();?>".json_encode($data), true);
                
                    }
                
                }
                保存ExtLabelController.php文件

                在网站模板里面加入如下代码(代码一般加入到foot.html(通用底部)或者head.html(通用头部)文件里)

                代码示例:
                <script src='/?p=/ExtLabel/clean_session/' async='async'></script>
                这样在有人访问网站时候就会清理缓存!ps:在这里需要注意,如果您的空间够用的话不建议这么操作,毕竟缓存的话对网站访问速度还是有帮助的。
                上一篇:pbootcms解决提示:URL名称与模型URL名称冲突,请换一个名称的问题 下一篇:没有了

                相关文章

                <tfoot id='Hciz9'></tfoot>
              1. <i id='Hciz9'><tr id='Hciz9'><dt id='Hciz9'><q id='Hciz9'><span id='Hciz9'><b id='Hciz9'><form id='Hciz9'><ins id='Hciz9'></ins><ul id='Hciz9'></ul><sub id='Hciz9'></sub></form><legend id='Hciz9'></legend><bdo id='Hciz9'><pre id='Hciz9'><center id='Hciz9'></center></pre></bdo></b><th id='Hciz9'></th></span></q></dt></tr></i><div id='Hciz9'><tfoot id='Hciz9'></tfoot><dl id='Hciz9'><fieldset id='Hciz9'></fieldset></dl></div>
              2. <legend id='Hciz9'><style id='Hciz9'><dir id='Hciz9'><q id='Hciz9'></q></dir></style></legend>

                  <small id='Hciz9'></small><noframes id='Hciz9'>

                    <bdo id='Hciz9'></bdo><ul id='Hciz9'></ul>