vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.0 Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=33)
-   -   AJAX: check if username exists on registration in realtime (https://vborg.vbsupport.ru/showthread.php?t=81531)

T3MEDIA 05-16-2005 12:51 PM

Quote:

Originally Posted by CompuJonathan
Thanks guys, got it working now. I just deleted the phrase and re added it...didn't try doing the English translation. Great work, love it!

T3MEDIA has a great suggestion, it would be very cool if we could just jack the entire signup process with this, would save the users a lot of time when they make 1 simple error in the referral and ect.

Again, excellent!
- Jonathan

Think they will take me up on it? Its about 3 other fields using the same idea. You should ask for this mod though you may get a better response.

I have a site with 21k on it and it went a bit slow. (slow as in not just poping up instantly). you need to keep in mind the users online that are doing god knows what.... and this site had the arcade going on... resource monster. around 1g online prime time.

CompuJonathan 05-16-2005 11:52 PM

T3,
Yeah, I'm not really sure how much extra work it would take to turn make that work for the password/email/referral field. But I hope it can be done and that they will do it for us! :o

I don't allow ASCII characters and other things on my forum, it would be too cool if it could tell them "No ASCII allowed" if they do use it.

Question: After a tab into a different filed on the sign up, an error comes up saying that 'submit' is null or not an object?

Thanks!
- Jonathan

Oblivion Knight 05-17-2005 05:50 AM

Quote:

Originally Posted by CompuJonathan
Question: After a tab into a different filed on the sign up, an error comes up saying that 'submit' is null or not an object?

This was fixed here:
https://vborg.vbsupport.ru/showpost....7&postcount=23

:)

CompuJonathan 05-17-2005 11:00 PM

This is the way I have mine, but I still get the submit error. :ermm:

HTML Code:

<div style="margin-top:$stylevar[cellpadding]px"><input type="submit" class="button" value="$vbphrase[complete_registration]" accesskey="s" name="submitform" /><input type="reset" class="button" name="Reset" value="$vbphrase[reset_fields]" />

MrNase 05-18-2005 03:49 AM

Can you pm me with the url to your forums please? :)

MrNase 05-18-2005 08:55 AM

I checked your code three times and couldn't point out where the error was so here's another solution to this. I hope this one solves it.

open ajax_checkusername.js and replace:

Code:

submit    = document.register.submitform;
with
Code:

submit    = document.getElementById('submitform');
and change (in the template 'register') this:

Code:

<div style="margin-top:$stylevar[cellpadding]px"><input type="submit" class="button" value="$vbphrase[complete_registration]" accesskey="s" name="submitform" /><input type="reset" class="button" name="Reset" value="$vbphrase[reset_fields]" />
to this:
Code:

<div style="margin-top:$stylevar[cellpadding]px"><input type="submit" class="button" value="$vbphrase[complete_registration]" accesskey="s" id="submitform" /><input type="reset" class="button" name="Reset" value="$vbphrase[reset_fields]" />

Please try that and tell me if it's working :)

__________________________________________________ ___

Here's another solution that came up after some google searches.
Open ajax_checkusername.js and replace:
Code:

function checkName(input, response)
{
  if (response != ''){
    // Response mode
    message  = document.getElementById('nameCheckFailed');
    submit    = document.register.submitform;
   
    if (response == 1){
      message.className = 'registererror';
      submit.disabled = true;
    }else{
      message.className = 'registererrorhidden';
      submit.disabled = false;
    }
  }else{
    // Input mode
    url  = 'register.php?do=checkusername&username=' + input;
    loadXMLDoc(url);
  }

}

with:
Code:

function checkName(input, response)
{
  if (response != ''){
    // Response mode
  var message  = document.getElementById('nameCheckFailed');
  var submit    = document.register.submitform;
   
    if (response == 1){
      message.className = 'registererror';
      submit.disabled = true;
    }else{
      message.className = 'registererrorhidden';
      submit.disabled = false;
    }
  }else{
    // Input mode
    url  = 'register.php?do=checkusername&username=' + input;
    loadXMLDoc(url);
  }

}


This error seems pretty strange to me since the same code is working fine for me :)

Zero Tolerance 05-18-2005 09:32 AM

MrNase - I'm assuming the 'register' in the JS is the name of the form? I would advise using:
Code:

document.forms['register']
To call the object, it seems more browser compliant. :)

- Zero Tolerance

CompuJonathan 05-18-2005 09:27 PM

MrNase,
Brilliant! The first fix fixed it! :)

Great job! :banana:

MrNase 05-19-2005 11:35 AM

Just like Zero Tolerance said: Somehow he didn't select the submit button.. And this was necessary to disable it :)

Iam glad it's working. What browser are you using btw. ?

CompuJonathan 05-19-2005 11:51 PM

Internet Explorer 6.0

Thanks again!
- Jonathan


All times are GMT. The time now is 12:32 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01098 seconds
  • Memory Usage 1,751KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (7)bbcode_code_printable
  • (1)bbcode_html_printable
  • (2)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete