Jump to content

Recommended Posts

Posted (edited)

Username: edusete7, Server: Johnny, Main domain: email.heliohost.org

Warning: 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.org
User:
edusete7

Email:
edusete7@gmail.com

Password:
<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 by wolstech
Remove password
Posted

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.

Posted

I changed the password and my email. Once I realized that the support was

not private.

However,

I did not understand your instruction:

 

"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. "

 

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/

>

>

Posted

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).

Posted

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 server

cron 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.php

send-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.php

send-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.php

bounce-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.php

feedback-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.php

process-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 easily

add the cron jobs to the server cron.

In case you have shell access to your server, following commands should

help you add the crons easily:

 

# copy the current cron into a new file

crontab -l > mwcron

 

# add the new entries into the file

echo "* * * * * /usr/bin/php -q

/home/edusete7/public_html/boletim/apps/console/console.php

send-campaigns >/dev/null 2>&1" >> mwcron

echo "*/2 * * * * /usr/bin/php -q

/home/edusete7/public_html/boletim/apps/console/console.php

send-transactional-emails >/dev/null 2>&1" >> mwcron

echo "*/10 * * * * /usr/bin/php -q

/home/edusete7/public_html/boletim/apps/console/console.php

bounce-handler >/dev/null 2>&1" >> mwcron

echo "*/20 * * * * /usr/bin/php -q

/home/edusete7/public_html/boletim/apps/console/console.php

feedback-loop-handler >/dev/null 2>&1" >> mwcron

echo "*/3 * * * * /usr/bin/php -q

/home/edusete7/public_html/boletim/apps/console/console.php

process-delivery-and-bounce-log >/dev/null 2>&1" >> mwcron

echo "0 * * * * /usr/bin/php -q

/home/edusete7/public_html/boletim/apps/console/console.php hourly

>/dev/null 2>&1" >> mwcron

echo "0 0 * * * /usr/bin/php -q

/home/edusete7/public_html/boletim/apps/console/console.php daily

>/dev/null 2>&1" >> mwcron

 

# install the new cron

crontab mwcron

 

# remove the crontab file since it has been installed and we don't use

it anymore.

rm mwcron

 

Awaiting.

Thanks

Eduardo

 

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/

>

>

Posted

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.

Posted

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/

>

>

Posted

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 server

Below 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.php

send-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.php

send-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.php

bounce-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.php

feedback-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.php

process-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 easily

add the cron jobs to the server cron.

In case you have shell access to your server, following commands should

help you add the crons easily:

 

# copy the current cron into a new file

crontab -l > mwcron

 

# add the new entries into the file

echo "* * * * * /usr/bin/php -q

/home/edusete7/public_html/boletim/apps/console/console.php

send-campaigns >/dev/null 2>&1" >> mwcron

echo "*/2 * * * * /usr/bin/php -q

/home/edusete7/public_html/boletim/apps/console/console.php

send-transactional-emails >/dev/null 2>&1" >> mwcron

echo "*/10 * * * * /usr/bin/php -q

/home/edusete7/public_html/boletim/apps/console/console.php

bounce-handler >/dev/null 2>&1" >> mwcron

echo "*/20 * * * * /usr/bin/php -q

/home/edusete7/public_html/boletim/apps/console/console.php

feedback-loop-handler >/dev/null 2>&1" >> mwcron

echo "*/3 * * * * /usr/bin/php -q

/home/edusete7/public_html/boletim/apps/console/console.php

process-delivery-and-bounce-log >/dev/null 2>&1" >> mwcron

echo "0 * * * * /usr/bin/php -q

/home/edusete7/public_html/boletim/apps/console/console.php hourly

>/dev/null 2>&1" >> mwcron

echo "0 0 * * * /usr/bin/php -q

/home/edusete7/public_html/boletim/apps/console/console.php daily

>/dev/null 2>&1" >> mwcron

 

# install the new cron

crontab mwcron

 

# remove the crontab file since it has been installed and we don't use

it anymore.

rm mwcron

 

Awaiting.

Thanks

Eduardo

 

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/

>

>

Posted

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 server

Below 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.php

send-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.php

send-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.php

bounce-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.php

feedback-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.php

process-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 easily

add the cron jobs to the server cron.

In case you have shell access to your server, following commands should

help you add the crons easily:

 

# copy the current cron into a new file

crontab -l > mwcron

 

# add the new entries into the file

echo "* * * * * /usr/bin/php -q

/home/edusete7/public_html/boletim/apps/console/console.php

send-campaigns >/dev/null 2>&1" >> mwcron

echo "*/2 * * * * /usr/bin/php -q

/home/edusete7/public_html/boletim/apps/console/console.php

send-transactional-emails >/dev/null 2>&1" >> mwcron

echo "*/10 * * * * /usr/bin/php -q

/home/edusete7/public_html/boletim/apps/console/console.php

bounce-handler >/dev/null 2>&1" >> mwcron

echo "*/20 * * * * /usr/bin/php -q

/home/edusete7/public_html/boletim/apps/console/console.php

feedback-loop-handler >/dev/null 2>&1" >> mwcron

echo "*/3 * * * * /usr/bin/php -q

/home/edusete7/public_html/boletim/apps/console/console.php

process-delivery-and-bounce-log >/dev/null 2>&1" >> mwcron

echo "0 * * * * /usr/bin/php -q

/home/edusete7/public_html/boletim/apps/console/console.php hourly

>/dev/null 2>&1" >> mwcron

echo "0 0 * * * /usr/bin/php -q

/home/edusete7/public_html/boletim/apps/console/console.php daily

>/dev/null 2>&1" >> mwcron

 

# install the new cron

crontab mwcron

 

# remove the crontab file since it has been installed and we don't use

it anymore.

rm mwcron

 

Awaiting.

Thanks

Eduardo

 

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.

Posted

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 server

Below 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.php

send-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.php

send-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.php

bounce-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.php

feedback-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.php

process-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 easily

add the cron jobs to the server cron.

In case you have shell access to your server, following commands should

help you add the crons easily:

 

# copy the current cron into a new file

crontab -l > mwcron

 

# add the new entries into the file

echo "* * * * * /usr/bin/php -q

/home/edusete7/public_html/boletim/apps/console/console.php

send-campaigns >/dev/null 2>&1" >> mwcron

echo "*/2 * * * * /usr/bin/php -q

/home/edusete7/public_html/boletim/apps/console/console.php

send-transactional-emails >/dev/null 2>&1" >> mwcron

echo "*/10 * * * * /usr/bin/php -q

/home/edusete7/public_html/boletim/apps/console/console.php

bounce-handler >/dev/null 2>&1" >> mwcron

echo "*/20 * * * * /usr/bin/php -q

/home/edusete7/public_html/boletim/apps/console/console.php

feedback-loop-handler >/dev/null 2>&1" >> mwcron

echo "*/3 * * * * /usr/bin/php -q

/home/edusete7/public_html/boletim/apps/console/console.php

process-delivery-and-bounce-log >/dev/null 2>&1" >> mwcron

echo "0 * * * * /usr/bin/php -q

/home/edusete7/public_html/boletim/apps/console/console.php hourly

>/dev/null 2>&1" >> mwcron

echo "0 0 * * * /usr/bin/php -q

/home/edusete7/public_html/boletim/apps/console/console.php daily

>/dev/null 2>&1" >> mwcron

 

# install the new cron

crontab mwcron

 

# remove the crontab file since it has been installed and we don't use

it anymore.

rm mwcron

 

Awaiting.

Thanks

Eduardo

Posted

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/

Posted

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.
Guest
This topic is now closed to further replies.
×
×
  • Create New...