阻止公共访问CodeIgniter中的CRON作业脚本

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了阻止公共访问CodeIgniter中的CRON作业脚本相关的知识,希望对你有一定的参考价值。

  1. 1.)
  2. $this->load->library('user_agent');
  3. if( $this->agent->is_browser() or $this->agent->is_robot() or $this->agent->is_mobile()):
  4. exit('You may not access this file.');
  5. endif;
  6.  
  7. 2.)
  8. if($this->session->userdata('ip_address') != $this->input->server('SERVER_ADDR')) { die(); }

以上是关于阻止公共访问CodeIgniter中的CRON作业脚本的主要内容,如果未能解决你的问题,请参考以下文章

阻止用户访问我的 cron 作业脚本

Codeigniter 中的 Cron 作业

如何在没有 ssh 访问或 cron 作业的情况下链接公共存储?

cron 作业不适用于 codeigniter 2.2.5

如何为codeigniter设置cron作业url?

共享主机上的 CodeIgniter Cron 作业?