- Get Started
- User Guide
- How to
- ** How to use event_type category to do more
- How to Activate EventON
- How To Allow Users to Submit Events and Create an Events Listing Page
- How to apply a patch fix
- How to Bulk Update Language Translations Using the Import/Export Tool
- How to cancel addon subscription before auto renew
- How to Deactivate EventON Addon Licenses
- How To Display or Hide the Live Now Icon
- How to Enable Auto-updates for EventON
- How to find your EventON license key
- How to Fix a Broken Sidebar Caused by the EventON Widget
- How To Hide Blank Rows On the Calendar EventTop
- How To Set Up and Use the Filter Bar on Calendars
- How to Set Up Health Guidelines for EventON and Extend It
- How to Setup & Use Custom Fields for Events
- How to setup & use multi data types
- How to Setup Basic Paypal for Events
- How to show past events
- How to show your calendar on external sites using an iFrame
- How To Turn on Sort Options On Your Calendar
- How To Upgrade Your EventON Addon License
- How to Use Hashtags to Link to Event Sections
- How to Use Single Event Data Values
- How to Use the EventCard Designer
- How To Use the EventON Shortcode Executor(ESE) Widget
- How To Use The EventTop Designer
- How To Use the ICS Import Tool
- How to Use Virtual Visible Event End Time for Events with Limited Visibility but Extended Durations
- Using an SMTP Mail Plugin To Solve Email Delivery Issues in EventON
- General
- Basic System Requirements for EventON
- Best Practices Before Doing an Addon Update
- How to Delete Old Events from WordPress Trash Automatically
- How To Upgrade From Lite to Full Version
- I am confused about Event Type categories
- What is the calendar filter
- Why am I unable to proceed with the checkout for addon purchases?
- Troubleshooting
- ** What to check if eventON is not working
- How to debug for PHP code errors
- How to debug Javascript interactive issues
- How to find if an issue is coming from eventON
- How to fix font awesome icons not working on your site
- How to fix style override issues
- Increasing the WordPress Memory Limit
- Troubleshooting Using the Health Check Plugin
- Why is Location Google Map grayed out or not displayed on Event Card
- Virtual Events
- Frequently Asked Questions
- Code snippets
- CODE: To add additional healthcare guidelines
- How to add new social share icons
- How to change “events” slug & rewrites
- How to customize the eventtop date format
- How to hook into eventTop
- How to increase event type category count
- How to load EventON scripts to a page
- How to show additional custom data in the eventCard
- CODEX
- Other
- Tricks and Tips
- ** Override CSS in your calendar
- How to create events that goes past midnight
- How to customize Events archive page
- How to customize location and organizer archive page
- How to override event colors with event type colors
- How to show featured image on eventTop
- How to show various information on the eventTop
- How to translate EventON with WPML on the front-end
- One solution for /events slug not working
- Various Creative Ways to Use Multi Data Types
- APIs
- Addons
- Action User
- ActionUser Paid Feature Events
- ActionUser Plus
- Advent Calendar
- Bookings
- Countdown
- CSV Importer
- DailyView
- Dynamic Pricing
- Event API
- Event Dynamic Pricing
- Event Lists
- Event Map
- Event Photos
- Event Reviewer
- Event Search
- Event Seats
- Event Slider
- Event Tickets
- Auto Complete Ticket Order
- Auto re-stocking refunded, cancelled or failed orders
- Changelog for Event Tickets
- CODE: How to send Emails as Bcc
- How to add additional data to confirmation email
- How to add additional fields at checkout
- How to add additional fields to download attendees CSV file
- How to customize ticket email template
- How to manage capacity separately for repeat events
- How to set up Event Tickets
- How to set up variable prices for Tickets
- How To Switch From WooCommerce Blocks to Shortcode-Based Cart & Checkout Pages
- Event Wishlist
- Filters Plus
- FullCal
- ICS Importer
- Include Anything
- Lists & Items
- Moon Data
- PDFer
- Polls
- QR Code
- Reminders
- Repeat Customizer
- RSS Feed
- RSVP Events
- RSVP Events Invitees
- RSVP Events Waitlist
- RSVP Points
- Single Events
- Speakers & Schedule
- Subscriber
- Sync Events
- Variations & Options
- Virtual Plus
- Weather
- WeeklyView
- YearlyView
- Policies
- Server Related
- Shortcode
- Translation & Languages
Setting Up Server-Level Cron for EventON Reminders Addon
Last Updated: April 1, 2025
The EventON Reminders Addon allows you to send automatic reminder emails to event guests (via RSVP or Tickets addons) before and after events. These reminders rely on WordPress’s WP-Cron system, which triggers only when your site is visited. For timely delivery on low-traffic sites, setting up a server-level cron job ensures reminders are sent precisely as scheduled. Here’s how to configure it.
Prerequisites
- EventON Reminders Addon installed and activated (compatible with RSVP and Tickets addons).
- Access to your server’s control panel (e.g., cPanel) or SSH for cron setup.
- WordPress installed and configured with EventON settings.
Why Use Server-Level Cron?
WP-Cron depends on site visits, which can delay reminders if your site has low traffic. A server-level cron job runs independently, checking and sending reminders at set intervals (e.g., every 5 minutes), ensuring reliability.
Step-by-Step Setup
1. Disable WP-Cron (Optional but Recommended)
To rely solely on server cron:
- Open your WordPress site’s wp-config.php file (usually in the root directory).
- Add this line before the /* That’s all, stop editing! */ comment:
define('DISABLE_WP_CRON', true); - Save the file. This prevents WP-Cron from running on page loads, avoiding overlap with your server cron.
2. Configure the Reminders in EventON
- Go to EventON Settings > Reminders in your WordPress admin panel.
- Enable up to 2 pre-event and 2 post-event reminders.
- Set the timing (e.g., “60 minutes before event start”) and customize email content.
- For each event, edit the event page and enable reminders in the Reminders meta box. This schedules a one-time cron job (e.g., evorm_reminder_<event_id>_<type>).
3. Set Up the Server Cron Job
The cron job triggers wp-cron.php to process all scheduled tasks, including reminders.
Using cPanel
- Log in to cPanel and find Cron Jobs.
- Under “Add New Cron Job”:
- Common Settings: Select “Every 5 Minutes” (*/5 * * * *) for frequent checks.
- Command: Enter:
curl -s "https://yoursite.com/wp-cron.php?doing_wp_cron" > /dev/null 2>&1- Replace https://yoursite.com with your actual site URL.
- -s silences output, > /dev/null 2>&1 discards logs.
- Click Add New Cron Job to save.
Using SSH
- Access your server via SSH (e.g., ssh user@yourserver.com).
- Open the crontab file:
crontab -e - Add this line:
*/5 * * * * curl -s "https://yoursite.com/wp-cron.php?doing_wp_cron" > /dev/null 2>&1 - Save and exit (e.g., :wq in vi).
Alternative with wget
If curl isn’t available, use:
*/5 * * * * wget -q -O /dev/null "https://yoursite.com/wp-cron.php?doing_wp_cron"
4. Verify the Setup
- Install a plugin like WP Crontrol or Advanced Cron Manager.
- Check the Cron Events tab for events like evorm_reminder_<event_id>_<type> (e.g., evorm_reminder_93_evorm_pre_1-rs).
- Ensure the “Next Run” time updates after each cron execution (every 5 minutes).
- Test by scheduling a reminder for a near-future event and confirming the email is sent.
Notes
- Frequency: Every 5 minutes (*/5 * * * *) is recommended for timely reminders. Adjust to hourly (0 * * * *) if less precision is needed.
- Security: Ensure wp-cron.php is accessible (file permissions typically 644).
- Troubleshooting: Check server cron logs (e.g., /var/log/cron) or enable WordPress debug logging (define(‘WP_DEBUG_LOG’, true);) to trace issues.
- Dynamic Events: Each enabled reminder creates a unique cron job tied to the event ID and type (e.g., pre/post), managed by EVORM_Cron->perform_cron().
Did this article help you?