On Thu, 25 Mar 2010 19:31:06 -0000
"Nick Coleman" <ni...@ni...> wrote:
> How can I allow multiple submissions to a public survey from same
> computer? Is there a way I can alter a cookie to allow say 5
> submissions?, or maybe to expire when browser closes.
>
> How can I get a captcha to work on submit?
>
> In words of one syllable please, I am ignoramus when it comes to this
> sort of thing
>
> Thanks
>
> Nick
You want to copy the following settings from phpESP.ini.php.default to
phpESP.ini and change the value as indicated here:
// to limit double postings
// set this to the number of days people are restricted from
resubmitting // this is in fact the expire time for a cookie
// Set this to 0 to disable
$ESPCONFIG['limit_double_postings'] = 0;
// to use captcha confirmation, set this to 1
// Be sure to install the GD extension for PHP first, before using this
$ESPCONFIG['use_captcha'] = 1;
Hope this helps,
Franky
|