XF 2.3 Adjusting Cron Jobs

Senkusha

Member
Is there a way I can manually adjust the time a Cron job runs? When I look at Cron Entries, I see the following message, and I can not edit the values I wish to.

Only a limited number of fields in this item may be edited.
 
You could put this into config.php:
Code:
$config['development']['enabled'] = true;

Change the values. Save it. Then remove it from config.php so that something else doesn't erroneously get changed later on.

Your changes will be saved, but I'm not entirely sure if this is the correct way to do it. as opposed to creating an add on that would update the cron job(s).

The best way is probably copying the old values to a new cron job, changing the time, and then disabling/retitling the old cron job.

This way, you have a backup if something goes wrong.

I.e., Copy all the values of Update user trophies to NEW: Update user trophies with the new times, then disable Update user trophies.
 
Last edited:
Back
Top Bottom