Created
April 21, 2015 08:00
-
-
Save maranemil/983b97ba313aa221041a to your computer and use it in GitHub Desktop.
Set some crons in crontab for SugarCRM
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo /opt/lampp/xampp stop | |
crontab -e | |
crontab -l | |
crontab: usage error: unrecognized option | |
usage: crontab [-u user] file | |
crontab [ -u user ] [ -i ] { -e | -l | -r } | |
(default operation is replace, per 1003.2) | |
-e (edit user's crontab) | |
-l (list user's crontab) | |
-r (delete user's crontab) | |
-i (prompt before deleting user's crontab) | |
# every 10 minutes | |
*/10 * * * * /opt/lampp/bin/php /opt/lampp/htdocs/YourPathToSugar/cron.php > /dev/null 2>&1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment