Hey, In my cPanel where I can set up cron jobs, what does the star sign represent? (*) I am trying to set up a cron job that executes daily at 9am Is this correct for what I want to do?
The "*" means every value possible for the setting. So "script.php" will run at 9:00 am every day of the week, every month, on every weekday. Basically the script will run every day at 09:00, no matter what.
You may also like to know that you can do fractions of * e.g. To run a script every 15 minutes rather than every minute you can use: */15 * * * * GET http://www.myscript.com/script.php