what is the path to "get"?
Let me explain a little,.. I've just installed Elgg,..
Here is step 4 to the installation:
Here's crontab.example:
I know '/usr/bin/get' won't work,.. cuz cron is blow`n up my mail box,..
Edit:
After having over 700 new email messages from cron:
Im obviouly removing my cronjobs for the moment.
But, I really could use some help here,..
Let me explain a little,.. I've just installed Elgg,..
Here is step 4 to the installation:
Code:
4. Install your crontab (UNIX ONLY)
Cron is a UNIX command which allows programs to be run at set
times of the day.
If you want to take advantage of some of the maintenance
functions such as log rotation or garbage collection, you must
install a cron tab to trigger these events.
We have provided an example crontab as /crontab.example. Edit this
with a text editor to provide the details of your site, rename it
to another filename (eg 'crontab.mine') and install it with the
following command:
crontab crontab.mine
Substitute your filename for 'crontab.mine'.
Here's crontab.example:
Code:
# Crontab example.
#
# This file is an example of triggering Elgg cron events. Modify and register events
# as appropriate.
#
# See http://docs.elgg.org/wiki/Cron for more information
#
# @author Marcus Povey
# Location of GET (see: http://docs.elgg.org/wiki/What_is_get)
GET='/usr/bin/GET'
# Location of your site (don't forget the trailing slash!)
ELGG='http://www.example.com/'
# The crontab
# Don't edit below this line!
@reboot $GET ${ELGG}pg/cron/reboot/
* * * * * $GET ${ELGG}pg/cron/minute/
*/5 * * * * $GET ${ELGG}pg/cron/fiveminute/
15,30,45,59 * * * * $GET ${ELGG}pg/cron/fifteenmin/
30,59 * * * * $GET ${ELGG}pg/cron/halfhour/
@hourly $GET ${ELGG}pg/cron/hourly/
@daily $GET ${ELGG}pg/cron/daily/
@weekly $GET ${ELGG}pg/cron/weekly/
@monthly $GET ${ELGG}pg/cron/monthly/
@yearly $GET ${ELGG}pg/cron/yearly/
I know '/usr/bin/get' won't work,.. cuz cron is blow`n up my mail box,..
Edit:
After having over 700 new email messages from cron:
Im obviouly removing my cronjobs for the moment.
But, I really could use some help here,..
Last edited: