Questions tagged as 'cron'

2
answers

Make a lock of a cron

to see if someone gives me a hand, I have a cron that generates a feed of products in 26 languages, and it starts to happen that sometimes gives timeout I have happened to divide the file into 3 instead of having script.php have script1.php scri...
asked by 11.07.2018 / 15:13
2
answers

Python script not executed from Cron

I'm trying to run a Python script from cron. Manually functional without problems. I have already tried all the solutions that can be found on the web. The crontab file is as follows: PATH=/usr/sbin:/usr/bin:/sbin/bin:/sbin:/bin:/home/p...
asked by 27.02.2017 / 16:03
1
answer

Problem with cron and command laravel 5.6

I am scheduling mailings by command in laravel. When I include the execution in my cron file, it is executed in the frequency indicated in the cron and not in the indicated schedule of my command En el cron::::: * * * * * php /var/www/t...
asked by 29.08.2018 / 17:20
1
answer

Read xml file and persist information every so often

This is the scenario: I have an xml file that contains information that must be stored, updated or deleted from my database every month. I have taken two approaches to read the file from Java every so often: I used a cron with @Scheduled...
asked by 16.03.2018 / 11:55
1
answer

Run a script in Python with Crontab

I need to execute a script that is programmed in Python so that it runs every so often, specifically every 3 minutes. I am using crontab and the file that I modified was the following: crontab -e Within that file the content that you pla...
asked by 20.06.2018 / 18:46
1
answer

how can I use the laravel console on a remote server?

I'm new to laravel and I'm working on a project where I need to do a cron job, the problem is that I do not know what route to take, I'd like to know how to execute artisan commands on a remote server, and what programs should I use, any answer...
asked by 10.04.2017 / 19:23
2
answers

Run PHP with cron

I need to run a PHP script automatically, and for that I'm using the Cent'os Cron and the project is written with the Yii framework. The fact is that I am trying to add a crontab with: crontab -e And then I add the script path and the momen...
asked by 03.08.2018 / 14:44
1
answer

Is there a library or class to create a scheduled task on Vb.net?

Good morning community. I have a few days to program in VB. In this occasion I find a functionality to develop, which is to carry out a scheduled task. I've been researching and I can see that implementations can be made or even use system...
asked by 05.06.2017 / 17:10
1
answer

Cron job php to send mass mail

I have made a small program in php that consults who is celebrating the day today and sends a congratulatory email to the people who throw the query, with PHPMailer, everything works perfect, now I want to automate it, and I want to create a cro...
asked by 08.05.2017 / 16:52
1
answer

Do not run crontab from docker container

I'm trying to set up a crontab from docker, the code I have is like this: # Web container FROM debian:jessie RUN apt-get update RUN apt-get install -y cron curl apt-utils nano curl apache2 apache2-utils libmysqlclient-dev RUN apt-get -y inst...
asked by 13.12.2018 / 02:44