Paypal Automatic EOT Behavior keeps going blank

Hello,

The setting “Enable s2Member Auto-EOT System” keeps going blank for me. I check back after awhile and noticed there are a lot of people that have no been expired and still have access to the content.

I then try using domain.com//?s2member_auto_eot_system_via_cron=1 to force expire these accounts, however that does not seem to be making a dent.

You might add a php on your own plugin or use something like “functionality” and add the code below to it:

// Increase per process SQL records scanned for EOT Reminder Emails

add_filter('ws_plugin__s2member_auto_eot_system_per_process', 's2_eots_per_process');
add_filter('ws_plugin__s2member_pro_eot_reminders_per_process', 's2_eots_per_process');
function s2_eots_per_process() {
   return 500;
}

Adjust the number according to your needs. Maybe it helps.

:tulip: