plugin needs at least PHP 5.2.9 !
-
FYI – since the author uses
array_unique ($iplist_arr[“ip”], SORT_STRING);
in saving options you need at least PHP 5.2.9, otherwise array_unique will return NULL and all blocked IP addreses will be lost whenever you edit options.If you want to fix the problem – just edit the plugin file: blue-captcha/blueoptions.php
and remove the 2nd parameter, it should look like:
array_unique ($iplist_arr[“ip”]);
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘plugin needs at least PHP 5.2.9 !’ is closed to new replies.