@dtommy79 - actually the instructions are very clear, you just have to take the time to read them.
The page says:
So it says following commands, which means you will have to start copy/paste some commands into command line.
First one says:
Code:
# copy the current cron into a new file
crontab -l > mwcron
(remember, lines that start with a # are comments, so do not run those)
So you just have to copy the command, which is
crontab -l mwcron and run it from command line.
Then continue and run one by one, all the commands the scripts tells you to run.
After the above command, next 5 commands are just echo commands, like:
Code:
echo "* * * * * /usr/bin/php -q ....console.php send-campaigns >/dev/null 2>&1" > mwcron
What those command do is basically they write the line in between the quotes into the mwcron file.
And the last command is:
Which basically takes all the contents of the mwcron file and installs them as cron jobs.
Does this make any sense to you ?