View Full Version : Miscellaneous Hacks - ajaxReg - Ajax Registration, with instant field checking
jalmz
12-11-2007, 03:41 AM
does it works in 3.6.8?
alexsinev
12-11-2007, 03:42 AM
Coders Shack...
Just leave it alone man...it's working fine on 3.6.8 PL2...
I really don't want to change it, if I don't have to.
This is a great hack, man...don't ruin it for everyone...
Saviour, I agree with you absolutely.
Coders Shack, why didn't you answer my question (https://vborg.vbsupport.ru/showpost.php?p=1398950&postcount=494)?
TheMilkCarton
12-11-2007, 03:46 AM
does it works in 3.6.8?
Did you even go to his site? He's clearly using 3.6.8
youradhere4222
12-11-2007, 03:55 AM
Hi, Coders Shack
I have a few suggesions.
No "Check" buttons.
Don't display an error until a person has paused on an incorrect entry for a certain ammount of time.
This is an excellent hack. Hopefully you'll implement it with 3.7. :)
Coders Shack
12-11-2007, 03:57 AM
The solution for the version 3.1.1 is here (https://vborg.vbsupport.ru/showthread.php?p=1311622#post1311622). Just read the thread attentively.
But I have a question to Coders Shack. Have you included such a solution into your new version? This was a great problem for the languages other than English.
then don't install the new version... the older one is still available... as for the language issue you can test it on my demo site, it seems that its fixed.
Coders Shack
12-11-2007, 04:00 AM
Hi, Coders Shack
I have a few suggesions.
No "Check" buttons.
Don't display an error until a person has paused on an incorrect entry for a certain ammount of time.
This is an excellent hack. Hopefully you'll implement it with 3.7. :)
I'll look into the timeout, that would be better. Thanks for the suggestions they are appreciated.
AWJunkies
12-11-2007, 04:07 AM
LOL never mind it seems to work again it just doesn't support auto fill features from Fx or IE etc. IS there a way to allow this?
Just need the CHECK button to recognize them. When you do autofill and press check it doesn't work.
TheMilkCarton
12-11-2007, 04:13 AM
I've already brought up that he needs to disable autocomplete.. He must not have felt like responding to me, though. :( lol.
alexsinev
12-11-2007, 04:20 AM
as for the language issue you can test it on my demo site, it seems that its fixed.
It seems that it works. Thanks! I'll try to test it on my own site later.
Coders Shack
12-11-2007, 04:24 AM
LOL never mind it seems to work again it just doesn't support auto fill features from Fx or IE etc. IS there a way to allow this?
Just need the CHECK button to recognize them. When you do autofill and press check it doesn't work.
thats because the check button is a dummy :P, its a pointless button but it gives the user something to click.
as for autocomplete, i will be disabling it, thanks for the info abt that TheMilkCarton :D
Saviour
12-11-2007, 04:25 AM
Saviour, I agree with you absolutely.
Coders Shack, why didn't you answer my question (https://vborg.vbsupport.ru/showpost.php?p=1398950&postcount=494)?
Thanks...
I'm leaving the hack as is...not bothering with his latest version. Works fine on all browsers I've used...IE7, Opera, Firefox, Avant. No complaints from anyone...yet.
Gotta love the attitude, though. Complimented him on his efforts...what do I get? Not even a "thank you" or "How's your mother?" or nothing...know what I mean?
I applaud his efforts, but if he can't take constructive criticism...
TheMilkCarton
12-11-2007, 04:26 AM
Just need the CHECK button to recognize them. When you do autofill and press check it doesn't work.
Right, but you shouldn't have autocomplete on the 2nd field, the one that confirms the correct email. That sort of defeats the purpose of having two fields, if they both autocomplete. :)
TheMilkCarton
12-11-2007, 04:29 AM
how do i disable autocomplete
Well, autocomplete="off" for Firefox, but that doesn't validate. You could use JS to give the fields that value upon initialization. I'm sure there are other methods that work on all browsers that use autocomplete. Not really sure exactly how it's done though.
Coders Shack
12-11-2007, 04:31 AM
Well, autocomplete="off" for Firefox, but that doesn't validate. You could use JS to give the fields that value upon initialization. I'm sure there are other methods that work on all browsers that use autocomplete. Not really sure exactly how it's done though.
thanks ill do it via JS :D
Coders Shack
12-11-2007, 04:33 AM
Thanks...
I'm leaving the hack as is...not bothering with his latest version. Works fine on all browsers I've used...IE7, Opera, Firefox, Avant. No complaints from anyone...yet.
Gotta love the attitude, though. Complimented him on his efforts...what do I get? Not even a "thank you" or "How's your mother?" or nothing...know what I mean?
I applaud his efforts, but if he can't take constructive criticism...
your post was selfish... This release was because i needed to code it correctly unlike the past version and also by doing so it fixed many other issues with languages, the language issue has always been around with this mod and i am determined to fix that issue the right way. It may work fine on your board as is but that doesn't mean that it did on others.
TheMilkCarton
12-11-2007, 04:40 AM
thanks ill do it via JS :D
From here (http://chrisholland.blogspot.com/2004/11/banks-protect-privacy-disable.html):
1. to disable autocomplete on one or several text input boxes add the following CSS class attribute value to each one: class="disableAutoComplete" so such input tag might look like: <input type="text" class="disableAutoComplete" name="mySocialSecurityNumber" value="111-11-1111"/>
2. add the following script block at the bottom of your document, say, right before the </body> tag, inline, or in a separate .js file:
<script language="JavaScript" type="text/javascript">
if (document.getElementsByTagName) {
var inputElements = document.getElementsByTagName("input");
for (i=0; inputElements[i]; i++) {
if (inputElements[i].className && (inputElements[i].className.indexOf("disableAutoComplete") != -1)) {
inputElements[i].setAttribute("autocomplete","off");
}//if current input element has the disableAutoComplete class set.
}//loop thru input elements
}//basic DOM-happiness-check
</script>
3. ...
4. let me know if it works ;]
That's a very old post, but I don't see anything wrong with it, off-hand. :) I'm sure there are some easier, more modern ways.
And I stand corrected, autocomplete="off" works for IE too.
Coders Shack
12-11-2007, 04:47 AM
From here (http://chrisholland.blogspot.com/2004/11/banks-protect-privacy-disable.html):
That's a very old post, but I don't see anything wrong with it, off-hand. :) I'm sure there are some easier, more modern ways.
And I stand corrected, autocomplete="off" works for IE too.
4.0.0 was coded using jQuery, it would take 1 line to disable all autcompletes
$("input").attr("autocomplete","off");
also if your into JS i would totally recommend jQuery.
TheMilkCarton
12-11-2007, 05:17 AM
4.0.0 was coded using jQuery, it would take 1 line to disable all autcompletes
$("input").attr("autocomplete","off");
also if your into JS i would totally recommend jQuery.
Oh... nice.
I never checked your source code otherwise I'd never have bothered finding that old article. :) I use jQuery myself, but I tend not to use it with vBulletin because it still somehow causes too many issues, even with noConflict mode set.
I guess jQuery wouldn't harm register.php any, though. :)
(Here's to hoping 3.7 resolves any issues with JS libraries *crosses fingers*)
Coders Shack
12-11-2007, 05:25 AM
Oh... nice.
I never checked your source code otherwise I'd never have bothered finding that old article. :) I use jQuery myself, but I tend not to use it with vBulletin because it still somehow causes too many issues, even with noConflict mode set.
I guess jQuery wouldn't harm register.php any, though. :)
(Here's to hoping 3.7 resolves any issues with JS libraries *crosses fingers*)
lol, if it does i guess ill be using yahoo's API. nothing wrong with learning another popular API
Magnumutz
12-11-2007, 08:34 AM
Dude... it looks like it's not checking the E-mail address on your website.
Triky
12-11-2007, 09:07 AM
Dude... it looks like it's not checking the E-mail address on your website.
Yup, same here.
TheMilkCarton
12-11-2007, 10:22 AM
Dude... it looks like it's not checking the E-mail address on your website.
Yup, same here.
If you guys read, you'd know not to use autocomplete.
Type it out yourselves. I'm guessing he hasn't disabled autocomplete yet.
Edit:
Still works fine for me, but you must type it out.
TheBlackPoet
12-11-2007, 12:10 PM
oh man... it worked sweet last night.. but this morning i saw there was an update., (or was it?).. so i deleted the previous one and reinstalled the product and deleted the clientscript .js and reuploaded it...
now when i go to test it.., everything still works fine, EXCEPT.. the register button is grayed out still it wont let you complete the registration....
hmmm
so i turned it off.. and the registration works fine
Newfarm
12-11-2007, 12:58 PM
Looks like that's happening on the demo forum as well, same with email address being red when no autocomplete has been used. Strange.
Coders Shack
12-11-2007, 02:56 PM
Looks like that's happening on the demo forum as well, same with email address being red when no autocomplete has been used. Strange.
not sure what your talking about
Coders Shack
12-11-2007, 02:57 PM
oh man... it worked sweet last night.. but this morning i saw there was an update., (or was it?).. so i deleted the previous one and reinstalled the product and deleted the clientscript .js and reuploaded it...
now when i go to test it.., everything still works fine, EXCEPT.. the register button is grayed out still it wont let you complete the registration....
hmmm
so i turned it off.. and the registration works fine
it should be the same as mine, http://scriptasy.com/clientscript/register.js
Magnumutz
12-11-2007, 03:12 PM
Yeah... dude, you should disable the auto-complete until the bug is fixed.
TheMilkCarton
12-11-2007, 04:03 PM
Yeah... dude, you should disable the auto-complete until the bug is fixed.
That IS the bug, so how do you propose he disables it without fixing the bug? I doubt there's a very easy way to have the field recognize an autocomplete. (or the JavaScript used on those fields, rather)
itsonlychand
12-11-2007, 04:14 PM
Great :)
Marked as "installed"
Howell
12-11-2007, 04:55 PM
v.4.0.0 installed and running fine on Firefox But image verification doesn't work with IE7
*Disabled*
ogameclub
12-11-2007, 05:49 PM
v.4.0.0
Error Complate registration:
-after image verification error,
-copy/paste e-mail address, or change address.
Red Spider
12-11-2007, 06:40 PM
Can't get v4.0.0 to work at all (IE shows Error on Page) and v3.1.1 shows the following:
Warning: preg_match() [function.preg-match]: Compilation failed: missing ) at offset 1 in /ajax.php(474) : eval()'d code on line 8
Warning: preg_match() [function.preg-match]: Compilation failed: unmatched parentheses at offset 0 in /ajax.php(474) : eval()'d code on line 8
Warning: preg_match() [function.preg-match]: Compilation failed: missing terminating ] for character class at offset 1 in /ajax.php(474) : eval()'d code on line 8
test username Is Available
TheBlackPoet
12-11-2007, 08:17 PM
not sure what your talking about
when you verify the email address it stays red.... instead of turning green... i can live with that... i just loved the way it originally worked.. really sweet..
TheMilkCarton
12-11-2007, 08:35 PM
when you verify the email address it stays red.... instead of turning green... i can live with that... i just loved the way it originally worked.. really sweet..
It turns green for me. Are you sure you didn't "verify" the 2nd one using autocomplete? Not sure if it's been fixed yet (to not use autocomplete)
Coders Shack
12-12-2007, 05:42 AM
ok it would be cool if you guys messed with the demo and told me what you think so far. I changed quite a few things.
TheMilkCarton
12-12-2007, 06:08 AM
Umm... The username check is being a little too thorough..
1) It's actually telling me that it's too short once I type a letter or two, and once it gets to 5 letters, it turns green and keeps me from typing anymore.
Then, once I try to delete it and try again, the input background stays green, but then the X comes up and says that it's too short..
There are more issues now than before, basically. :(
You must must must change the Username Check back to an onBlur event, or whatever you used before.. It's nightmarishly annoying to have it check before you've even finished typing.
2) Once I fill out most of the info, and then decide to go back and change my username, the 1st password input field does not stay green.
3) Email address check also starts checking before you're even done typing.
3a) For instance.... type out "email@yahoo.co.uk", and it changes to the next field after you type out "co"
3b) But it also tells me that I'm entering an invalid email before I ever enter anything. (If I press Shift for example, it immediately says I'm entering an invalid email.)
--------
Have you increased the time it waits in the past few minutes? I don't seem to have a problem anymore... with the name checking. :)
Coders Shack
12-12-2007, 06:11 AM
i could change the time out, made it 3 times longer.
TheMilkCarton
12-12-2007, 06:23 AM
i could change the time out, made it 3 times longer.
I'm still not sure about the current checking method. Alot of people sit at their computer thinking of a name to use.. Sometimes they type out part of it and then let it sit. The biggest problem about this current method, is that I can't seem to click back inside the box. At least initially. It took me about a dozen clicks and entirely too much effort to try and edit my username right after it had checked.
But I think I also see the problem in using an onBlur event.. Since you've greyed out the other fields, there's nothing for a person to "Tab" to.
Newfarm
12-12-2007, 01:46 PM
not sure what your talking about
It doesn't happen at home using FF but at work using ie6.
Seems to me that the new form breaks on certain browsers which is a bit of a problem as far as I'm concerned ;).
The new functionality of having a timeout on the input fields really doesn't work out too well from my point of view. I do like what you're trying to do, but how about it being on a lower timeout but not switching fields and making the "completed" field "done" ?
This way you could type in:
usern -> wait a bit and consider while getting the message that it's free -> complete it to username and get a new update (could possibly store 'usern' as a var and compare it to 'username' and if they're different do a new check and output new result to user).
Basically it needs to update the status either with a button or close to realtime, this artificial delay just feels really weird.
Coders Shack
12-12-2007, 02:36 PM
yea i was expecting it to break, im working off a linux box. When i have time ill actually mess with it more.
mad@Max
12-12-2007, 10:42 PM
When i type the name, then press enter - field fill "Loading..." and freeze, and do nothing! Why?
Great work. The new version is a very nice improvement. :)
TheMilkCarton
12-13-2007, 07:03 PM
In the latest version:
1) Username check field still stays green after you delete username. However, border still turns red and states "needs to be longer" as it should.
2) If you were to click in the CAPTCHA field, even if it's still greyed out, and then click out of it, it still tries to match the CAPTCHA and returns an error. THEN, it is also no longer greyed out. It should probably only attempt to verify upon typing out all 6 letters (It's always 6, correct?)
3) If you were to go back to a previous stage to change something, i.e. a username or password, the first box in the next step "un-greens" itself (the background color), although it still remains "confirmed" and this doesn't effect whether or not the "Complete Registration" button is greyed out. <--- This is mainly only aesthetic, but it could also be confusing to some people why the first password or first email box is no longer green.
A solution to #3 could be as easy as forcing the next input field to reverify itself if you change the input field before it. I'm sure this is possible in jQuery. (you should probably also force it to check and make sure the field already has a value, of course)
diim_nowa
12-13-2007, 08:03 PM
When i type the name, then press enter - field fill "Loading..." and freeze, and do nothing! Why?
I have the same problem either
How to correct ?
DssCrazy
12-13-2007, 09:15 PM
i am having a problem also with this new version when all feild are filled out it will not let you click complete reg! why is this?
Gharibe
12-14-2007, 06:44 AM
Complete Button is still disable after filling the form correctly in 4.0 version
filmcanavari
12-14-2007, 07:54 PM
image verification doesn't work with IE7
TheJordan
12-15-2007, 06:39 AM
Good stuff. Installed.
v4.0.0 isn't working properly for me. The confirm email address field remains red, even though the address is available and correct. :(
Prevents me from completing the registration.
CNY750Rider
12-16-2007, 01:35 PM
v4.0.0 isn't working properly for me. The confirm email address field remains red, even though the address is available and correct. :(
Prevents me from completing the registration.
Same here! Please correct. I tried to tab, enter, etc....email stays red.
Aligator21
12-17-2007, 10:01 AM
Same here! Please correct. I tried to tab, enter, etc....email stays red.
Same and to me this problem.
Martell
12-17-2007, 06:15 PM
When i type the name, then press enter - field fill "Loading..." and freeze, and do nothing! Why?
The same problem... How to correct???
AWJunkies
12-17-2007, 10:56 PM
Getting issues with users with the new one. I am trying to receive info from them on what happened but have to return to old system for now. I have over 500 new members a day and can't have any complications.
BobbyBig
12-18-2007, 12:21 PM
The Username can't handle ÖÄÜ, instead it is showing "?" after it checks the Username
Example: Überweisung
After Loading: ?berweisung
We use UTF-8
Any solution on it ?
Regards
oicyu8chu
12-19-2007, 06:23 PM
I guess we'll have to wait for the next release. :(
Coop1979
12-19-2007, 08:31 PM
Is it possible to integrate NoSpam! into ajaxReg? That's the one missing piece for this hack. Here is the code to integrate it into other hacks:
NoSpam! - INTEGRATION WITH OTHER HACKS
Quick Register (https://vborg.vbsupport.ru/showthread.php?t=114342):
After installing both hacks, go to your plugin manager and find the plugin titled "Generate NoSpam! question" or "Generate and insert NoSpam! question" on the hook global_start. Edit it and FIND the following lines:
----------------
default:
$nospamdo = false;
----------------
REPLACE them with
----------------
default:
if ($vbulletin->options['nospam_use_reg'] AND $vbulletin->options['quickregister_active']) {
$questions = explode("\n", $vbulletin->options['nospam_questions']);
$nospamnumber = array_rand($questions);
$qanda = explode(":",$questions["$nospamnumber"]);
$nospamquestion = $qanda[0];
}
$nospamdo = false;
----------------
Now go to your template manager and edit the quick_register template. FIND this code:
----------------
<input type="submit" class="button" value="$vbphrase[quickregister_submit]" accesskey="s" /><input name="agree" id="cb_rules_agree" value="1" type="checkbox"><strong>$vbphrase[quickregister_agree] <a href="$vboptions[bburl]/register.php?" target="_blank">$vbphrase[quickregister_forumrules]</a></strong>
----------------
ABOVE it, add
----------------
<if condition="$vbulletin->options['nospam_onoff'] AND $vbulletin->options['nospam_use_reg']">
<br />$nospamquestion <input type="text" class="bginput" name="nospam" value="Answer here" onFocus="value=''" size="20" /> <input type="hidden" name="nospamnumber" value="$nospamnumber" />
</if>
----------------
Then save the template. NoSpam! should be fully active with Quick Register now.
Forms Hack (https://vborg.vbsupport.ru/showthread.php?t=126676)
[Only tested on 3.6.4]
After installing both hacks and modifying the form however you like, edit the form template (however many you may have; the default is called simply form). FIND near the bottom:
----------------
<tr>
<td valign="top" colspan="3">
<p align="center">
<input type="submit" value="Submit" name="submit" style="font-family: Verdana; font-size: 10pt" class="button" />
----------------
ABOVE that, add
----------------
<if condition="$vbulletin->options['nospam_onoff']">
<tr>
<td colspan="3" class="alt1">
$nospamfield
</td>
</tr>
</if>
----------------
Now edit the plugin "Generate NoSpam! question" or "Generate and insert NoSpam! question" on the hook global_start. Here, FIND this line:
----------------
case 'newthread':
if ($vbulletin->options['nospam_use_post']) {
----------------
REPLACE that with
----------------
case 'newthread':
if ($_REQUEST['action'] == 'form') {
$nospamdo = true;
}
else if ($_REQUEST['action'] == 'submit') {
$vbulletin->input->clean_array_gpc('p', array(
'nospamnumber' => TYPE_UINT,
'nospam' => TYPE_STR,
));
$nospamnumber = $vbulletin->GPC['nospamnumber'];
$questions = explode("\n", $vbulletin->options['nospam_questions']);
$qanda = explode(":", strtolower($questions["$nospamnumber"]));
unset($qanda[0]);
function trim_array(&$answer)
{
$answer = trim($answer);
}
array_walk($qanda, 'trim_array');
if (!in_array(strtolower(trim($vbulletin->GPC['nospam'])), $qanda))
{
eval(standard_error(fetch_error('nospam_wrong_answ er')));
}
$nospamdo = true;
}
else if ($vbulletin->options['nospam_use_post']) {
----------------
The form should now work with NoSpam!.
CNY750Rider
12-20-2007, 08:13 PM
uninstalled...
yuriy
12-20-2007, 08:17 PM
this is crap.. users had problems registering with this!! the Captcha crap wouldnt verify.. heh
vietdjclub
12-21-2007, 06:14 AM
uninstall. cos got the problem with username character
karel1985
12-27-2007, 11:48 AM
also unistalled, please make an updated version that fixes the bugs
Wayne Luke
12-27-2007, 02:56 PM
I've also had to uninstall 4.0...
Too many problems with field checks not working on different browsers (Firefox and Safari mostly), Captchas failing when the correct value is entered. And more problems. Looks nice but it would be nice if we could show all the fields instead of the hiding them to start with. I think this is causing the majority of the problems. Hopefully this gets updated to the YUI ajax methods in 3.7.0 soon and that solves some of the problems.
I haven't decided whether to install the older version. Probably not though because it is most likely incompatible with 3.7.0 Beta 3.
AWJunkies
12-30-2007, 07:21 AM
I use the normal one until V4 is all bug free. It has a lot at the moment and hope they get fixed soon. Don't get discouraged developer :)
Player-63
12-30-2007, 09:28 AM
Having problems with v4.0 The E-Mail dose not work with .co.uk domains and the captchas will not varify.
vBulletin 3.6.8 (Patch 2)
Ajax Registraion v4.0.0
IE 7
Hope you find time to update this during the holidays :)
Coders Shack
01-01-2008, 03:17 PM
development of this mod for 3.6.X has been haulted. Next version will be using 3.7.x.
Evolution06
01-02-2008, 07:15 PM
WoW I just noticed this was not working correctly.. After seeing someone trying to register and getting a error symbol on who's online I decided to check all fields and the 2nd email input feild was not working.. wonder how many members I lost due to not being able to register. Don't get me wrong this is a awesome mod.. Also I don't plan on updating to 3.7 I have to much work and to many mods into 3.6.8 are you only going to update it for 3.7?
Coders Shack
01-02-2008, 08:01 PM
WoW I just noticed this was not working correctly.. After seeing someone trying to register and getting a error symbol on who's online I decided to check all fields and the 2nd email input feild was not working.. wonder how many members I lost due to not being able to register. Don't get me wrong this is a awesome mod.. Also I don't plan on updating to 3.7 I have to much work and to many mods into 3.6.8 are you only going to update it for 3.7?
if it works in both then it works in both, im just saying that i will be using the YUI and that it will be developed on 3.7
Evolution06
01-02-2008, 08:53 PM
ok ill keep a eye out for it everything worked good except the 2nd input box for the email it stayed red even if the emails were both typed in the same way and my registration template is still default.. I noticed it today when someone was trying to register.. I mean I checked it when I installed it but guess I didn't go all the way through the process. It's a awesome mod I have been using it since you came out with it and the new version was awesome I like were the fields appear when you inputted the info.
Coders Shack
01-02-2008, 09:59 PM
ok ill keep a eye out for it everything worked good except the 2nd input box for the email it stayed red even if the emails were both typed in the same way and my registration template is still default.. I noticed it today when someone was trying to register.. I mean I checked it when I installed it but guess I didn't go all the way through the process. It's a awesome mod I have been using it since you came out with it and the new version was awesome I like were the fields appear when you inputted the info.
unfortunately may people didn't like how the fields appeared. (guess it was too drastic of a change). I would also recommend uninstalling 4.0 because its in beta, and i will be waiting for vbulletin 3.7 RC1 to start anything.
bigcurt
01-03-2008, 03:29 AM
Do I have to do anything special to update? Just overwrite the product?
pedroenf
01-03-2008, 02:18 PM
I also have an issue with this mod 3.1.1, i had to disable the image verification. Even right keeps getting error in verification. Does anyone knows what could be wrong?
Evolution06
01-03-2008, 05:17 PM
unfortunately may people didn't like how the fields appeared. (guess it was too drastic of a change). I would also recommend uninstalling 4.0 because its in beta, and i will be waiting for vbulletin 3.7 RC1 to start anything.
Wow seriously? I love how the fields appeared after you inputted the correct info that is the best part. So when you update it for 3.7 what are the chances it will work for 3.6.8? I remember you saying something about that.
Wayne Luke
01-03-2008, 06:38 PM
Will the 3.7 version take advantage of the new Human Verifcation system? If so, I will revisit this addon. I plan on switching all forums to the Recaptcha method myself.
Greek76
01-07-2008, 01:33 PM
Installed worked great but one problem Im having. I tested it out and the for some strange reason you cant press the register button. Everything is filled out correctly on the registration page. I disabled the mod and the register button works. any ideas?
Coders Shack
01-08-2008, 07:00 AM
Will the 3.7 version take advantage of the new Human Verifcation system? If so, I will revisit this addon. I plan on switching all forums to the Recaptcha method myself.
im not sure how the new Human Verification system works (i feel its a bit too much work for the user anyways...). Hopefully its possible.
pedroenf
01-08-2008, 10:19 AM
I also have an issue with this mod 3.1.1, i had to disable the image verification. Even right keeps getting error in verification. Does anyone knows what could be wrong?
Help here please.
Wayne Luke
01-09-2008, 05:29 PM
im not sure how the new Human Verification system works (i feel its a bit too much work for the user anyways...). Hopefully its possible.
It replaces the old Image Captcha system. Just lets the Admin decide to use Image Captcha, Question based Captcha or Recaptcha. The old system isn't possible anymore as far as I am aware.
jambo_1969
01-14-2008, 10:25 AM
Installed then Uninstalled - not able to complete registration.
v4
TCE Killa
01-14-2008, 10:50 AM
This works great, only thing is, I had to disable the image verification because I tested it out and it didn't show therefor no-one could have completed the registration (the complete registration button didn't work). Now I have disabled the image verification, it works, thanks.
pedroenf
01-14-2008, 01:55 PM
This works great, only thing is, I had to disable the image verification because I tested it out and it didn't show therefor no-one could have completed the registration (the complete registration button didn't work). Now I have disabled the image verification, it works, thanks.
I had to do the same thing.
Coders Shack
01-16-2008, 11:52 PM
pretty lame that vb doesn't use the whole YUI lib... This means that i will have to distribute the additional YUI files... I have been working on this today and might finish tonight. This version will be strictly for vb 3.7.0
CNY750Rider
01-19-2008, 01:10 PM
any chance of fixing it for 3.6.8 first? lol
Amenadiel
01-19-2008, 02:48 PM
for some odd reason, v4 doesn't work for me in VB 3.6.8PL2.
Had to go back to 3.1.1
ragtek
01-19-2008, 10:34 PM
pretty lame that vb doesn't use the whole YUI lib... This means that i will have to distribute the additional YUI files... I have been working on this today and might finish tonight. This version will be strictly for vb 3.7.0
hi
how does it look with the version for 3.7?
and i think its not a big deal to put the needed yui versions into your add-on package;)
Coders Shack
01-20-2008, 02:12 AM
i have the 3.7 version running on this site:
http://www.onlinegamehacker.com/register.php
ferreo
01-21-2008, 02:00 PM
I had to go back and reinstall 3.1.1 after encountering problems with 4.0.0 in vB 3.6.8 PL2. The captcha didn't work.
This works great for me at the moment except for one minor thing (I think I mentioned it a few pages back as well).
I have banned email addresses such as @yahoo.com and @hotmail.com however, when I entered in one of these addresses into the registration form, it says it is available but when you submit the registration, a message appears stating that an administrator has banned the address.
Is it possible to get this fixed?
Thanks! :)
ferreo
01-21-2008, 08:25 PM
This works great for me at the moment except for one minor thing (I think I mentioned it a few pages back as well).
I have banned email addresses such as @yahoo.com and @hotmail.com however, when I entered in one of these addresses into the registration form, it says it is available but when you submit the registration, a message appears stating that an administrator has banned the address.
Is it possible to get this fixed?
Thanks! :)
That is a very good point, I would love this to be implemented as well.
rainyleaves
01-26-2008, 11:20 AM
i have the 3.7 version running on this site:
http://www.onlinegamehacker.com/register.php
I think, something different onlinegamehacker.com version with uploaded file.
Could you upload onlinegamehacker.com's version?
I think, Onlinegamehacker.com's version is really perfect.
Please....
Thanks.
ARB4HOSTING.COM
01-26-2008, 11:34 AM
Thanks
Helmut71
01-27-2008, 02:57 PM
is there a version for 3.7?
whats ne in ajaxReg 4.0.0
blankoboy
02-03-2008, 09:39 PM
I see the demo page (http://scriptasy.com/register.php) doesn't have it running anymore. Is there a problem with the mod? :confused:
Evolution06
02-04-2008, 07:29 PM
I just installed it again on a new site works perfect I was able to register just fine and I know a couple other sites I have registered on that use it also.
GuaRRand
02-05-2008, 11:10 AM
Is there a 3.5.x version also?
Shazz
02-06-2008, 01:43 AM
Is there a 3.5.x version also?
Nope :(
symptome
02-06-2008, 07:54 AM
Somebody asked a question about PCRE which can't be activated.
Any answer for that?
Very nice mod.
Some Questions before I Install it to make sure that everything will be ok.:
1. If I install it Will it work with no problems in Vbulletin 3.6.8 PL2?
2. I have a portal (vbadvanced 3.00) installed to. Will I have any problems with that if I install the mod?
3. I saw in your Demo Forum a feature you have about letting users choose what forums they will see. Can you give me information about that kind of implementation? (I am searching to do the same in my forums (v.3.6.8). What should I do to do that too? :-)
I would be glad if you could help me. :-)
Thank you a priori for your answer. :-)
skrazydogz
02-07-2008, 12:23 PM
Is the Version 4.0 now Beta ???
stwilson
02-16-2008, 05:47 PM
It appears to work for me on 3.7B5.
blankoboy
02-18-2008, 01:05 PM
If you want to see this feature show up in a future release of vBulletin (natively, not a mod), hopefully 3.7 final, then cast your vote this poll (http://www.vbulletin.com/forum/showthread.php?t=259676) over at vbulletin.com. ;)
Kind of a strange thing going on with captcha
If you input the string then refresh the captcha image you get an image that says vBulletin. And you can't get any further.
Is anyone else getting captcha problems?
vB 3.6.8 pl2
Bloom21
02-20-2008, 04:46 PM
Awesome work!
Any chance to integrate with reCAPTCHA?
https://vborg.vbsupport.ru/showthread.php?t=151824
ferreo
02-21-2008, 02:14 PM
This works great for me at the moment except for one minor thing (I think I mentioned it a few pages back as well).
I have banned email addresses such as @yahoo.com and @hotmail.com however, when I entered in one of these addresses into the registration form, it says it is available but when you submit the registration, a message appears stating that an administrator has banned the address.
Is it possible to get this fixed?
Thanks! :)
Indeed, a check against the banned email addresses would be superb!
mariocaz
02-21-2008, 10:01 PM
ferreo, did you install this mod in your VB 3.6.8 and is working fine ??
Because I want to install it and I have a 3.6.8
Thank you.
mariocaz
02-23-2008, 04:20 AM
Anybody ??
dazed12
02-26-2008, 01:39 AM
thanks, great mod, using vb 3.7.0
mariocaz
03-05-2008, 05:39 PM
no news ?
No new version ?? and why did you uninstall it from your forum ?
jalmz
03-06-2008, 12:28 AM
Uninstalled.
The following error occurred when attempting to evaluate this template:
Parse error: parse error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in /forum/includes/adminfunctions_template.php(3596) : eval()'d code on line 11
This is likely caused by a malformed conditional statement. It is highly recommended that you fix this error before continuing, but you may continue as-is if you wish.
Shazz
03-06-2008, 02:13 AM
Uninstalled.
The following error occurred when attempting to evaluate this template:
Parse error: parse error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in /forum/includes/adminfunctions_template.php(3596) : eval()'d code on line 11
This is likely caused by a malformed conditional statement. It is highly recommended that you fix this error before continuing, but you may continue as-is if you wish.
What version are you using?
dancue
03-09-2008, 04:16 AM
Can someone tell me what this code does?
.inputgood {
width: 211px;
border: 1px solid Green;
}
.inputbad {
width: 211px;
border: 1px solid Red;
}
I've installed the mod, however I don't know why I would need this? what does it add?
Shazz
03-09-2008, 04:21 AM
Can someone tell me what this code does?
I've installed the mod, however I don't know why I would need this? what does it add?
Its the red and green colors of the boxes
dancue
03-09-2008, 04:32 AM
It was doing it without that.
Are you sure?
Also, I'm not getting the strength meter thingie... What do I have to do?
dancue
03-09-2008, 01:33 PM
Can anyone help me with the strength meter? There weren't any images to upload for it.
Lynne
03-09-2008, 03:52 PM
Did you follow all the steps including adding the additional css to your style?
Shazz
03-09-2008, 03:55 PM
It was doing it without that.
Are you sure?
Did you try out all the boxes.
dancue
03-09-2008, 04:17 PM
yeah. They all outlined the boxes either green or red without me inputing the css.
what I don't have is the strength meter. the css doesn't help that. Aren't we supposed to upload an image for that? I only had the check mark and X-mark in the images folder.
Lynne
03-09-2008, 05:09 PM
yeah. They all outlined the boxes either green or red without me inputing the css.
what I don't have is the strength meter. the css doesn't help that. Aren't we supposed to upload an image for that? I only had the check mark and X-mark in the images folder.
Well it does say this in the installation instructions:
2) Upload the images and javascript
In the forum folder is the images folder and within that is the misc folder which has the images. Follow the same path to install them.
dancue
03-09-2008, 05:37 PM
I said I did upload the images, but there were only 2 images included. Both of those images are working fine.
The meter is what is not working. Is the meter image supposed to be included?
Lynne
03-09-2008, 07:04 PM
I see three images in the misc folder to upload, so if you only uploaded two, then you have not uploaded all the images.
The password meter? If you look at the source code, you will see it is a bunch of div code with inline css. It uses "background-image: url('./images/misc/pwStrengthBar.gif')"
dancue
03-09-2008, 07:25 PM
ok...the image "pwStrengthBar.gif" is included with ajaxReg.zip but not with ajaxReg v4.0.0.zip.
Thanks for your help Lynne.
what was confusing me was the screenshot. I see that v4.0 no longer uses the password meter, correct?
Lynne
03-09-2008, 08:21 PM
I don't know, I'm not running version 4 and the author didn't add any version change notes regarding that version.
FleaBag
03-10-2008, 05:51 PM
I just finally got around to installing this again, version 4 is very nice!
I noticed the meter missing also; I guess we'll find out if this is intentional in time!
Thanks again. :)
GameWizard
03-11-2008, 04:40 AM
Found a bug, Vbulletin 3.7 Beta 6.
Filled out all the forms, and then when i mistyped the Captcha it refreshed with the dialog on the top stating I mistyped it. Problem is that it would not allow me to go further, the username check ceased to function... pressing "check" would do nothing. And the rest of the fields (Password / Email) remained hidden).
Edit: Found another bug, in my Admincp, I had "Require Unique Email Addresses" set to NO. While attempting to use an already used email, it said I could not use it again, even though when I disabled your hack, it would allow me to register no problem with an already assigned email.
mariocaz
03-13-2008, 07:03 PM
Installed, wonderful mod.
symptome
03-16-2008, 09:39 PM
Is it a bug too that ajax reg doesn't check PCRE?
mariocaz
03-17-2008, 05:37 PM
Hi I have a big problem.
I am using the v4.0.0 of this mod in my 3.6.8. pl2 but isn't working properly for me. The confirm email address field remains red, even though the address is available and correct.
This happen in IE, please can you help me to fix this problem ??
Thank you in Advance!
Mario
codershark
03-17-2008, 05:45 PM
@mario: I have the same problem (at firefox too) so i erase the hack und install version 3.11 because version 4.0 has beta status since a lot of weeks and nothing happens...
mariocaz
03-17-2008, 05:52 PM
Mmmmm ok very bad news.
The strange thing is in this bouard have the same version of the hack and is working really great:
http://www.ciber-digital.net/register.php
Also for me in Firefox really works, but with IE I have that problem.
Did you try to find a solution of this ?
mariocaz
03-17-2008, 06:23 PM
Codershark,
and with the other version you don´t have now any problems ??
also the captcha is working well ??
thank you a lot!
codershark
03-17-2008, 07:17 PM
yes with the old version is all correct and all works fine.
mariocaz
03-17-2008, 07:21 PM
Ok I will talk with my friend the owner of rhte forum that I put the link in my last posts and see if he did something to fix that problem, becasue also he is using v.4.00
If not I will uninstall it and install the old version of the mod.
glennybee
03-19-2008, 05:17 PM
Thanks for this mod, just what I was looking for.
Although I have a problem with Internet Explorer 6.
The 'confirm email address' box doesn't go green when the email addresses match, it stays at red and the 'COMPLETE REGISTRATION' button at the bottom is gray'd out so I can't click it.
Check on Firefox and it works perfect. I will check with IE7 tonight and post back.
Anyone else got this problem with IE6?
Thanks. :)
mariocaz
03-19-2008, 05:23 PM
Also the problem is with IE7 and we don´t have any support to fix this.
I recommend you that install the older version that is stable, this one is beta (4.00)
glennybee
03-20-2008, 09:09 AM
Thank you for the reply mariocaz, I will try that :)
mariocaz
03-20-2008, 09:12 PM
You´re welcome glennybee
Evolution06
03-27-2008, 05:17 PM
awww to bad the beta one is awesome looking but I added the old one for now.
alexsinev
03-30-2008, 03:07 PM
ajaxReg 3.1.1 and vBulletin 3.7.0 RC1
Everything works fine except image verification text. On 3.6.8 it works. Is there any solution for 3.7.0?
masterross
04-05-2008, 09:53 AM
Live Demo: ajaxReg 4.0.0 (http://scriptasy.com/register.php)
doesnt work for me
Adem GEN?
04-10-2008, 10:26 AM
Hi,
Allowed for usernama
Character Turkish: ?? ğĞ İı şŞ ??
and max 10 character
and
No allowed "www." for email username
www.username.@domain.com (http://www.username.@domain.com)
I's how make
(version: 3.1.1)
Thanks
DssCrazy
04-10-2008, 06:47 PM
Ok this is the best mod ever!!! BUT it don't work for me lol. Here is what happends. with the first version members can reg only if thay are logged in. if you sign out you will get a message.
with the 4.0.0 once everything is filled out the reg button is still disabled.
PLEASE FIX i will pay for a fix
Arbit3r
04-15-2008, 04:42 PM
FANTASTIC! I just updated from 3.1 and i was shocked. Keep up the good work.
Arbit3r
04-16-2008, 01:38 PM
Looks like it is buggy on IE. Email field stays red!
GekkoPixie
04-26-2008, 07:38 PM
For me the image captcha letters cannot ever match what is typed - it always says there's an error.
The following errors occurred during your registration:
* The string you entered for the image verification did not match what was displayed.
Legende
05-05-2008, 05:59 PM
I always get the error: username contains a banned phrase? the rest works with no problem.. any solution for this? i'm using the 3.1.1 version + vbulletin 3.7.0
alqloob alsahya
05-11-2008, 05:15 PM
thank"s good jop nice:D
se_p800
05-13-2008, 01:45 PM
This mod is great but unfortunatly I cant use it on my forum as it won't allow .co.uk email addresses so people will be unable to register. Any chance of fixing this?
Arbit3r
05-14-2008, 08:15 PM
This mod realy needs some support from the writer, it has potential but it looks like its been abandoned...
alexsinev
05-15-2008, 02:23 AM
This mod realy needs some support from the writer, it has potential but it looks like its been abandoned...
Definitely! I still use the previous version modified by myself to fix some bugs and support cyrillic. I wrote about it in this thread previously.
Arbit3r
05-16-2008, 11:49 AM
Yeah i am too, i honestly would pay for this mod if it was fixed. It seems that their website is dead too, the support is non existant and there are rarly posts made. I think since there not getting any traffic to their site from creating mods they are giving up trying.
Are there any coders out there that would know how to fix 4.0 on vb 3.7? If so i and im sure others would help out with some donations.
Hornstar
05-18-2008, 01:53 AM
Yeah I was just looking for this, what a shame its not working 100% on 3.7 :/
tafreeh
05-19-2008, 02:57 AM
is it ok with vb3.7 ?????????
I've sent you a PM, hope you can replay to me soon.
aceofspades
05-20-2008, 02:57 PM
Is the author still around ?
Lilyandy
05-21-2008, 06:20 AM
Will it be amended to open in the state of "Username Regular Expression",
"^[a-z0-9]+$" and numerical circumstances,
can also be enabled ajaxReg 4.0.0 » The forum is because of my English version,
wants to ban members in Chinese or two yuan more than the string group registration.
Thanks! ^ ^
dfc005
05-22-2008, 01:54 AM
Dammit, just found this and it looks to be exactly what I want but apparently doesn't work with vB 3.7.0
Arbit3r
05-22-2008, 07:15 PM
Still no support or updates.
*clicks uninstall*
deLi_kurT
05-24-2008, 11:33 AM
Thanks
crkgb
05-24-2008, 01:03 PM
Was a very promising mod.
vBulletin® v3.8.12 by vBS, Copyright ©2000-2024, vBulletin Solutions Inc.