Tagged Questions
-1
votes
2answers
27 views
Curl don't work on cron execution
I have bash a script like the following
#!/bin/bash
date
curl http://lab.nextt.com.br/somefile1.html -z ../public_html/somefile1.html -o ../public_html/somefile1.html --silent --show-error ...
2
votes
1answer
41 views
Capturing output of 'at'
How can I log the output of a command executed by at?
This command is actually being exec()'d by PHP as in:
<?php
exec('echo "curl -k https://localhost/projekt/crons/purge/5" | at now + 5 ...
1
vote
1answer
77 views
cpanel cronjob curl increase file size
I created a bash script to run as a cronjob with Cpanel:
--------------content of cron.sh---------------------
#!/bin/bash
curl http://website.com/1.gif >> ...
0
votes
1answer
203 views
Curl doesn't work in crontab
I'm new to set up server settings and to the whole unix thing so maybe this is simple.
I'm trying to start crontab with curl in but it doesn't work. I want it go to file and send email every 30 ...
0
votes
2answers
5k views
How do I use curl in a cron job?
I need to set up a cron job in cpanel that calls a URL (on the same server) once a week. I was going to use wget but it turns out this is disabled on the shared server being used.
Is there an ...
0
votes
1answer
99 views
Services Similar to Cronless?
Are there any other well known cron alternative services to manage large amounts of automated tasks, such as curl'ng a url at a certain frequency?
The only one I have found is cronless.com
0
votes
1answer
207 views
Run crontab to click a website link every hour
I would like to click on a test like this (the "start testing" button) every hour so I can get a hourly result (results are saved on the server side). Basically what happens is that I connect with a ...