Our Magento Programming team here at Customer Paradigm was trying to figure out why a cron was not firing for a Magento Enterprise site.
Cron is a system that tells a Magento site to start specific events at specific times. For example, if you want to have a coupon that gives free shipping for all users, cron might invoke a script that runs and updates the site. Crons are also used to help with the daily maintenance of the site, including rebuilding caches and indexes for Magento.
The issue was that there were no cron tab entries listed under the usual root user on the site. And there were a ton of users in the system. How can you find out which user had an entry into the cron?
Our Magento Programming team used a stack overflow article, and modified it to work for our needs.
Basically, it loops through all of the various users in the system, and then displays who has cron entries. This trick saved us a couple of hours of time.
Here are the technical details: