My extension needs to send in emails to different users everyday at a specific time mentioning few details.
How do I perform cron jobs in TYPO3?
Typo3 Version 6.1.1.
Extension is built on extension builder.
My python script: badlink.py (i used http://wummel.github.io/linkchecker/)
#!/usr/bin/python
import os
os.system('linkchecker -ocsv -Fcsv/badlinks.csv www.mysite.com')
My crontab task
*/2 * * * * /opt/badlink.py
the problem is that If I run…
I would to implement a simple functionality on my server:
I would to know when a my process that it is running on the server is active or no.
If this process is not running I would to send an e-mail to administrator.
To implement this functionality…
I need a cron job to run every second weekday for example.
If cron job last ran on a Thursday it should run on the next Monday.
The re-run on Wednesday and again on Friday again and on Tuesday and again on Thursday bring it back to the start.
I have a voip script located below
$call= new VoipCall();
$phone_number='phone_number';
$text="example text"
$script= new VoipScript('example');
$call->setScript($script);
$success=voip_text($text, $call);
Which I am trying…
i'm trying to do some stuff automatically every 8 Weeks, so i had open a new user crontab like this one:
crontab -e
0 9 * */2 1-5 do_this_stuff
# do it every 2 month on monday till friday at 9:00 am
This should do the job every 2 month on monday…
I have two cron jobs, first one should be executed every minutes and the second one should be done every two minutes.
In my crontab file
*/1 * * * * /home/fileserver/Desktop/Test/DBBackgrounder.exe;
*/2 * * * * echo "Date Successfully Updated:…
I need a function to be triggered by the user when simply clicking on a button. This will set a job to be executed at a specified time (let's say 9am) and will eventually be repeated periodically. That would be handled by PHP
So i've though about…
I'm wondering if there is an more elegant solution by defining the scope of my shell variables only once? (export QUERY_STRING;)
Here are a couple of my crontasks, notice that I'm currently exporting each shell variable for each task:
2 0 1 * *…
I am currently working on a project in CakePhp in which Cron job is required for sending emails & other activities, i am little bit confuse related to this if i created CRON using core php methods in custom controller then it work fine & also if i…
I have a cron job running every few minutes that goes through the first 50 items on a 'to do' list, runs a script on each item and marks it as run in the database.
This was working well until the table that marks off the item as complete got locked…
I setup a cron job (in Virtualmin based of Webmin) for execute a simple test script and it work well.
The cron command used is:
/usr/bin/php -q /home/myuser/domains/mysite.com/public_html/mailtest.php
The url is:
www.mysite.com/mailtest.php
The…
I'm actually trying to test running cron jobs in my Unix server (via Cpanel 11)
I've been trying to execute WGET.
My command looks like this :
30 11 * * * wget http://www.mydomain.com/myscript.php
The server tries to run the job every 5 minutes.…
I am trying to create a php script that will be run by a cron job on a nightly basis.
The database holds entries from a contact form.
The idea is to run the php script (via cron) and have it export any new entries from the database from that day…
I'm trying to add a cron job on my server, that is hosting here http://partisscan.bugs3.com/.
The provider for that is serversfree http://www.serversfree.com.
It is realy good but i can't make a cron job. I want my php file…