NEW: Anti Robot Registration Validation
#821
Posted 13 March 2011 - 04:02 AM
Maggie
#822
Posted 27 July 2011 - 07:41 PM
Thanks
#823
Posted 28 July 2011 - 03:55 PM
olproducts, on 27 July 2011 - 07:41 PM, said:
Thanks
Nevermind, found the answer HERE. Must have missed it the 1st, 2nd and 3rd time through, lol.
Thanks to all who contributed and never gave up on supporting this add on.
Dan
Edited by olproducts, 28 July 2011 - 03:56 PM.
#824
Posted 23 August 2011 - 02:17 PM
I cannot import 3.1 sql, but I successfuly import 2.8
I can only use validation_png_2.5.php
The problem is sometimes the charecters appear abnormal
[img]http://www.shzjt.com/helpme.png[/img]
I tried many settings in configuration but does not work
Please kindly help me
Edited by ebuymonster, 23 August 2011 - 02:18 PM.
#825
Posted 08 October 2011 - 06:51 AM
I'm trying to install this mod on OscMax 2.0.15
After everything's done, I just get blank pages instead of actual content.
Any idea ?
Thx,
Mythos
#826
Posted 02 June 2012 - 01:32 PM
and install this add on,
the SQL file 3.1 doesn't work, got error message,
import 3.0 but still need to mannually modify that file
I finally make it works
but I just wonder, when client forgot password, and the validation code show up,
there is a button there, said "Re-arrange Code",
it doesn't seems renew, when you click on it, it just re-arrange the character position, so is this button fuction necessary?
Can I have "renew" button instead but how can I modify code? I am newbie so have no idea about coding at all.
(something like hotmail got refresh | renew the image)
Can someone please help?
#827
Posted 21 July 2012 - 02:09 AM
#828
Posted 21 July 2012 - 07:10 AM
arasouli91, on 21 July 2012 - 02:09 AM, said:
Have a look here for an alternative method http://forums.oscommerce.com/topic/318221-osc-recaptcha/page__view__findpost__p__1643730
I am not a coder, so dont bother sending PMs asking for help as you wont get any.
OSC has a steep learning curve, but in general the program does work. If it doesnt work, the chances are it is something you have done.
#829
Posted 21 August 2012 - 05:20 AM
Could anyone help with fix error in account_validation.php (many errors in log)
Quote
PHP Notice: Undefined offset: 36 in /***/includes/functions/account_validation.php on line 49, referer: http://***/contact_us.php
PHP Notice: Undefined variable: rangeList in /***/includes/functions/account_validation.php on line 47, referer: http://***/contact_us.php
PHP Notice: Undefined offset: 57 in /***/includes/functions/account_validation.php on line 49, referer: http://***/contact_us.php
Edited by kgtu5, 21 August 2012 - 05:21 AM.
#830
Posted 03 December 2012 - 07:53 AM
kgtu5, on 21 August 2012 - 05:20 AM, said:
Could anyone help with fix error in account_validation.php (many errors in log)
???
Yes, you will need to replace the urand function in /includes/functions/account_validation.php (the entire function) with the following code:
function urand($min = NULL, $max = NULL){
static $alreadyGenerated = array();
$rangeList = array();
$full = $max + abs($min);
$range = ($min || $max) ? ($max - $min) + 1 : NULL;
do{
$randValue = ($range) ? rand($min, $max) : rand();
$key = $randValue + $full;
if(count($rangeList) == $range) unset($alreadyGenerated);
if($range) $rangeList[$key] = $randValue;
}while(isset($alreadyGenerated[$key]) && $alreadyGenerated[$key] == $randValue + $full);
unset($rangeList);
$alreadyGenerated[$key] = $randValue + $full;
return $randValue;
}









