Statistics: Posted by Cristián Lávaque — April 29th, 2011, 1:07 pm
Statistics: Posted by Jason Caldwell — April 29th, 2011, 12:20 pm
Statistics: Posted by Cristián Lávaque — April 27th, 2011, 2:43 pm
<?php
add_action ("ws_plugin__s2member_after_loaded", "my_function");
function my_function ()
{
$GLOBALS["WS_PLUGIN__"]["s2member"]["o"]["max_ip_restriction_time"] = 300;
/* This is in seconds. 300 seconds = 5 minutes. */
?>
Statistics: Posted by Jason Caldwell — April 27th, 2011, 2:12 am
Statistics: Posted by sensei — April 26th, 2011, 1:10 pm
Statistics: Posted by Cristián Lávaque — April 26th, 2011, 1:03 pm
<?php
add_filter ("ws_plugin__s2member_ip_restrictions__concurrency_time_per_ip", "s2_concurrency_time_per_ip");
function s2_concurrency_time_per_ip ()
{
return "72 hours";
}
add_action ("ws_plugin__s2member_after_loaded", "my_function");
function my_function ()
{
$GLOBALS["WS_PLUGIN__"]["s2member"]["o"]["max_ip_restriction_time"] = 300;
/* This is in seconds. 300 seconds = 5 minutes. */
}
?>
Statistics: Posted by sensei — April 26th, 2011, 12:49 pm
<?php
add_filter ("ws_plugin__s2member_ip_restrictions__concurrency_time_per_ip", "s2_concurrency_time_per_ip");
function s2_concurrency_time_per_ip ()
{
return "72 hours";
}
?>
Statistics: Posted by sensei — April 26th, 2011, 11:38 am
<?php
add_action ("ws_plugin__s2member_after_loaded", "my_function");
function my_function ()
{
$GLOBALS["WS_PLUGIN__"]["s2member"]["o"]["max_ip_restriction_time"] = 300;
/* This is in seconds. 300 seconds = 5 minutes. */
}
?>
Statistics: Posted by Jason Caldwell — April 21st, 2011, 1:12 am
Statistics: Posted by sensei — April 20th, 2011, 2:12 pm