Issue
For some scheduled tasks listed in the Scheduler, clicking the pencil icon has no effect. Other entries for scheduled tasks may be edited as expected.
Environment: DNN 9.2.0
Troubleshooting
View records for scheduled tasks using the following query:
select * from Schedule
If the tasks that cannot be edited have a date listed in the ScheduleStartDate column, the issue is due to a known bug in DNN 9.2.0.
Workaround
- Back up the Schedule table before making changes.
- Set this parameter to NULL for all scheduled tasks using the query below:
update Schedule
This will overwrite all the dates for the attribute ScheduleStartDate for all tasks.
set ScheduleStartDate = NULL - Confirm that the solution worked by editing the tasks from the Scheduler.
Comments
0 comments
Please sign in to leave a comment.