On the old server before the migration, I had a small cron job setup to run every morning. It is designed to clean up some directories from the previous day and free up disk space. It appears that there is a new file path that the cron job needs to be pointing to on the new server. Here is what I had working on the old server:
/usr/bin/php -f /home/talk2azs/www/location_directory/filename.php >/dev/null 2>&1
How should this cron job be formatted on the new server?
/usr/bin/php -f /home/talk2azs/www/location_directory/filename.php >/dev/null 2>&1
How should this cron job be formatted on the new server?