I have a wordpress php script running as a cron job. it's currently running once a minute per domain indefinitely.
/usr/bin/php -q /home/domain1/public_html/wp-content/plugins/tdw/postit.php > /dev/null 2>&1
The problem is my server is getting big with 50+ domains and the crons are running into each other causing errors or crashing the database.
is there a way that i can make it run sequentially? like run domain1 script wait one minute then run domain2...looping through the url list.
thank you for your help.