I think I spoke too soon….
it did send the next 90 when I clicked the url…
I have set up cron jobs using the following commands and had the following results.
curl –silent http://successwithpietnlindy.com/wp-cron.php?24d2866fe34035bb8ce8b5d5542751e7&action=wysija_cron&process=all > /dev/null 2>&1
NOTHING
wget -q http://successwithpietnlindy.com/wp-cron.php?24d2866fe34035bb8ce8b5d5542751e7&action=wysija_cron&process=all > /dev/null 2>&1
NOTHING
curl http://successwithpietnlindy.com/wp-cron.php?24d2866fe34035bb8ce8b5d5542751e7&action=wysija_cron&process=all > /dev/null 2>&1
got email saying
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 –:–:– –:–:– –:–:– 0
0 0 0 0 0 0 0 0 –:–:– 0:00:01 –:–:– 0
0 0 0 0 0 0 0 0 –:–:– 0:00:01 –:–:– 0
but NO EMAILS SENT
wget http://successwithpietnlindy.com/wp-cron.php?24d2866fe34035bb8ce8b5d5542751e7&action=wysija_cron&process=all > /dev/null 2>&1
Got email saying
–2015-10-10 17:04:01– http://successwithpietnlindy.com/wp-cron.php?24d2866fe34035bb8ce8b5d5542751e7
Resolving successwithpietnlindy.com… 50.31.160.158 Connecting to successwithpietnlindy.com|50.31.160.158|:80… connected.
HTTP request sent, awaiting response… 200 OK
Length: 0 [text/html]
Saving to: “wp-cron.php?24d2866fe34035bb8ce8b5d5542751e7.9”
0K 0.00 =0s
2015-10-10 17:04:02 (0.00 B/s) – “wp-cron.php?24d2866fe34035bb8ce8b5d5542751e7.9” saved [0/0]
BUT NO EMAILS SENT
PLEASE Help
1) Your MailPoet Cron will only send the next batch of 90 emails after an hour, there’s no way to force sending by opening the cron URL. I suggest you increase your sending frequency, example: 22 each 15 minutes.
2) You won’t be able to properly test your Cron commands using the sufix “> /dev/null 2>&1” at the end of the command since this part is to make it “silent”.
If you want to properly test your Cron URL, just do a normal CURL command with a &report=1 to the end of the URL, like this:
curl "http://successwithpietnlindy.com/wp-cron.php?24d2866fe34035bb8ce8b5d5542751e7&action=wysija_cron&process=all&report=1"