• We value your experience with Plesk during 2024
    Plesk strives to perform even better in 2025. To help us improve further, please answer a few questions about your experience with Plesk Obsidian 2024.
    Please take this short survey:

    https://pt-research.typeform.com/to/AmZvSXkx
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

running Cron jobs

I

imhere2009

Guest
Hi

Im trying to setup a cronjob in plesk, though they wont work, ive tried everything. Ive looked for tutorials though cant find anything that works. i have 2 php scripts, one that needs to be run every hour and one to run every midnight the link i use to my scripts is
/home/myusername/directroy/to/my/php/file.php

Do i need to put anything before /home or after /file.php for this to work?

Also if anyone can help, could you please show me some examples for a cronjob to go off every hour and every midnight

Thanks in Advance
Steve
 
Bump

Anyone please help me with this, its driving me crazy.

Thanks
 
Here is sample of a cron job that I have in plesk:

/home/username/bin/runlogs > /dev/null 2>&1

Min = 1
H = *
DM = *
M = *
DW = *


I created a "bin" folder in my /home/username directory and placed a file called "runlogs" The schedule is: One minute after each hour of every day of every month for every day of the week.

If you wanted every night at midnight, use 1 0 * * *, This would be One minute after midnight ( 00 hours ) every day/month/day of week.
 
If you are asking how to run a php file via a crontab then this depends if you have php installed as a binary - or if you just run it as an apache module.

If its the latter the easiest way is to use lynx

do a

which lynx

to check you have it installed and the path of it then just use (alter lynx path accordingly)

/usr/local/bin/lynx -dump http://DOMAIN/path/to/script.php

Lynx is just a browser so just treat it as you would IE or FF.
 
Back
Top