dongwen7730 2013-10-04 12:46
浏览 30
已采纳

在服务器上设置cronjob脚本

I'm trying to set up a cronjob script on my server.
I've followed this tutorial and I now have a folder "scripts" with "cronjob.php":

<?php
define("_CRONJOB_",true);
require(APPLICATION_PATH . '../public/index.php');

// my executions
?>

In my "index.php" file:

if(!defined('_CRONJOB_') || _CRONJOB_ == false)
{
    $application->bootstrap()->run();
}

But how can I set this on my server? I've done the following as a start: chmod 755 cronjob.php, but what's next?

  • 写回答

2条回答 默认 最新

  • du13520157325 2013-10-04 13:02
    关注

    Use crontab, make sure you have both crontab and php-cli installed.

    First edit the cron by doing

    $ crontab -e

    Then insert something like this

    */10 * * * * /usr/bin/php /path/to/scripts/cronjob.php

    This examples does execute the script every 10th minute.

    For more on the syntax see https://en.wikipedia.org/wiki/Cron#Predefined_scheduling_definitions

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 一道python难题
  • ¥15 用matlab 设计一个不动点迭代法求解非线性方程组的代码
  • ¥15 牛顿斯科特系数表表示
  • ¥15 arduino 步进电机
  • ¥20 程序进入HardFault_Handler
  • ¥15 oracle集群安装出bug
  • ¥15 关于#python#的问题:自动化测试
  • ¥20 问题请教!vue项目关于Nginx配置nonce安全策略的问题
  • ¥15 教务系统账号被盗号如何追溯设备
  • ¥20 delta降尺度方法,未来数据怎么降尺度