HelioHost Posted September 20, 2019 Posted September 20, 2019 (edited) Username: edusete7, Server: Johnny, Main domain: email.heliohost.orgWarning: HelioHost only allows two cron executions per day. ...If you need additional cron executions please contact support.Hello!I need to set up my mail manager: Mailwizz, with at least 7 cron job.To keep my clients informed.Below is my HelioHost account details | Johnny:My domain:email.heliohost.orgUser:edusete7Email:edusete7@gmail.comPassword:<redacted>Awaiting.For a favorable reply as soon as possible.No further,Eduard.Thanks.No Aguardo.por uma resposta favoravel o mais rapido possivel.Sem mais,Eduardo.Obrigado. Edited September 20, 2019 by wolstech Remove password
wolstech Posted September 20, 2019 Posted September 20, 2019 Can you please provide a URL to the script needing to be called? We can create an external cron to do this, however the file to be called must be accessible from a web browser. Also, please change your password. Admins do not require your password to make changes, and you should never include it in your emails. Our support email system is not private, and posts publicly on our forums for other users to see and assist with. As a result, your password was posted on a public website for about 45 minutes before we noticed and removed it.
HelioHost Posted September 20, 2019 Author Posted September 20, 2019 I changed the password and my email. Once I realized that the support wasnot private.However,I did not understand your instruction: "Can you please provide a URL to the script needing to be called? We cancreate an external cron to do this, however the file to be called must beaccessible from a web browser. " I am new to the subject of server configurations. Can you tell me a step-by-step how to do this ??? Thanks. Sou novato no assunto de configuracoes de servidores. Pode me informar um passo-a- passo de como fazer isso??? Obrigado. Em sex, 20 de set de 2019 as 17:38, Heliohost Support escreveu: > Can you please provide a URL to the script needing to be called? We can> create an external cron to do this, however the file to be called must be> accessible from a web browser.> > Also, please change your password. Admins do not require your password to> make changes, and you should never include it in your emails. Our support> email system is not private, and posts publicly on our forums for other> users to see and assist with. As a result, your password was posted on a> public website for about 45 minutes before we noticed and removed it.>>> You may view the status of your ticket by visiting:>> https://www.helionet.org/index/index.php?showtopic=37005>> Thank you,> Heliohost support> https://www.heliohost.org/> https://www.helionet.org/>>
wolstech Posted September 20, 2019 Posted September 20, 2019 From what I gather, you want to send email to someone on a schedule? A cron job can't send an email by itself. All a cron does is call a specific script or program on a schedule. The program it calls is what actually sends the mail. I need to know what the URL of the script is that sends the email so we can set up a cron to call it for you. If you mean you want to set up a mailing list, there's several ways to do that, but I don't recommend doing that here due to the email limits and likelihood of mail being marked as spam (which can lead to suspension if the recipient reports it).
HelioHost Posted September 25, 2019 Author Posted September 25, 2019 Many thanks for the reply, I am setting up on your server the Plugin MailWizz, whose URL is: http://email.heliohost.org/ Mailwizz Plugin Configuration URL: http://email.heliohost.org/boletim/install/index.php The Mailwizz Plugin uses external servers for sending email,Therefore, I will not use the email limits of the Heliohost server. Johnny Note: I do not spam. Below are the 7 tasks I need to configure in the heliohost johnny servercron job,To send my newsletters to my clients using the Mailwizz plugin ... Below: follow the instructions given by the cron job plugin: # Campaigns sender, runs each minute.* * * * * /usr/bin/php -q/home/edusete7/public_html/boletim/apps/console/console.phpsend-campaigns >/dev/null 2>&1 # Transactional email sender, runs once at 2 minutes.*/2 * * * * /usr/bin/php -q/home/edusete7/public_html/boletim/apps/console/console.phpsend-transactional-emails >/dev/null 2>&1 # Bounce handler, runs once at 10 minutes.*/10 * * * * /usr/bin/php -q/home/edusete7/public_html/boletim/apps/console/console.phpbounce-handler >/dev/null 2>&1 # Feedback loop handler, runs once at 20 minutes.*/20 * * * * /usr/bin/php -q/home/edusete7/public_html/boletim/apps/console/console.phpfeedback-loop-handler >/dev/null 2>&1 # Delivery/Bounce processor, runs once at 3 minutes.*/3 * * * * /usr/bin/php -q/home/edusete7/public_html/boletim/apps/console/console.phpprocess-delivery-and-bounce-log >/dev/null 2>&1 # Various tasks, runs each hour.0 * * * * /usr/bin/php -q/home/edusete7/public_html/boletim/apps/console/console.php hourly>/dev/null 2>&1 # Daily cleaner, runs once a day.0 0 * * * /usr/bin/php -q/home/edusete7/public_html/boletim/apps/console/console.php daily>/dev/null 2>&1 If you have a control box like CPanel, Plesk, Webmin etc, you can easilyadd the cron jobs to the server cron.In case you have shell access to your server, following commands shouldhelp you add the crons easily: # copy the current cron into a new filecrontab -l > mwcron # add the new entries into the fileecho "* * * * * /usr/bin/php -q/home/edusete7/public_html/boletim/apps/console/console.phpsend-campaigns >/dev/null 2>&1" >> mwcronecho "*/2 * * * * /usr/bin/php -q/home/edusete7/public_html/boletim/apps/console/console.phpsend-transactional-emails >/dev/null 2>&1" >> mwcronecho "*/10 * * * * /usr/bin/php -q/home/edusete7/public_html/boletim/apps/console/console.phpbounce-handler >/dev/null 2>&1" >> mwcronecho "*/20 * * * * /usr/bin/php -q/home/edusete7/public_html/boletim/apps/console/console.phpfeedback-loop-handler >/dev/null 2>&1" >> mwcronecho "*/3 * * * * /usr/bin/php -q/home/edusete7/public_html/boletim/apps/console/console.phpprocess-delivery-and-bounce-log >/dev/null 2>&1" >> mwcronecho "0 * * * * /usr/bin/php -q/home/edusete7/public_html/boletim/apps/console/console.php hourly>/dev/null 2>&1" >> mwcronecho "0 0 * * * /usr/bin/php -q/home/edusete7/public_html/boletim/apps/console/console.php daily>/dev/null 2>&1" >> mwcron # install the new croncrontab mwcron # remove the crontab file since it has been installed and we don't useit anymore.rm mwcron Awaiting.ThanksEduardo Em sex, 20 de set de 2019 as 18:10, Heliohost Support escreveu: > From what I gather, you want to send email to someone on a schedule? A> cron job can't send an email by itself. All a cron does is call a specific> script or program on a schedule. The program it calls is what actually> sends the mail. I need to know what the URL of the script is that sends the> email so we can set up a cron to call it for you.> > If you mean you want to set up a mailing list, there's several ways to do> that, but I don't recommend doing that here due to the email limits and> likelihood of mail being marked as spam (which can lead to suspension if> the recipient reports it).>>> You may view the status of your ticket by visiting:>> https://www.helionet.org/index/index.php?showtopic=37005>> Thank you,> Heliohost support> https://www.heliohost.org/> https://www.helionet.org/>>
Sn1F3rt Posted September 25, 2019 Posted September 25, 2019 I don't think Johnny's a good choice for doing this. Quite honestly half of the time crons, won't run and the other half, the email daemon will not respond and so on. If this is really important for you (since you mentioned "Clients"), I suggest you move to another server. Tommy's the preferred choice but right now, you won't get an entry even with a donation. So you might wait a few weeks more or just switch to Ricky. At least a hundred times better than Ricky.
HelioHost Posted September 25, 2019 Author Posted September 25, 2019 Thanks for the quick response. I have an account on Ricky server.I put it on hold if there was a problem. Therefore...I will install the Mailwizz Plugin on the Ricky Server. And I'll need the 7 cron jobRelying on your support for that. I will discard the Johnny server for this function, but I will use it fortesting of future sites. For a whileThanks .Eduardo Em qua, 25 de set de 2019 as 14:30, Heliohost Support escreveu: > I don't think Johnny's a good choice for doing this. Quite honestly half> of the time crons, won't run and the other half, the email daemon will not> respond and so on. If this is really important for you (since you mentioned> "Clients"), I suggest you move to another server. Tommy's the preferred> choice but right now, you won't get an entry even with a donation. So you> might wait a few weeks more or just switch to Ricky. At least a hundred> times better than Ricky.>> You may view the status of your ticket by visiting:>> https://www.helionet.org/index/index.php?showtopic=37005>> Thank you,> Heliohost support> https://www.heliohost.org/> https://www.helionet.org/>>
HelioHost Posted September 26, 2019 Author Posted September 26, 2019 Many thanks for the reply, I am setting up on your server the Plugin MailWizz, whose URL is: http://negociosonlinei.heliohost.org/ Mailwizz Plugin Configuration URL: http://negociosonlinei.heliohost.org/boletim/install/index.php?route=cron The Mailwizz Plugin uses external servers for sending email,Therefore, I will not use the email limits of the Heliohost server. Ricky As recommended by support ...I am installing Mailwizz Plugin on Ricky serverBelow is the plugin instructions for configuring 7 cron job... # Campaigns sender, runs each minute.* * * * * /usr/bin/php -q/home/edusete7/public_html/boletim/apps/console/console.phpsend-campaigns >/dev/null 2>&1 # Transactional email sender, runs once at 2 minutes.*/2 * * * * /usr/bin/php -q/home/edusete7/public_html/boletim/apps/console/console.phpsend-transactional-emails >/dev/null 2>&1 # Bounce handler, runs once at 10 minutes.*/10 * * * * /usr/bin/php -q/home/edusete7/public_html/boletim/apps/console/console.phpbounce-handler >/dev/null 2>&1 # Feedback loop handler, runs once at 20 minutes.*/20 * * * * /usr/bin/php -q/home/edusete7/public_html/boletim/apps/console/console.phpfeedback-loop-handler >/dev/null 2>&1 # Delivery/Bounce processor, runs once at 3 minutes.*/3 * * * * /usr/bin/php -q/home/edusete7/public_html/boletim/apps/console/console.phpprocess-delivery-and-bounce-log >/dev/null 2>&1 # Various tasks, runs each hour.0 * * * * /usr/bin/php -q/home/edusete7/public_html/boletim/apps/console/console.php hourly>/dev/null 2>&1 # Daily cleaner, runs once a day.0 0 * * * /usr/bin/php -q/home/edusete7/public_html/boletim/apps/console/console.php daily>/dev/null 2>&1 If you have a control box like CPanel, Plesk, Webmin etc, you can easilyadd the cron jobs to the server cron.In case you have shell access to your server, following commands shouldhelp you add the crons easily: # copy the current cron into a new filecrontab -l > mwcron # add the new entries into the fileecho "* * * * * /usr/bin/php -q/home/edusete7/public_html/boletim/apps/console/console.phpsend-campaigns >/dev/null 2>&1" >> mwcronecho "*/2 * * * * /usr/bin/php -q/home/edusete7/public_html/boletim/apps/console/console.phpsend-transactional-emails >/dev/null 2>&1" >> mwcronecho "*/10 * * * * /usr/bin/php -q/home/edusete7/public_html/boletim/apps/console/console.phpbounce-handler >/dev/null 2>&1" >> mwcronecho "*/20 * * * * /usr/bin/php -q/home/edusete7/public_html/boletim/apps/console/console.phpfeedback-loop-handler >/dev/null 2>&1" >> mwcronecho "*/3 * * * * /usr/bin/php -q/home/edusete7/public_html/boletim/apps/console/console.phpprocess-delivery-and-bounce-log >/dev/null 2>&1" >> mwcronecho "0 * * * * /usr/bin/php -q/home/edusete7/public_html/boletim/apps/console/console.php hourly>/dev/null 2>&1" >> mwcronecho "0 0 * * * /usr/bin/php -q/home/edusete7/public_html/boletim/apps/console/console.php daily>/dev/null 2>&1" >> mwcron # install the new croncrontab mwcron # remove the crontab file since it has been installed and we don't useit anymore.rm mwcron Awaiting.ThanksEduardo Em qua, 25 de set de 2019 as 14:58, Heliohost Support escreveu: > Thanks for the quick response.> I have an account on Ricky server.> I put it on hold if there was a problem.> Therefore...> I will install the Mailwizz Plugin on the Ricky Server.> And I'll need the 7 cron job> Relying on your support for that.> I will discard the Johnny server for this function, but I will use it for> testing of future sites.> For a while> Thanks .> Eduardo> Em qua, 25 de set de 2019 as 14:30, Heliohost Support> escreveu:> > I don't think Johnny's a good choice for doing this. Quite honestly half> > of the time crons, won't run and the other half, the email daemon will> not> > respond and so on. If this is really important for you (since you> mentioned> > "Clients"), I suggest you move to another server. Tommy's the preferred> > choice but right now, you won't get an entry even with a donation. So you> > might wait a few weeks more or just switch to Ricky. At least a hundred> > times better than Ricky.> >> > You may view the status of your ticket by visiting:> >> > https://www.helionet.org/index/index.php?showtopic=37005> >> > Thank you,> > Heliohost support> > https://www.heliohost.org/> > https://www.helionet.org/> >> >>> You may view the status of your ticket by visiting:>> https://www.helionet.org/index/index.php?showtopic=37005>> Thank you,> Heliohost support> https://www.heliohost.org/> https://www.helionet.org/>>
edusete7 Posted September 27, 2019 Posted September 27, 2019 I don't think Johnny's a good choice for doing this. Quite honestly half of the time crons, won't run and the other half, the email daemon will not respond and so on. If this is really important for you (since you mentioned "Clients"), I suggest you move to another server. Tommy's the preferred choice but right now, you won't get an entry even with a donation. So you might wait a few weeks more or just switch to Ricky. At least a hundred times better than Ricky. I am setting up on your server the Plugin MailWizz, whose URL is: http://negociosonlinei.heliohost.org/ Mailwizz Plugin Configuration URL: http://negociosonlin....php?route=cron The Mailwizz Plugin uses external servers for sending email,Therefore, I will not use the email limits of the Heliohost server. Ricky As recommended by support ...I am installing Mailwizz Plugin on Ricky serverBelow is the plugin instructions for configuring 7 cron job... # Campaigns sender, runs each minute.* * * * * /usr/bin/php -q/home/edusete7/public_html/boletim/apps/console/console.phpsend-campaigns >/dev/null 2>&1 # Transactional email sender, runs once at 2 minutes.*/2 * * * * /usr/bin/php -q/home/edusete7/public_html/boletim/apps/console/console.phpsend-transactional-emails >/dev/null 2>&1 # Bounce handler, runs once at 10 minutes.*/10 * * * * /usr/bin/php -q/home/edusete7/public_html/boletim/apps/console/console.phpbounce-handler >/dev/null 2>&1 # Feedback loop handler, runs once at 20 minutes.*/20 * * * * /usr/bin/php -q/home/edusete7/public_html/boletim/apps/console/console.phpfeedback-loop-handler >/dev/null 2>&1 # Delivery/Bounce processor, runs once at 3 minutes.*/3 * * * * /usr/bin/php -q/home/edusete7/public_html/boletim/apps/console/console.phpprocess-delivery-and-bounce-log >/dev/null 2>&1 # Various tasks, runs each hour.0 * * * * /usr/bin/php -q/home/edusete7/public_html/boletim/apps/console/console.php hourly>/dev/null 2>&1 # Daily cleaner, runs once a day.0 0 * * * /usr/bin/php -q/home/edusete7/public_html/boletim/apps/console/console.php daily>/dev/null 2>&1 If you have a control box like CPanel, Plesk, Webmin etc, you can easilyadd the cron jobs to the server cron.In case you have shell access to your server, following commands shouldhelp you add the crons easily: # copy the current cron into a new filecrontab -l > mwcron # add the new entries into the fileecho "* * * * * /usr/bin/php -q/home/edusete7/public_html/boletim/apps/console/console.phpsend-campaigns >/dev/null 2>&1" >> mwcronecho "*/2 * * * * /usr/bin/php -q/home/edusete7/public_html/boletim/apps/console/console.phpsend-transactional-emails >/dev/null 2>&1" >> mwcronecho "*/10 * * * * /usr/bin/php -q/home/edusete7/public_html/boletim/apps/console/console.phpbounce-handler >/dev/null 2>&1" >> mwcronecho "*/20 * * * * /usr/bin/php -q/home/edusete7/public_html/boletim/apps/console/console.phpfeedback-loop-handler >/dev/null 2>&1" >> mwcronecho "*/3 * * * * /usr/bin/php -q/home/edusete7/public_html/boletim/apps/console/console.phpprocess-delivery-and-bounce-log >/dev/null 2>&1" >> mwcronecho "0 * * * * /usr/bin/php -q/home/edusete7/public_html/boletim/apps/console/console.php hourly>/dev/null 2>&1" >> mwcronecho "0 0 * * * /usr/bin/php -q/home/edusete7/public_html/boletim/apps/console/console.php daily>/dev/null 2>&1" >> mwcron # install the new croncrontab mwcron # remove the crontab file since it has been installed and we don't useit anymore.rm mwcron Awaiting.ThanksEduardo Em qua, 25 de set de 2019 as 14:58, Heliohost Supportescreveu: > Thanks for the quick response.> I have an account on Ricky server.> I put it on hold if there was a problem.> Therefore...> I will install the Mailwizz Plugin on the Ricky Server.> And I'll need the 7 cron job> Relying on your support for that.> I will discard the Johnny server for this function, but I will use it for> testing of future sites.> For a while> Thanks .> Eduardo> Em qua, 25 de set de 2019 as 14:30, Heliohost Support> escreveu:> > I don't think Johnny's a good choice for doing this. Quite honestly half> > of the time crons, won't run and the other half, the email daemon will> not> > respond and so on. If this is really important for you (since you> mentioned> > "Clients"), I suggest you move to another server. Tommy's the preferred> > choice but right now, you won't get an entry even with a donation. So you> > might wait a few weeks more or just switch to Ricky. At least a hundred> > times better than Ricky.
edusete7 Posted September 27, 2019 Posted September 27, 2019 From what I gather, you want to send email to someone on a schedule? A cron job can't send an email by itself. All a cron does is call a specific script or program on a schedule. The program it calls is what actually sends the mail. I need to know what the URL of the script is that sends the email so we can set up a cron to call it for you. If you mean you want to set up a mailing list, there's several ways to do that, but I don't recommend doing that here due to the email limits and likelihood of mail being marked as spam (which can lead to suspension if the recipient reports it).Many thanks for the reply, I am setting up on your server the Plugin MailWizz, whose URL is: http://negociosonlinei.heliohost.org/ Mailwizz Plugin Configuration URL: http://negociosonlin....php?route=cron The Mailwizz Plugin uses external servers for sending email,Therefore, I will not use the email limits of the Heliohost server. Ricky At the suggestion of a friendly member of the forum I switched to Ricky server, according to him this is better for the type of service I want to run. Note:I don't spam Please, I need you to help me finish configuring the Mailwizz plugin.Below are the guidelines for setting up the 7 required cron jobs: As recommended by support ...I am installing Mailwizz Plugin on Ricky serverBelow is the plugin instructions for configuring 7 cron job... # Campaigns sender, runs each minute.* * * * * /usr/bin/php -q/home/edusete7/public_html/boletim/apps/console/console.phpsend-campaigns >/dev/null 2>&1 # Transactional email sender, runs once at 2 minutes.*/2 * * * * /usr/bin/php -q/home/edusete7/public_html/boletim/apps/console/console.phpsend-transactional-emails >/dev/null 2>&1 # Bounce handler, runs once at 10 minutes.*/10 * * * * /usr/bin/php -q/home/edusete7/public_html/boletim/apps/console/console.phpbounce-handler >/dev/null 2>&1 # Feedback loop handler, runs once at 20 minutes.*/20 * * * * /usr/bin/php -q/home/edusete7/public_html/boletim/apps/console/console.phpfeedback-loop-handler >/dev/null 2>&1 # Delivery/Bounce processor, runs once at 3 minutes.*/3 * * * * /usr/bin/php -q/home/edusete7/public_html/boletim/apps/console/console.phpprocess-delivery-and-bounce-log >/dev/null 2>&1 # Various tasks, runs each hour.0 * * * * /usr/bin/php -q/home/edusete7/public_html/boletim/apps/console/console.php hourly>/dev/null 2>&1 # Daily cleaner, runs once a day.0 0 * * * /usr/bin/php -q/home/edusete7/public_html/boletim/apps/console/console.php daily>/dev/null 2>&1 If you have a control box like CPanel, Plesk, Webmin etc, you can easilyadd the cron jobs to the server cron.In case you have shell access to your server, following commands shouldhelp you add the crons easily: # copy the current cron into a new filecrontab -l > mwcron # add the new entries into the fileecho "* * * * * /usr/bin/php -q/home/edusete7/public_html/boletim/apps/console/console.phpsend-campaigns >/dev/null 2>&1" >> mwcronecho "*/2 * * * * /usr/bin/php -q/home/edusete7/public_html/boletim/apps/console/console.phpsend-transactional-emails >/dev/null 2>&1" >> mwcronecho "*/10 * * * * /usr/bin/php -q/home/edusete7/public_html/boletim/apps/console/console.phpbounce-handler >/dev/null 2>&1" >> mwcronecho "*/20 * * * * /usr/bin/php -q/home/edusete7/public_html/boletim/apps/console/console.phpfeedback-loop-handler >/dev/null 2>&1" >> mwcronecho "*/3 * * * * /usr/bin/php -q/home/edusete7/public_html/boletim/apps/console/console.phpprocess-delivery-and-bounce-log >/dev/null 2>&1" >> mwcronecho "0 * * * * /usr/bin/php -q/home/edusete7/public_html/boletim/apps/console/console.php hourly>/dev/null 2>&1" >> mwcronecho "0 0 * * * /usr/bin/php -q/home/edusete7/public_html/boletim/apps/console/console.php daily>/dev/null 2>&1" >> mwcron # install the new croncrontab mwcron # remove the crontab file since it has been installed and we don't useit anymore.rm mwcron Awaiting.ThanksEduardo
Krydos Posted September 28, 2019 Posted September 28, 2019 I don't think you understand how cron jobs work. We limit internal cron jobs to 2 per day. That means you can run one twice, or two once each. Running a cron each minute results in 1440 cron executions which exceeds the limit by 1438. Not only that but you have all those other crons too. 1440 = every 1 minute 720 = every 2 minutes 144 = every 10 minutes 72 = every 20 minutes 480 = every 3 minutes 24 = every 60 minutes 1 = every 24 hours That's 2881 cron executions per day, when the limit is 2. I think you should consider a VPS where you can run cron as much as you want. https://www.heliohost.org/vps/
edusete7 Posted September 28, 2019 Posted September 28, 2019 I don't think you understand how cron jobs work. We limit internal cron jobs to 2 per day. That means you can run one twice, or two once each. Running a cron each minute results in 1440 cron executions which exceeds the limit by 1438. Not only that but you have all those other crons too. 1440 = every 1 minute 720 = every 2 minutes 144 = every 10 minutes 72 = every 20 minutes 480 = every 3 minutes 24 = every 60 minutes 1 = every 24 hours That's 2881 cron executions per day, when the limit is 2. I think you should consider a VPS where you can run cron as much as you want. https://www.heliohost.org/vps/ Hello!I really didn't understand the operation. Thank you very much, I will consider the VPS. Have a good weekend.Bye.
Recommended Posts