Most voted "scheduling" questions
Use this tag for questions about scheduling tasks, such as Linux cron or Windows Task Scheduler.
Learn more…25 questions
Sort by count of
-
20
votes4
answers8186
viewsHow to schedule a recurring task on linux?
What command can I use to schedule a recurring task on linux? I would also like to send the return of the command by email automatically. What is the most suitable tool?
-
14
votes1
answer268
viewsWhat happens to a 2:30 Cronjob if the server goes down at 2:28 and only comes back 5 minutes later?
I don’t know if the question is confusing, but is that I have used a lot of Cronjob in my systems currently and do not want to have problems. So I’m going to illustrate my concern with a…
-
9
votes3
answers8386
viewsHow to create a task scheduler without using cron and without using wordpress
I need to create an automatic method to schedule my email marketing system, to trigger emails automatically, without using the browser. Today my system is using cron, and every time I enable it on a…
-
7
votes4
answers5703
viewsSchedule process execution in C#
I have an application that will run 24h/day the 7 days/week, IE, It will always be running. I need that at a specific time, every day a method of this application is called.
-
6
votes1
answer1992
viewsHow to schedule an event in Javascript?
Information: I would like to know how to accomplish a Agendamento of an event, that is a function that I would pass as a parameter, that would perform such a dia/mês/ano such hora:minuto that I…
-
6
votes1
answer462
viewsWhat is the difference between the Mysql Trigger and Mysql Event exception?
I would like to create a e-mail trigger scheduler, without the use of cron, and would like to know if it is possible to do this through Mysql. Searching the Internet I saw some examples of event…
-
5
votes2
answers3041
viewsInclude task in Windows task scheduler via batch
I do the configuration of several types of backups per batch, the codes are not pertinent to this question, but what it takes is always configure them by the Windows Task Scheduler. There are some…
-
4
votes1
answer1474
viewsScheduled tasks on the web
In Google Inbox allows the creation of reminders and allows you to postpone them to a certain date and time. The reminder is then taken from the main screen and when this exact date and time comes…
-
4
votes2
answers6419
viewsRun PHP script in Windows task scheduler
I have a PHP script that I currently leave running with an open browser, with the command below: <meta HTTP-EQUIV="refresh" CONTENT="1800"> Despite the mémoria problems that the browser…
-
4
votes1
answer1609
viewsRun an Laravel Schedule every minute?
I’m using the Laravel 5.3 and would like to perform a task every minute, within the task I will put some checks, the question is to make it run every minute. I did the following in the Kernel App:…
-
2
votes1
answer166
viewsSchedule job to run on the Wildfly server
I need to create a task runner where it will call a method from time to time. I saw an example and it was like this my implementation: public class Agendador { // Scheduler private final…
-
2
votes1
answer1315
viewsChange task time on Windows
I need to configure a Windows job to run every 30 seconds, but the task scheduler has a minimum time of 1 minute and if I try to change to (30 seconds || 0.5 minutes || 0.5 minutes) I always get the…
-
2
votes1
answer60
viewsHow can I perform a function only once in a period of time
I wanted to know how to do a single execution, example: In my application there is a way to schedule charges and they are scheduled per day, then on a certain day X she will be charged. I’m…
-
1
votes1
answer350
viewsDisplay an alert when the event is 5 minutes away
I am developing an agenda in Java, where I have in the database the date and time saved. However, what would be the best way to display an alert 5 minutes before the event? Do I have to run the…
-
1
votes1
answer14054
viewsWeekly planner Rails 5
I need to implement a simple schedule in Rails for daily schedule presentation, I adapted the model and controller to add new schedules with date and time, but the difficulty is in presenting in…
-
1
votes1
answer52
viewsWhich Timezone to use for apschedule?
I’m trying to schedule a task for weekdays, from 8hrs to 17hrs, every ten minutes, using the apscheduler module. from apscheduler.schedulers.background import BackgroundScheduler cron =…
-
1
votes3
answers1607
viewsSchedule php script in windows
Hello, I have a php script that needs to run automatically every 15 minutes in windows (my system is hosted locally). Well, I saw that it has to be by the scheduler of windows tasks so I configured…
-
1
votes1
answer351
viewsReturn all results of a query with mysqli_fetch_array
Hello, I am trying to implement a block scheduling system where the user chooses the date and location of his preference. After that, he will choose the times according to availability and need to…
-
1
votes1
answer418
viewsHow do I make Python click a button in google?
I’m making a bot that enters google Meet at scheduled times, got the part of opening the meetings at the desired times, but I bumped into the problem that the program needs to click the "enter"…
-
0
votes1
answer2134
viewsHow do I run Cron Jobs in PHP?
I wanted to use Cron Jobs in these php: php. <tr> <td bgcolor="<?=$highlight?>"> <? require('config.php'); $sqle = "SELECT * FROM tb_ads WHERE user='$last' and ident='$id'";…
-
0
votes0
answers27
viewsSchedule the execution of a PHP page
I am making a webservice in PHP, this webservice will need to run every day at a certain time, how can I schedule to run this routine automatically?
-
0
votes0
answers379
viewsConsult Mysql to bring events before, during and after the current date
I asked this question but it had not become very clear the code so I decided to post again with it complete. I seek the help of friends for a solution if possible of this code. I have a mysql…
-
0
votes1
answer46
viewsScheduler for Azure
Does anyone know if I can make a simple console program that will do some SQL Insert and put it to run on the Azure scheduler? (whether it’s the free one or the paid one…
-
0
votes1
answer99
viewsHow to schedule a schedule with kivy
I want to make an event happen for 2 seconds at the speed of 29/30, after 5 seconds passed since the beginning of the program, with the following code: from kivy.app import App from…
-
0
votes1
answer933
viewsLogging a batch file
I have the following problem: We receive a daily backup of the database from 4AM to 5AM, and we have a batch job running at 6 AM to get this database running on a VM. In Task Scheduler, everything…