Forum Moderators: bakedjake
I have a dedicated sever if it helps.
One more thing does corn use alot of resource of the server if it has to run every 24 hours, because I have over 550.000 unique visits so it is alot of info and I had troubles with webalizer it took to much power to run, because it had 200MB to work with everyday.
zeus
It has a GUI interface to cron amongst many other things.
kb.indiana.edu/data/afiz.html
Yes I just read that from India
um, that's IndiaNA.edu. We're smack in the middle of the US, not India ;)
if you need another tutorial, try this thread from two days ago: [webmasterworld.com...] which after a brief discussion links to another one at [webmasterworld.com...]
zeus
Useful notes for working with crontab:
1) 'crontab' can mean either a table of instructions for cron, or the program typically used to edit those tables. If someone/something says 'your crontab', 'root's crontab', etc, they are referring to the configuration file. If they say 'use crontab', they mean the program for editing them.
2) 'crontab' the program doesn't have its own editor. Instead, like many Unix utilities, it uses an external editor. Which external text editor it uses can be configured by each user, which is nice. Unfortunately, your typical newbie doesn't know to pick one, much less how. Even more unfortunately, the editor that is usually the default is 'vi'. Vi is not user-intelligible, much less user-friendly. Fix this by setting environment variables $EDITOR and $VISUAL to contain the name of a text editor you do know how to use. I use:
export EDITOR=/usr/bin/emacsin my .bashrc.
export VISUAL=/usr/bin/emacs
Don't set it to emacs unless you know how to use it - emacs is only slighly less opaque to a new user than vi. If you don't know what else to use, 'pico' might be a good choice. Eventually, you probably ought to learn either vi or emacs, but you don't want to practice with them on important config files. I don't know off the top of my head whether 'crontab' uses $EDITOR or $VISUAL, but it's a good idea to set both, because some programs that behave this way use one, and some use the other.
Hope that helps.