致力于提供有竞争力的软件解决方案和服务,德尚网络欢迎您!
技术/产品咨询
技术/产品咨询
    • - 微信扫一扫 -

      QQ:181814630

      电话:15116362044

DS多平台演示
  • DSPlatform(多平台系统)演示地址及账号
    Thinkphp8.0+uniapp+mysql+Vue3,拓展性强,商户可开多个店铺,同时支持普通店铺,外卖店铺,上门家政,上门服务,视频教育等
    演示角色 演示地址 账号 密码
    后台PC端 点击进入 test 123456
    商户PC端(可开多个店铺) 点击进入 seller 123456
    店铺管理PC端 点击进入 seller 123456
    手机端 点击进入 test 123456
    DSPlatform(多平台系统)uniapp移动端二维码演示地址
    • 用户端

    • 机构端

DSO2O演示
DSMall演示

Linux下定时任务配置文档

【如安装了宝塔此处可忽略,直接在计划任务中配置即可】


crontab -e


# 执行频率:10分钟
*/10 * * * * /usr/local/php/bin/php -r "file_get_contents('http://xxx.com/crontab/Minutes/index.html');"
# 执行频率:1小时
0 */1 * * * /usr/local/php/bin/php -r "file_get_contents('http://xxx.com/crontab/Hour/index.html');"
# 执行频率:1天
0 3 * * * /usr/local/php/bin/php -r "file_get_contents('http://xxx.com/crontab/Date/index.html');"
# 执行频率:1个月
0 4 1 * * /usr/local/php/bin/php -r "file_get_contents('http://xxx.com/crontab/Month/index.html');"


可以查看定时任务记录

tail -f /var/log/cron

cat /var/log/cron