Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Hi Antoine, great work!
How could I get the scheduler to run every 1-5 minutes? This highest frequency is hourly in the module.
Gerjan
Thanks Gerjan,
This feature doesn't come in the current uMirror version. But it will be very easy to implement I think.
You can create your own .ashx file and call it every 1-5 minutes using the native Umbraco task Scheduled.
The will look like
Synchronizer sync = new Synchronizer(); sync.context = HttpContext.Current; sync.projectid = {your project id}; sync.currentUser = umbraco.BusinessLogic.User.GetCurrent(); sync.start(); ...
check Ui/Scheduler/ScheduledTaskHandler.ashx.cs in github, it will help you
Thanks, I will give it a shot.
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Run every x-minutes
Hi Antoine, great work!
How could I get the scheduler to run every 1-5 minutes? This highest frequency is hourly in the module.
Gerjan
Thanks Gerjan,
This feature doesn't come in the current uMirror version. But it will be very easy to implement I think.
You can create your own .ashx file and call it every 1-5 minutes using the native Umbraco task Scheduled.
The will look like
check Ui/Scheduler/ScheduledTaskHandler.ashx.cs in github, it will help you
Thanks, I will give it a shot.
is working on a reply...