mikeinjersey
01-24-2011, 05:33 PM
vbulletin by default doesn't have an option to send out Activation Emails out in bulk.
I had a server issue the last couple months in which a lot of people never got their Activation email.
The default Cron that runs to send out these activation emails...only does it for 5 days (max) after they've registered... I need to increase this to 2 months....just for 1 run...and then i'll set it back to where it was.
I was told I need to modify /includes/cron/activate.php
And I believe I need to edit this section -
define('ONEDAY', 86400);
define('TWODAYS', 172800);
define('FIVEDAYS', 432000);
define('SIXDAYS', 518400);
And change ONEDAY to a very high number.
Does the 86,400 refer to minutes or something ?
any help on getting this done is appreciated... basically i just wanna resend the activation emails to people that have signed up months ago.
thx a ton
I had a server issue the last couple months in which a lot of people never got their Activation email.
The default Cron that runs to send out these activation emails...only does it for 5 days (max) after they've registered... I need to increase this to 2 months....just for 1 run...and then i'll set it back to where it was.
I was told I need to modify /includes/cron/activate.php
And I believe I need to edit this section -
define('ONEDAY', 86400);
define('TWODAYS', 172800);
define('FIVEDAYS', 432000);
define('SIXDAYS', 518400);
And change ONEDAY to a very high number.
Does the 86,400 refer to minutes or something ?
any help on getting this done is appreciated... basically i just wanna resend the activation emails to people that have signed up months ago.
thx a ton