The cron that could be set for Amelia is the one for the email notifications that require a cron to be sent - the notifications that have a clock icon next to their names on the Notifications page, like reminder notification, follow up notification and so.
First email notifications need to work in general in Amelia, and they can be configured by our isntructions https://wpamelia.com/notification-settings/ If they work, but the notifications that need cron don't work, then the cron is not properly set.
Depending on the server, there are different configurations for it, which you can contact your hosting provider about, or you can check out one of the solutions for it on this link.
GET 'https://yourdomain.com/wp-admin/admin-ajax.php?action=wpamelia_api&call=/notifications/scheduled/send' > /dev/null
If that doesn't help you, my suggestion is to install the WP Crontrol plugin. You can find more info about it, and detailed instructions on how to set it up in our FAQ section.
Hi,
I would like to use the service of appointment scheduling. However, it does not work. What do I do wrong? Attached are the settings in WP-Cron.
THX Wolfgang
Hi Wolfgang,
The cron that could be set for Amelia is the one for the email notifications that require a cron to be sent - the notifications that have a clock icon next to their names on the Notifications page, like reminder notification, follow up notification and so.
First email notifications need to work in general in Amelia, and they can be configured by our isntructions https://wpamelia.com/notification-settings/ If they work, but the notifications that need cron don't work, then the cron is not properly set.
Depending on the server, there are different configurations for it, which you can contact your hosting provider about, or you can check out one of the solutions for it on this link.
Also, you can try this:
*/15 * * * * wget -q -O - "https://www.yourwebsite.com/wp-admin/admin-ajax.php?action=wpamelia_api&call=/notifications/scheduled/send"
Or this:
*/15 * * * * /usr/local/bin/php ~/public_html/wp-cron.php --action='wpamelia_api' --call='/notifications/scheduled/send'
Or this:
GET 'https://yourdomain.com/wp-admin/admin-ajax.php?action=wpamelia_api&call=/notifications/scheduled/send' > /dev/null
If that doesn't help you, my suggestion is to install the WP Crontrol plugin. You can find more info about it, and detailed instructions on how to set it up in our FAQ section.