网上下载的那些PTCMS2.0.3版本只能监控和定时执行采集规则,反正部分功能是丧失状态,包括百度ping。
后台就算你设置了site和token也不会生效,其实只需改动一句代码就好了.
打开文件\application\cron\controller\monitor.php
找到public function indexAction()
把下面的
$zym_8 = $this->model->field( 'id,name,interval,lastruntime,status' )->where( array( 'action' => 'cron.task.collect' ) )->order( 'status desc' )->select();
这句改成
$zym_8 = $this->model->field('id,name,interval,lastruntime,status')->order('status desc')->select();
然后在到任务管理-运行监控看看是不是自动提交任务开启了。