Cronjob not working

haha i just came on to post the exact same thing.

I took some tips from you, but still cant get it working.

I’m on a seedbox so not sure if thats the reason why…

I put my upload script in /home2/rich/bin/upload.sh

the script is:

#!/bin/bash
if pidof -o %PPID -x “rclone-plex-upload.sh”; then
exit 1
fi
rclone move /home2/rich/download/ acdencrypt: -v --min-age 10m --log-file=/home2/rich/logs/acd-cron.log
exit

my cron is:

*/2 * * * * /home2/rich/bin/upload.sh

Like the OP i can run it manually but the cron doesnt start it

Any ideas?