View Full Version : Miscellaneous Hacks - AJAX / Cool Registration
Mr Chad
03-15-2007, 10:00 PM
Removed.
Mr Chad
03-16-2007, 03:05 AM
The End
Shazz
03-16-2007, 03:12 AM
Will test on test site now :)
Kirk Y
03-16-2007, 03:17 AM
Well, I followed all the directions -- and changed the filepath to the register.js file; you've got it pointing to your site's JS file in the Install directions -- but, I just get Javascript errors. :(
form.username has no properties
http://forum.socomcity.net/clientscript/register.js
Line 99
PhoneiX
03-16-2007, 03:25 AM
Nice hack
*installed*
aveon
03-16-2007, 03:26 AM
thanx for this woks great
ZomgStuff
03-16-2007, 03:35 AM
Very nice, thanks!
HMBeaty
03-16-2007, 03:37 AM
Might have to use this. Depending on the feedback.
Shazz
03-16-2007, 03:44 AM
Well, I followed all the directions -- and changed the filepath to the register.js file; you've got it pointing to your site's JS file in the Install directions -- but, I just get Javascript errors. :(
Are you doing this on 3.5?
Mr Chad
03-16-2007, 04:03 AM
i did this in 3.6.3
also updated to fix errors.
(first step changed, and the filepath for the JS is now in the clientscript dir)
Shazz
03-16-2007, 04:05 AM
i did this in 3.6.3
also updated to fix errors.
(first step changed, and the filepath for the JS is now in the clientscript dir)
Yea, wasen't referring to you though, Since the mod of this thread did say 3.6.5
But acidburn could have been working on a 3.5 :|
Mr Chad
03-16-2007, 04:07 AM
well it could work on 3.5
Kirk Y
03-16-2007, 04:08 AM
No, I'm using 3.6.5.
Mr Chad
03-16-2007, 04:15 AM
well first Follow the first step again.
and move the JS to the clientscript folder.
Kirk Y
03-16-2007, 04:17 AM
I moved it there originally. Perhaps I missed a template edit... I'll go back and check.
Mr Chad
03-16-2007, 04:25 AM
I'm looking at your page and u still need to make the 1st edit.
Mr Chad
03-16-2007, 04:31 AM
3.6.3 Registration Template With edits:
<script type="text/javascript" src="./clientscript/register.js"></script>
$stylevar[htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
$headinclude
<title>$vboptions[bbtitle] - <if condition="$show['coppa']">$vbphrase[coppa] </if>$vbphrase[registration]</title>
</head>
<body>
$header
<br />
<table cellpadding="2" cellspacing="0" border="0" width="100%" align="center">
<tr>
<td>
<if condition="$show['coppa']">
$vbphrase[until_receive_signed_form]
</if>
</td>
</tr>
<if condition="$show['errors']">
<tr>
<td><strong>$vbphrase[errors_occurred_during_registration]:</strong>
<ul>
$errorlist
</ul>
</td>
</tr>
</if>
</table>
<br />
<script type="text/javascript" src="clientscript/vbulletin_md5.js?v=$vboptions[simpleversion]"></script>
<script type="text/javascript">
function verify_passwords(password1, password2)
{
// do various checks, this will save people noticing mistakes on next page
if (password1.value == '' || password2.value == '')
{
alert('$vbphrase[fill_out_both_password_fields]');
return false;
}
else if (password1.value != password2.value)
{
alert('$vbphrase[entered_passwords_do_not_match]');
return false;
}
else
{
<if condition="$show['coppa']">
pass_copy = password1.value;
passconfirm_copy = password2.value;
</if>
var junk_output;
md5hash(password1, document.forms.register.password_md5, junk_output, $show[nopasswordempty]);
md5hash(password2, document.forms.register.passwordconfirm_md5, junk_output, $show[nopasswordempty]);
<if condition="$show['coppa']">
document.forms.register.password.value = pass_copy;
document.forms.register.passwordconfirm.value = passconfirm_copy;
</if>
return true;
}
return false;
}
</script>
<form action="register.php?do=addmember" name="register" method="post" onsubmit="return verify_passwords(password, passwordconfirm);">
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="do" value="addmember" />
<input type="hidden" name="url" value="$url" />
<input type="hidden" name="agree" value="$agree" />
<input type="hidden" name="password_md5" />
<input type="hidden" name="passwordconfirm_md5" />
<if condition="!$show['birthday']">
<input type="hidden" name="day" value="$day" />
<input type="hidden" name="month" value="$month" />
<input type="hidden" name="year" value="$year" />
</if>
<if condition="$show['coppa']">
<input type="hidden" name="coppauser" value="1" />
</if>
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="tcat"><phrase 1="$vboptions[bbtitle]">$vbphrase[register_at_x]</phrase></td>
</tr>
<tr>
<td class="panelsurround" align="center">
<div class="panel">
<div style="width:$stylevar[formwidth]" align="$stylevar[left]">
<div class="smallfont" style="margin-bottom:$stylevar[formspacer]px">
<phrase 1="$vboptions[bbtitle]">$vbphrase[to_post_must_first_register]</phrase>
</div>
<div class="smallfont" style="margin-bottom:$stylevar[formspacer]px">
<strong>$vbphrase[username]</strong>:<br />
<input type="text" class="bginput" name="username" size="25" maxlength="$vboptions[maxuserlength]" value="$username" id="username" style="width: 212px" onblur="CheckUserName();"/><span id="username_status"></span>
</div>
<fieldset class="fieldset">
<legend>$vbphrase[password]</legend>
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0" width="400">
<tr>
<td colspan="2">$vbphrase[enter_password_for_account]</td>
</tr>
<tr>
<td>
$vbphrase[password]:<br />
<input type="password" class="bginput" name="password" size="25" maxlength="50" value="$password" onblur="varfield(1);" id="password_1"/>
</td>
<td>
$vbphrase[confirm_password]:<br />
<input type="password" class="bginput" name="passwordconfirm" size="25" maxlength="50" value="$passwordconfirm" onblur="varfield(2);" id="password_2"/>
</td>
</tr>
<tr>
<td colspan="2">
<span id="password_1_status"></span>
</td>
</tr>
<tr>
<td colspan="2">
<span id="password_2_status"></span>
</td>
</tr>
</table>
</fieldset>
<fieldset class="fieldset">
<legend>$vbphrase[email_address]</legend>
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0" width="400">
<tr>
<td colspan="2">$vbphrase[enter_valid_email_address]</td>
</tr>
<tr>
<td>
$vbphrase[email_address]:<br />
<input type="text" class="bginput" name="email" size="25" maxlength="50" value="$email" dir="ltr" onblur="varfield(3);" id="email_1"/>
</td>
<td>
$vbphrase[confirm_email_address]:<br />
<input type="text" class="bginput" name="emailconfirm" size="25" maxlength="50" value="$emailconfirm" dir="ltr" onblur="varfield(4);" id="email_2"/>
</td>
</tr>
<tr>
<td colspan="2">
<span id="email_1_status"></span>
</td>
</tr>
<tr>
<td colspan="2">
<span id="email_2_status"></span>
</td>
</tr>
<if condition="$show['coppa']">
<tr>
<td>$vbphrase[if_under_13_provide_parent]</td>
</tr>
<tr>
<td>
$vbphrase[parent_guardian_email]:<br />
<input type="text" class="bginput" name="parentemail" size="25" maxlength="50" value="$parentemail" dir="ltr" />
</td>
</tr>
</if>
</table>
</fieldset>
$imagereg
</div>
</div>
</td>
</tr>
</table>
<br />
<if condition="$show['customfields_profile']">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="thead">$vbphrase[additional_required_information_profile]</td>
</tr>
<tr>
<td class="panelsurround" align="center">
<div class="panel">
<div style="width:$stylevar[formwidth]" align="$stylevar[left]">
$customfields_profile
<if condition="$show['birthday']">$birthdayfields</if>
</div>
</div>
</td>
</tr>
</table>
<br />
</if>
<if condition="$show['customfields_option']">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="thead">$vbphrase[additional_required_information_option]</td>
</tr>
<tr>
<td class="panelsurround" align="center" style="height: 23px">
<div class="panel">
<div style="width:$stylevar[formwidth]" align="$stylevar[left]">
$customfields_option
</div>
</div>
</td>
</tr>
</table>
<br />
</if>
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="thead">$vbphrase[additional_information]</td>
</tr>
<tr>
<td class="panelsurround" align="center">
<div class="panel">
<div style="width:$stylevar[formwidth]" align="$stylevar[left]">
<if condition="$show['referrer']">
<fieldset class="fieldset">
<legend>$vbphrase[referrer]</legend>
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0" width="100%">
<tr>
<td><phrase 1="$vboptions[bbtitle]">$vbphrase[if_referred_enter_name]</phrase></td>
</tr>
<tr>
<td>
$vbphrase[referrer]:<br />
<div id="referrerfield"><input id="referrerfield_txt" type="text" class="bginput" name="referrername" value="$referrername" size="50" maxlength="$vboptions[maxuserlength]" /></div>
<if condition="$show['popups']">
<div id="referrerfield_menu" class="vbmenu_popup" style="display:none; z-index:50"></div>
<script type="text/javascript" src="clientscript/vbulletin_ajax_namesugg.js?v=$vboptions[simpleversion]"></script>
<script type="text/javascript">
<!--
vbmenu_register('referrerfield', true);
rnc = new vB_AJAX_NameSuggest('rnc', 'referrerfield_txt', 'referrerfield');
rnc.allow_multiple = false;
//-->
</script>
</if>
</td>
</tr>
</table>
</fieldset>
</if>
$timezoneoptions
<fieldset class="fieldset">
<legend>$vbphrase[receive_email]</legend>
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0" width="100%">
<tr>
<td>
$vbphrase[administrators_may_send_email]
</td>
</tr>
<tr>
<td><label for="cb_adminemail"><input type="checkbox" name="options[adminemail]" value="1" id="cb_adminemail" $checkedoff[adminemail] />$vbphrase[receive_email_from_bulletin_board_staff]</label></td>
</tr>
<if condition="$show['email']">
<tr>
<td>$vbphrase[allow_members_send_you_email]</td>
</tr>
<tr>
<td><label for="cb_showemail"><input type="checkbox" name="options[showemail]" value="1" id="cb_showemail" $checkedoff[showemail] />$vbphrase[receive_email_from_other_members]</label></td>
</tr>
</if>
</table>
</fieldset>
$customfields_other
</div>
</div>
<div style="margin-top:$stylevar[cellpadding]px">
<input type="submit" class="button" value="$vbphrase[complete_registration]" accesskey="s" />
<input type="reset" class="button" name="Reset" value="$vbphrase[reset_fields]" />
</div>
</td>
</tr>
</table>
</form>
$footer
</body>
</html>
3.6.3 Registration Template With-OUT edits:
$stylevar[htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
$headinclude
<title>$vboptions[bbtitle] - <if condition="$show['coppa']">$vbphrase[coppa] </if>$vbphrase[registration]</title>
</head>
<body>
$header
<br />
<table cellpadding="2" cellspacing="0" border="0" width="100%" align="center">
<tr>
<td>
<if condition="$show['coppa']">
$vbphrase[until_receive_signed_form]
</if>
</td>
</tr>
<if condition="$show['errors']">
<tr>
<td><strong>$vbphrase[errors_occurred_during_registration]:</strong>
<ul>
$errorlist
</ul>
</td>
</tr>
</if>
</table>
<br />
<script type="text/javascript" src="clientscript/vbulletin_md5.js?v=$vboptions[simpleversion]"></script>
<script type="text/javascript">
function verify_passwords(password1, password2)
{
// do various checks, this will save people noticing mistakes on next page
if (password1.value == '' || password2.value == '')
{
alert('$vbphrase[fill_out_both_password_fields]');
return false;
}
else if (password1.value != password2.value)
{
alert('$vbphrase[entered_passwords_do_not_match]');
return false;
}
else
{
<if condition="$show['coppa']">
pass_copy = password1.value;
passconfirm_copy = password2.value;
</if>
var junk_output;
md5hash(password1, document.forms.register.password_md5, junk_output, $show[nopasswordempty]);
md5hash(password2, document.forms.register.passwordconfirm_md5, junk_output, $show[nopasswordempty]);
<if condition="$show['coppa']">
document.forms.register.password.value = pass_copy;
document.forms.register.passwordconfirm.value = passconfirm_copy;
</if>
return true;
}
return false;
}
</script>
<form action="register.php?do=addmember" name="register" method="post" onsubmit="return verify_passwords(password, passwordconfirm);">
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="do" value="addmember" />
<input type="hidden" name="url" value="$url" />
<input type="hidden" name="agree" value="$agree" />
<input type="hidden" name="password_md5" />
<input type="hidden" name="passwordconfirm_md5" />
<if condition="!$show['birthday']">
<input type="hidden" name="day" value="$day" />
<input type="hidden" name="month" value="$month" />
<input type="hidden" name="year" value="$year" />
</if>
<if condition="$show['coppa']">
<input type="hidden" name="coppauser" value="1" />
</if>
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="tcat"><phrase 1="$vboptions[bbtitle]">$vbphrase[register_at_x]</phrase></td>
</tr>
<tr>
<td class="panelsurround" align="center">
<div class="panel">
<div style="width:$stylevar[formwidth]" align="$stylevar[left]">
<div class="smallfont" style="margin-bottom:$stylevar[formspacer]px">
<phrase 1="$vboptions[bbtitle]">$vbphrase[to_post_must_first_register]</phrase>
</div>
<div class="smallfont" style="margin-bottom:$stylevar[formspacer]px">
<strong>$vbphrase[username]</strong>:<br />
<input type="text" class="bginput" name="username" size="50" maxlength="$vboptions[maxuserlength]" value="$username" />
</div>
<fieldset class="fieldset">
<legend>$vbphrase[password]</legend>
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0" width="400">
<tr>
<td colspan="2">$vbphrase[enter_password_for_account]</td>
</tr>
<tr>
<td>
$vbphrase[password]:<br />
<input type="password" class="bginput" name="password" size="25" maxlength="50" value="$password" />
</td>
<td>
$vbphrase[confirm_password]:<br />
<input type="password" class="bginput" name="passwordconfirm" size="25" maxlength="50" value="$passwordconfirm" />
</td>
</tr>
</table>
</fieldset>
<fieldset class="fieldset">
<legend>$vbphrase[email_address]</legend>
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0" width="400">
<tr>
<td colspan="2">$vbphrase[enter_valid_email_address]</td>
</tr>
<tr>
<td>
$vbphrase[email_address]:<br />
<input type="text" class="bginput" name="email" size="25" maxlength="50" value="$email" dir="ltr" />
</td>
<td>
$vbphrase[confirm_email_address]:<br />
<input type="text" class="bginput" name="emailconfirm" size="25" maxlength="50" value="$emailconfirm" dir="ltr" />
</td>
</tr>
<if condition="$show['coppa']">
<tr>
<td>$vbphrase[if_under_13_provide_parent]</td>
</tr>
<tr>
<td>
$vbphrase[parent_guardian_email]:<br />
<input type="text" class="bginput" name="parentemail" size="25" maxlength="50" value="$parentemail" dir="ltr" />
</td>
</tr>
</if>
</table>
</fieldset>
$imagereg
</div>
</div>
</td>
</tr>
</table>
<br />
<if condition="$show['customfields_profile']">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="thead">$vbphrase[additional_required_information_profile]</td>
</tr>
<tr>
<td class="panelsurround" align="center">
<div class="panel">
<div style="width:$stylevar[formwidth]" align="$stylevar[left]">
$customfields_profile
<if condition="$show['birthday']">$birthdayfields</if>
</div>
</div>
</td>
</tr>
</table>
<br />
</if>
<if condition="$show['customfields_option']">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="thead">$vbphrase[additional_required_information_option]</td>
</tr>
<tr>
<td class="panelsurround" align="center">
<div class="panel">
<div style="width:$stylevar[formwidth]" align="$stylevar[left]">
$customfields_option
</div>
</div>
</td>
</tr>
</table>
<br />
</if>
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="thead">$vbphrase[additional_information]</td>
</tr>
<tr>
<td class="panelsurround" align="center">
<div class="panel">
<div style="width:$stylevar[formwidth]" align="$stylevar[left]">
<if condition="$show['referrer']">
<fieldset class="fieldset">
<legend>$vbphrase[referrer]</legend>
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0" width="100%">
<tr>
<td><phrase 1="$vboptions[bbtitle]">$vbphrase[if_referred_enter_name]</phrase></td>
</tr>
<tr>
<td>
$vbphrase[referrer]:<br />
<div id="referrerfield"><input id="referrerfield_txt" type="text" class="bginput" name="referrername" value="$referrername" size="50" maxlength="$vboptions[maxuserlength]" /></div>
<if condition="$show['popups']">
<div id="referrerfield_menu" class="vbmenu_popup" style="display:none; z-index:50"></div>
<script type="text/javascript" src="clientscript/vbulletin_ajax_namesugg.js?v=$vboptions[simpleversion]"></script>
<script type="text/javascript">
<!--
vbmenu_register('referrerfield', true);
rnc = new vB_AJAX_NameSuggest('rnc', 'referrerfield_txt', 'referrerfield');
rnc.allow_multiple = false;
//-->
</script>
</if>
</td>
</tr>
</table>
</fieldset>
</if>
$timezoneoptions
<fieldset class="fieldset">
<legend>$vbphrase[receive_email]</legend>
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0" width="100%">
<tr>
<td>
$vbphrase[administrators_may_send_email]
</td>
</tr>
<tr>
<td><label for="cb_adminemail"><input type="checkbox" name="options[adminemail]" value="1" id="cb_adminemail" $checkedoff[adminemail] />$vbphrase[receive_email_from_bulletin_board_staff]</label></td>
</tr>
<if condition="$show['email']">
<tr>
<td>$vbphrase[allow_members_send_you_email]</td>
</tr>
<tr>
<td><label for="cb_showemail"><input type="checkbox" name="options[showemail]" value="1" id="cb_showemail" $checkedoff[showemail] />$vbphrase[receive_email_from_other_members]</label></td>
</tr>
</if>
</table>
</fieldset>
$customfields_other
</div>
</div>
<div style="margin-top:$stylevar[cellpadding]px">
<input type="submit" class="button" value="$vbphrase[complete_registration]" accesskey="s" />
<input type="reset" class="button" name="Reset" value="$vbphrase[reset_fields]" />
</div>
</td>
</tr>
</table>
</form>
$footer
</body>
</html>
bollie
03-16-2007, 04:32 AM
https://vborg.vbsupport.ru/external/2007/03/4.png
Mr Chad
03-16-2007, 04:34 AM
i have created a pre-edited template please try that first :D
bollie
03-16-2007, 04:47 AM
thx nice ;)
Mr Chad
03-16-2007, 04:49 AM
tell me if it works.
TheBlackPoet
03-16-2007, 05:01 AM
nothing for me... im using 3.65.... hmmmm... oh well
Mr Chad
03-16-2007, 05:07 AM
nothing for me... im using 3.65.... hmmmm... oh well
hmm, did you try it with the pre-edited template?
Kirk Y
03-16-2007, 05:11 AM
I'm looking at your page and u still need to make the 1st edit.
That's because after I had no luck getting it to work, I removed the edits.
hmm, did you try it with the pre-edited template?
I tried the pre-edited template as well, still no luck - same 'ol JS errors. Strange.
Mr Chad
03-16-2007, 05:15 AM
hmm i installed it on my other forum with the pre-edited template with no errors.
Kirk Y
03-16-2007, 05:23 AM
Yeah, for something seemingly so simple, this is being quite difficult.
Mr Chad
03-16-2007, 05:24 AM
Yeah, for something seemingly so simple, this is being quite difficult.
well apply my template and ill have a look.
Kirk Y
03-16-2007, 05:25 AM
<a href="http://soljasrevenge.com/sctest/forum/register.php" target="_blank">http://soljasrevenge.com/sctest/forum/register.php</a>
.htaccess.. user: admin pw: admin
bollie
03-16-2007, 05:26 AM
help
https://vborg.vbsupport.ru/external/2007/03/3.png
<script type="text/javascript" src="./clientscript/register.js"></script>
$stylevar[htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
$headinclude
<title>$vboptions[bbtitle] - <if condition="$show['coppa']">$vbphrase[coppa] </if>$vbphrase[registration]</title>
</head>
<body>
$header
<br />
<table cellpadding="2" cellspacing="0" border="0" width="100%" align="center">
<tr>
<td>
<if condition="$show['coppa']">
$vbphrase[until_receive_signed_form]
</if>
</td>
</tr>
<if condition="$show['errors']">
<tr>
<td><strong>$vbphrase[errors_occurred_during_registration]:</strong>
<ul>
$errorlist
</ul>
</td>
</tr>
</if>
</table>
<br />
<script type="text/javascript" src="clientscript/vbulletin_md5.js?v=$vboptions[simpleversion]"></script>
<script type="text/javascript">
function verify_passwords(password1, password2)
{
// do various checks, this will save people noticing mistakes on next page
if (password1.value == '' || password2.value == '')
{
alert('$vbphrase[fill_out_both_password_fields]');
return false;
}
else if (password1.value != password2.value)
{
alert('$vbphrase[entered_passwords_do_not_match]');
return false;
}
else
{
<if condition="$show['coppa']">
pass_copy = password1.value;
passconfirm_copy = password2.value;
</if>
var junk_output;
md5hash(password1, document.forms.register.password_md5, junk_output, $show[nopasswordempty]);
md5hash(password2, document.forms.register.passwordconfirm_md5, junk_output, $show[nopasswordempty]);
<if condition="$show['coppa']">
document.forms.register.password.value = pass_copy;
document.forms.register.passwordconfirm.value = passconfirm_copy;
</if>
return true;
}
return false;
}
</script>
<form action="register.php?do=addmember" name="register" method="post" onsubmit="return verify_passwords(password, passwordconfirm);">
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="do" value="addmember" />
<input type="hidden" name="url" value="$url" />
<input type="hidden" name="agree" value="$agree" />
<input type="hidden" name="password_md5" />
<input type="hidden" name="passwordconfirm_md5" />
<if condition="!$show['birthday']">
<input type="hidden" name="day" value="$day" />
<input type="hidden" name="month" value="$month" />
<input type="hidden" name="year" value="$year" />
</if>
<if condition="$show['coppa']">
<input type="hidden" name="coppauser" value="1" />
</if>
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="tcat"><phrase 1="$vboptions[bbtitle]">$vbphrase[register_at_x]</phrase></td>
</tr>
<tr>
<td class="panelsurround" align="center">
<div class="panel">
<div style="width:$stylevar[formwidth]" align="$stylevar[left]">
<div class="smallfont" style="margin-bottom:$stylevar[formspacer]px">
<phrase 1="$vboptions[bbtitle]">$vbphrase[to_post_must_first_register]</phrase>
</div>
<div class="smallfont" style="margin-bottom:$stylevar[formspacer]px">
<strong>$vbphrase[username]</strong>:<br />
<input type="text" class="bginput" name="username" size="25" maxlength="$vboptions[maxuserlength]" value="$username" id="username" style="width: 212px" onblur="CheckUserName();"/><span id="username_status"></span>
</div>
<fieldset class="fieldset">
<legend>$vbphrase[password]</legend>
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0" width="400">
<tr>
<td colspan="2">$vbphrase[enter_password_for_account]</td>
</tr>
<tr>
<td>
$vbphrase[password]:<br />
<input type="password" class="bginput" name="password" size="25" maxlength="50" value="$password" onblur="varfield(1);" id="password_1"/>
</td>
<td>
$vbphrase[confirm_password]:<br />
<input type="password" class="bginput" name="passwordconfirm" size="25" maxlength="50" value="$passwordconfirm" onblur="varfield(2);" id="password_2"/>
</td>
</tr>
<tr>
<td colspan="2">
<span id="password_1_status"></span>
</td>
</tr>
<tr>
<td colspan="2">
<span id="password_2_status"></span>
</td>
</tr>
</fieldset>
<fieldset class="fieldset">
<legend>$vbphrase[email_address]</legend>
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0" width="400">
<tr>
<td colspan="2">$vbphrase[enter_valid_email_address]</td>
</tr>
<tr>
<td>
$vbphrase[email_address]:<br />
<input type="text" class="bginput" name="email" size="25" maxlength="50" value="$email" dir="ltr" onblur="varfield(3);" id="email_1"/>
</td>
<td>
$vbphrase[confirm_email_address]:<br />
<input type="text" class="bginput" name="emailconfirm" size="25" maxlength="50" value="$emailconfirm" dir="ltr" onblur="varfield(4);" id="email_2"/>
</td>
</tr>
<tr>
<td colspan="2">
<span id="email_1_status"></span>
</td>
</tr>
<tr>
<td colspan="2">
<span id="email_2_status"></span>
</td>
</tr>
<if condition="$show['coppa']">
<tr>
<td>$vbphrase[if_under_13_provide_parent]</td>
</tr>
<tr>
<td>
$vbphrase[parent_guardian_email]:<br />
<input type="text" class="bginput" name="parentemail" size="25" maxlength="50" value="$parentemail" dir="ltr" />
</td>
</tr>
</if>
</table>
</fieldset>
$imagereg
</div>
</div>
</td>
</tr>
</table>
<br />
<if condition="$show['customfields_profile']">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="thead">$vbphrase[additional_required_information_profile]</td>
</tr>
<tr>
<td class="panelsurround" align="center">
<div class="panel">
<div style="width:$stylevar[formwidth]" align="$stylevar[left]">
$customfields_profile
<if condition="$show['birthday']">$birthdayfields</if>
</div>
</div>
</td>
</tr>
</table>
<br />
</if>
<if condition="$show['customfields_option']">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="thead">$vbphrase[additional_required_information_option]</td>
</tr>
<tr>
<td class="panelsurround" align="center">
<div class="panel">
<div style="width:$stylevar[formwidth]" align="$stylevar[left]">
$customfields_option
</div>
</div>
</td>
</tr>
</table>
<br />
</if>
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="thead">$vbphrase[additional_information]</td>
</tr>
<tr>
<td class="panelsurround" align="center">
<div class="panel">
<div style="width:$stylevar[formwidth]" align="$stylevar[left]">
<if condition="$show['referrer']">
<fieldset class="fieldset">
<legend>$vbphrase[referrer]</legend>
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0" width="100%">
<tr>
<td><phrase 1="$vboptions[bbtitle]">$vbphrase[if_referred_enter_name]</phrase></td>
</tr>
<tr>
<td>
$vbphrase[referrer]:<br />
<div id="referrerfield"><input id="referrerfield_txt" type="text" class="bginput" name="referrername" value="$referrername" size="50" maxlength="$vboptions[maxuserlength]" /></div>
<if condition="$show['popups']">
<div id="referrerfield_menu" class="vbmenu_popup" style="display:none; z-index:50"></div>
<script type="text/javascript" src="clientscript/vbulletin_ajax_namesugg.js?v=$vboptions[simpleversion]"></script>
<script type="text/javascript">
<!--
vbmenu_register('referrerfield', true);
rnc = new vB_AJAX_NameSuggest('rnc', 'referrerfield_txt', 'referrerfield');
rnc.allow_multiple = false;
//-->
</script>
</if>
</td>
</tr>
</table>
</fieldset>
</if>
$timezoneoptions
<fieldset class="fieldset">
<legend>$vbphrase[receive_email]</legend>
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0" width="100%">
<tr>
<td>
$vbphrase[administrators_may_send_email]
</td>
</tr>
<tr>
<td><label for="cb_adminemail"><input type="checkbox" name="options[adminemail]" value="1" id="cb_adminemail" $checkedoff[adminemail] />$vbphrase[receive_email_from_bulletin_board_staff]</label></td>
</tr>
<if condition="$show['email']">
<tr>
<td>$vbphrase[allow_members_send_you_email]</td>
</tr>
<tr>
<td><label for="cb_showemail"><input type="checkbox" name="options[showemail]" value="1" id="cb_showemail" $checkedoff[showemail] />$vbphrase[receive_email_from_other_members]</label></td>
</tr>
</if>
</table>
</fieldset>
$customfields_other
</div>
</div>
<div style="margin-top:$stylevar[cellpadding]px">
<input type="submit" class="button" value="$vbphrase[complete_registration]" accesskey="s" />
<input type="reset" class="button" name="Reset" value="$vbphrase[reset_fields]" />
</div>
</td>
</tr>
</table>
</form>
$footer
</body>
</html>
Kirk Y
03-16-2007, 05:30 AM
If it's any consolation, I got it working on the default template... but for some reason, the skin I'm using doesn't like the modified register template.
Mr Chad
03-16-2007, 05:34 AM
ill look further into this later, but what i would try doing is changing the form var name to like reg_form and replace all instances of it. (might be causing a problem)
Mr Chad
03-16-2007, 05:37 AM
If it's any consolation, I got it working on the default template... but for some reason, the skin I'm using doesn't like the modified register template.
hmm, well im pretty sure this is your issue:
<td align="left" valign="top">
<a href="register.php" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('register','','reever/images/misc/register_on.gif',1)"><img src="reever/images/misc/register_off.gif" name="register" border="0" alt="" /></a>
</td>
it has the same name as the form which is causing problems.
sensimilla
03-16-2007, 07:06 AM
great hack i was looking for it , thanks
projectego
03-16-2007, 07:45 AM
Cool hack! Thanks alot, Mr Chad! :)
Distance
03-16-2007, 07:55 AM
Great!!
I will wait for the bugs to be fixed then install this :)
TheMilkCarton
03-16-2007, 08:47 AM
This is very minor, but can you take the thumbs.db out of the folders in the ZIP? :)
I'm installing now.. I'll give an update on how it works.
Edit:
1. Problem with the E-mail fieldset. Hovers above the Password fieldset.
2. None of the Ajax text shows up in IE7. Works in Firefox though.
Mr Chad.. In Edit #4, you either need to take the "</table>" OUT of the Find: step or put it at the end of the Replace: step.
I still haven't figured out the reason that text isn't showing up in IE7 though.
Hornstar
03-16-2007, 10:35 AM
awesome, thanks.
danward
03-16-2007, 11:49 AM
Will install this when it becomes more stable! :)
snono
03-16-2007, 12:33 PM
thank you
i will try it,
Mr Chad
03-16-2007, 01:38 PM
This is very minor, but can you take the thumbs.db out of the folders in the ZIP? :)
I'm installing now.. I'll give an update on how it works.
Edit:
1. Problem with the E-mail fieldset. Hovers above the Password fieldset.
2. None of the Ajax text shows up in IE7. Works in Firefox though.
Mr Chad.. In Edit #4, you either need to take the "</table>" OUT of the Find: step or put it at the end of the Replace: step.
I still haven't figured out the reason that text isn't showing up in IE7 though.
ok well i fixed the instructions, also i fixed the JS so it works with IE now.
TheMilkCarton
03-16-2007, 01:51 PM
Hmm.. I uploaded the new JS and there's still no text... I cleared my cache too in case.
Did you change any of the instructions other than the missing </table>?
mcyates
03-16-2007, 01:52 PM
the only thing that doesn't work is the text, saying the username is taken.
Mr Chad
03-16-2007, 01:54 PM
the only thing that doesn't work is the text, saying the username is taken.
works fine i tested your site..
TheMilkCarton
03-16-2007, 01:56 PM
It works fine for me now, too. Is it buggy, maybe?
I'll try a few more times, randomly, to see if it works.
Mr Chad
03-16-2007, 01:58 PM
It works fine for me now, too. Is it buggy, maybe?
I'll try a few more times, randomly, to see if it works.
k, get back to me with results.
RedGTiVR6
03-16-2007, 02:15 PM
I've just installed this mod and I've tried testing it:
Since my user name on the forum is "RedGTiVR6" I just tried to register with that user name. The box turns green and there's a check mark by it now telling me it's ok to use that name. Once I tab off of the box it fills the box with:
<br /><b>Parse error</b>: syntax error
This shouldn't work like this. It's telling me that the user name that I just entered is ok and not used, when I'm the one registered with that user name.
Any ideas?
Mr Chad
03-16-2007, 02:22 PM
does it have the quotes in the username?
RedGTiVR6
03-16-2007, 02:23 PM
The user name is just RedGTiVR6. No quotes. Sorry for the confusion.
Mr Chad
03-16-2007, 02:24 PM
whats your forum link?
RedGTiVR6
03-16-2007, 02:31 PM
<a href="http://www.mp3car.com/vbulletin" target="_blank">http://www.mp3car.com/vbulletin</a>
Let me go back and revert back to the modified template and activate the product again. I can't leave it not working for long.
EDIT:
Ok - it's back to this mod now.
RedTyger
03-16-2007, 03:12 PM
Oooh, just like IPB! Thanks, might make use of this.
RedGTiVR6
03-16-2007, 03:31 PM
If I don't get an update on this I'm going to have to remove the mod again until I know someone is going to be looking at it rather quickly. Not to sound demanding....but I can't leave this up on our forum if it's not working. Especially on something as critical as new user registrations.
Kirk Y
03-16-2007, 03:45 PM
hmm, well im pretty sure this is your issue:
<td align="left" valign="top">
<a href="register.php" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('register','','reever/images/misc/register_on.gif',1)"><img src="reever/images/misc/register_off.gif" name="register" border="0" alt="" /></a>
</td>it has the same name as the form which is causing problems.
That did it - I changed the var. name for the mouseover JS and everything is working fine now. I just need to fix the CSS, because my input fields are custom and when you click out of them, they turn big and ugly white.
If I don't get an update on this I'm going to have to remove the mod again until I know someone is going to be looking at it rather quickly. Not to sound demanding....but I can't leave this up on our forum if it's not working. Especially on something as critical as new user registrations.
You shouldn't install it on a live board... the mod is in Beta Stages (See top). All testing should be done on a test board beforehand.
Great mod Chad, really awesome. I yet had installed it succesfully (and i had translated the register.js to spanish, if you want it PM me).
Its possible to do it works with the NoSpam! (https://vborg.vbsupport.ru/showthread.php?t=124828) add-on?
Kirk Y
03-16-2007, 04:05 PM
I just noticed Chad, the text that shows in your screenshot "Username taken", etc - isn't showing. I only see the images.
Edit: The text shows in Firefox, but not IE - I'm using IE7.
bashy
03-16-2007, 04:08 PM
This is not working for me at present...
I have installed the plugin
I have copied your modified template
I have uploaded the files
I have added the additional css
Nothing shows, no images , no place holders (in case images in wrong folder)
no inclination that its even there at all....
I assume it dont need turning on anywhere?
anywares
03-16-2007, 04:11 PM
Another great release by Mr Chad
*Clicks install
Kirk Y
03-16-2007, 04:11 PM
Do you get any Javascript errors returned when you move from input cell to input cell? No, there's nothing to turn on.
One note for anyone having problems with their templates being messed up after the edits -- be careful that what you searched for in the template is what you get, as I noticed some of Chad's "Search for" fields, when searched for, would leave out the </td></tr>.
Mr Chad
03-16-2007, 06:02 PM
This is not working for me at present...
I have installed the plugin
I have copied your modified template
I have uploaded the files
I have added the additional css
Nothing shows, no images , no place holders (in case images in wrong folder)
no inclination that its even there at all....
I assume it dont need turning on anywhere?
that means theres a JS error, make sure that there is only 1 name="register" in your html (that was a previous problem for someone)
also acidburn0520 i can't reproduce the IE error. (remember to re-upload the JS file i updated)
thincom2000
03-16-2007, 06:07 PM
Could this be done for the CAPTCHA images also? That way if a user mistypes it (which they may with spammers forcing us to activate all CAPTCHA options), they don't have to retype their password and try to figure out a new CAPTCHA image. Maybe this could be optional if you think it would risk slightly more spam?
Kirk Y
03-16-2007, 06:12 PM
that means theres a JS error, make sure that there is only 1 name="register" in your html (that was a previous problem for someone)
also acidburn0520 i can't reproduce the IE error. (remember to re-upload the JS file i updated)
Everything is up to date. It's the same board, so same JS file -- nevertheless in Firefox 2.0.0.2 I can see the text, however in IE 7.0.6000.16386 there's only an image.
MoMan
03-16-2007, 06:28 PM
Great hack! Worked flawlessly the first time around. Thanks!
There are a few typos in the JS phrases that need fixing, though.
M-Tuning
03-16-2007, 06:32 PM
Nice, works perfect on 3.6.5
COBRAws
03-16-2007, 07:05 PM
Spanish Translation for archive register.js
Allan
03-16-2007, 07:46 PM
Hahh, finally !!!!
vBulletin powaaa, invision byby :p
Great hack ;)
Mr Chad
03-16-2007, 07:58 PM
Everything is up to date. It's the same board, so same JS file -- nevertheless in Firefox 2.0.0.2 I can see the text, however in IE 7.0.6000.16386 there's only an image.
you havent updated the JS though.
look in the register.js and replace line 159 with this line:
else if (document.all) document.all[ID2].innerHTML = sText + reason
Mr Chad
03-16-2007, 08:01 PM
Great hack! Worked flawlessly the first time around. Thanks!
There are a few typos in the JS phrases that need fixing, though.
do you mind posting a revised version?
Kirk Y
03-16-2007, 08:31 PM
you havent updated the JS though.
look in the register.js and replace line 159 with this line:
else if (document.all) document.all[ID2].innerHTML = sText + reason
Ah, I could've sworn that I had the most recent version... oh well, all working now. I still can't figure out how to fix my input cells losing their styling when you move from them.
Mr Chad
03-16-2007, 08:34 PM
well you need to look at your input CSS and tamper with the inputgood and inputbad CSS.
have fun :D
RedGTiVR6
03-16-2007, 08:42 PM
welp, I guess I'll be completely uninstalling this mod then.
Would have been nice to get it working.
Mr Chad
03-16-2007, 08:43 PM
welp, I guess I'll be completely uninstalling this mod then.
Would have been nice to get it working.
did you try it on the standard style?
if it works there then the error is in your header or footer and its interfering with the register.js
RedGTiVR6
03-16-2007, 08:45 PM
I applied it to our main style...besides that, I was waiting to hear from you since you asked for the web page...I reverted back to the mod and expressed the importance that I couldn't leave it up up if it's not working.
I left it up for a few hours like that, which means that quite a few people who registered got to see it.
Lizard King
03-16-2007, 08:49 PM
Did anyone checked if this is working with non-english characters ?
Kirk Y
03-16-2007, 08:51 PM
well you need to look at your input CSS and tamper with the inputgood and inputbad CSS.
have fun :D
It happens even when the inputgood/inputbad CSS is removed from the Additional Definitions.
Mr Chad
03-16-2007, 08:51 PM
I applied it to our main style...besides that, I was waiting to hear from you since you asked for the web page...I reverted back to the mod and expressed the importance that I couldn't leave it up up if it's not working.
I left it up for a few hours like that, which means that quite a few people who registered got to see it.
Well i had to do things... I'm not sitting at my computer waiting for your response...
This is in beta stage so you shouldn't be testing this on a live board in the first place.
and it also my choice to release this, an since I felt like being nice I did.
Mr Chad
03-16-2007, 08:53 PM
It happens even when the inputgood/inputbad CSS is removed from the Additional Definitions.
in FF does the box turn Green when you have the CSS in your Additional Definitions.
If it does then the CSS is working.
Icemanmx
03-16-2007, 08:56 PM
Hello
I just want to know if this hack function 100% now?
Thanks
Is a great hack
Mr Chad
03-16-2007, 08:58 PM
Hello
I just want to know if this hack function 100% now?
Thanks
Is a great hack
do you still see the "Is in Beta Stage" ?
when its 100% functioning that will be removed.
Icemanmx
03-16-2007, 09:06 PM
do you still see the "Is in Beta Stage" ?
when its 100% functioning that will be removed.
yes i see that, but anyway the betas can function 100% even if beta...
So let me ask, do this beta function without any problems??? ;)
thincom2000
03-16-2007, 09:13 PM
I have had no problems.
Kirk Y
03-16-2007, 09:45 PM
Alright, got the CSS fixed - you were right Chad. ;)
Looks good: http://img375.imageshack.us/img375/3795/ssug2.jpg
Now I need to find some new images that aren't pixelated at the edges.
harmor19
03-16-2007, 10:13 PM
Alright, got the CSS fixed - you were right Chad. ;)
Looks good: http://img375.imageshack.us/img375/3795/ssug2.jpg
Now I need to find some new images that aren't pixelated at the edges.
You can just use photoshop to create those images. It has predefined images you can use and check marks and X's are in the list.
harmor19
03-16-2007, 10:21 PM
It works perfectly for me.
Mr Chad
03-16-2007, 10:23 PM
yes i see that, but anyway the betas can function 100% even if beta...
So let me ask, do this beta function without any problems??? ;)
about 80% of the people have it working 100%. But the other 20% is probably because of installation errors or bad JS in their templates.
Alright, got the CSS fixed - you were right Chad. ;)
Looks good: http://img375.imageshack.us/img375/3795/ssug2.jpg
Now I need to find some new images that aren't pixelated at the edges.
Looks good.
harmor19
03-16-2007, 10:27 PM
I think it looks better with this css
.inputgood {
width: 211px;
border: 1px solid Green;
}
.inputbad {
width: 211px;
border: 1px solid Red;
}
Test it out here (http://xenweb.net/forums/register.php?do=register)
harmor19
03-16-2007, 10:46 PM
Can you have it check if the email address is available or not?
Shazz
03-16-2007, 10:52 PM
I think it looks better with this css
.inputgood {
width: 211px;
border: 1px solid Green;
}
.inputbad {
width: 211px;
border: 1px solid Red;
}
Test it out here (http://xenweb.net/forums/register.php?do=register)
I can't tell a difference
Mr Chad
03-16-2007, 10:52 PM
Can you have it check if the email address is available or not?
yes i was thinking abt if i should add that feature.
but then again the user that enters an email address that is already registered is prolly already a member @ the site. So he/she would just make up a new one anyways.
Mr Chad
03-16-2007, 10:55 PM
I can't tell a difference
same lol
redlabour
03-16-2007, 10:55 PM
No Plugin - not phrased - clicked uninstall after Installing.
Mr Chad
03-16-2007, 10:57 PM
No Plugin - not phrased - clicked uninstall after Installing.
there is a plugin and your post is useless... Its posts like this that make me not release all my addons.
also if you opened your eyes you would of see the "Is in Beta stage".
harmor19
03-16-2007, 11:04 PM
I can't tell a difference
I know why. I use firefox as my main browser but I used IE to test out the new register form. You can tell the difference when using IE.
Shazz
03-16-2007, 11:22 PM
I know why. I use firefox as my main browser but I used IE to test out the new register form. You can tell the difference when using IE.
I use IE and I still don't see a difference from the naked eye :confused:
harmor19
03-16-2007, 11:36 PM
The first attachment is with the CSS supplied by My Chad. The second is the one I posted on page 6.
ReQueM
03-16-2007, 11:39 PM
hmm very nice
thank you
*installed*
Shazz
03-16-2007, 11:43 PM
The first attachment is with the CSS supplied by My Chad. The second is the one I posted on page 6.
Ohh I see now :)
Mr Chad
03-16-2007, 11:59 PM
lol fine (i was unable to produce that result but i changed it in the instructions.)
Shazz
03-17-2007, 12:01 AM
lol fine (i was unable to produce that result but i changed it in the instructions.)
Should have both :)
Mr Chad
03-17-2007, 12:03 AM
well he is saying that it produces diff results. Has anyone tested his CSS?
Kirk Y
03-17-2007, 12:04 AM
I can tell the difference in Firefox -- but I haven't tested it.
Chad do you think it's possible to check if the e-mail address is actually a valid e-mail -- like not a fake: abcd@blue.com. I remember seeing something that did this before, but I believe it was a paid script...
subzero06
03-17-2007, 12:25 AM
I can tell the difference in Firefox -- but I haven't tested it.
Chad do you think it's possible to check if the e-mail address is actually a valid e-mail -- like not a fake: abcd@blue.com. I remember seeing something that did this before, but I believe it was a paid script...
Are you Kirk from socomscene.net?
**sorry for getting off topic.**
Kirk Y
03-17-2007, 12:38 AM
No, my s/n on socomscene is the same as it is here.
Shazz
03-17-2007, 12:41 AM
Are you Kirk from socomscene.net?
**sorry for getting off topic.**
PM :mad:
Sofia
03-17-2007, 01:02 AM
Thanks for this hack, Mr Chad :) I click Installed ;)
da420
03-17-2007, 01:03 AM
there is a plugin and your post is useless... Its posts like this that make me not release all my addons.
also if you opened your eyes you would of see the "Is in Beta stage".
Yeah, I suggest you ignore him. I've seen him post that way in every single modification thread that I have seen him post in. It's never very constructive and always complaining. Quite annoying actually, but meh, can't please everyone....
Anyways, very nice, thank you, clicks install.
Shazz
03-17-2007, 01:04 AM
Installs: 79 and like 1600+ page views when released yesterday really cool :)
AMG021
03-17-2007, 01:05 AM
I can tell the difference in Firefox -- but I haven't tested it.
Chad do you think it's possible to check if the e-mail address is actually a valid e-mail -- like not a fake: abcd@blue.com. I remember seeing something that did this before, but I believe it was a paid script...
Man that would be great dude! Please if its possible ! Really appreciated.
harmor19
03-17-2007, 01:17 AM
Thanks for this hack, Mr Chad :) I click Installed ;)
Don't lie. We can see if you clicked "Install" or not.
Mr Chad
03-17-2007, 01:20 AM
I can tell the difference in Firefox -- but I haven't tested it.
Chad do you think it's possible to check if the e-mail address is actually a valid e-mail -- like not a fake: abcd@blue.com. I remember seeing something that did this before, but I believe it was a paid script...
Ok well im not sure if you can check if its a real email address but i could make it PING the (email domain) and see if it gets a ping back. But the domain could be down so you might lose members. Also vbulletin has a built in Verify Users Email.
Mr Chad
03-17-2007, 01:24 AM
Installs: 79 and like 1600+ page views when released yesterday really cool :)
lol, yea I knew everyone would like it. (in the past there was a mod released like this one but it was not nearly as cool as this one, also i didn't have the AJAX feature too. It did change field color i think.)
But i coded this mod for a Joomla site but then decided to make it for vBulletin too.
any mod with AJAX in it gets alot of attention. :P
Shazz
03-17-2007, 01:24 AM
Don't lie. We can see if you clicked "Install" or not.
You can when you didn't make the thread?
Please tell
Kirk Y
03-17-2007, 01:40 AM
Ok well im not sure if you can check if its a real email address but i could make it PING the (email domain) and see if it gets a ping back. But the domain could be down so you might lose members. Also vbulletin has a built in Verify Users Email.
That would be fine as well. I'm just trying to consider alternatives to verifying e-mail addresses - as I personally hate them, so don't use them on my board.
You can when you didn't make the thread?
Please tell
No, only mod authors can see who has clicked install.
harmor19
03-17-2007, 02:28 AM
No, only mod authors can see who has clicked install.
I should've noticed that.
Sorry Sofia.
Lizard King
03-17-2007, 02:48 AM
I still didn't get a reply , does this mod have any problems with non english character in usernames ?
Shazz
03-17-2007, 02:51 AM
I still didn't get a reply , does this mod have any problems with non english character in usernames ?
Seems like it :|
Kirk Y
03-17-2007, 03:15 AM
I still didn't get a reply , does this mod have any problems with non english character in usernames ?
None that I can tell of; I just test registered a user by this name: ??fr?y - with no problems.
Shazz
03-17-2007, 03:34 AM
None that I can tell of; I just test registered a user by this name: ??fr?y - with no problems.
Ummm.. ?
Kirk Y
03-17-2007, 03:42 AM
Yeah, that has got a problem -- lol.
Shazz
03-17-2007, 03:44 AM
Yeah, that has got a problem -- lol.
but for a free mod.
Still props+ to Mr Chad
Won't be using this mod since I have my own though ;)
Dream
03-17-2007, 04:23 AM
You got yourself in vBulletin Suggestions & Feedback
http://www.vbulletin.com/forum/showthread.php?t=223697
momo2
03-17-2007, 08:45 AM
i tried it it seems one of the last code was not in my register code
<input type="text" class="bginput" name="emailconfirm" size="25" maxlength="50" value="$emailconfirm" dir="ltr" />
</td>
</tr>
harmor19
03-17-2007, 08:46 AM
What is your site?
Great idea. Members often mispell their emails.
Will this work on an Arabic (right to left) forum?
If so, do I translate through Languages & Phrases?
Thanks
spy90000
03-17-2007, 10:37 AM
I like it , thanks
spy90000
03-17-2007, 10:43 AM
Great idea. Members often mispell their emails.
Will this work on an Arabic (right to left) forum?
If so, do I translate through Languages & Phrases?
Thanks
just translate the Phrases within ( register.js) , and it works LTR .
subzero06
03-17-2007, 12:20 PM
I just FIXED the register.js spanish version
if (sText == 0) {
var sText = " <img src='./images/misc/bad.gif'> ";
inputboxElem.setAttribute("class", "inputbad");
inputboxElem.setAttribute("className", "inputbad");
} else if (sText == 1) {
var sText = " <img src='./images/misc/good.gif'> ";
inputboxElem.setAttribute("class", "inputgood");
inputboxElem.setAttribute("className", "inputgood");
}
Instead of
./mainframe/misc/bad.gif
./mainframe/misc/good.gif
Lizard King
03-17-2007, 03:44 PM
I will install late tonight in order to deeply investigate with non-english characters but i translated it to Turkish.
just translate the Phrases within ( register.js) , and it works LTR .
Thanks.
Is it working ok with Arabic characters in names registered?
IPB Remake, i love it! their registration system rox!
spy90000
03-17-2007, 07:11 PM
Thanks.
Is it working ok with Arabic characters in names registered?
When I saw ur post , I checked with Arabic name
It gave me like this :
%u0645%u0644%u0627%u0643 %u0627%u0644%u0634%u0648%u0642
:confused: :confused:
So, now even the new username cann't do the registration with Arabic anymore !!!! :(
Mr Chad any help for this , coz I have to uninstall the mod to makes the registration with Arabic names working fine again.
Mr Chad
03-17-2007, 07:17 PM
When I saw ur post , I checked with Arabic name
It gave me like this :
%u0645%u0644%u0627%u0643 %u0627%u0644%u0634%u0648%u0642
:confused: :confused:
So, now even the new username cann't do the registration with Arabic anymore !!!! :(
Mr Chad any help for this , coz I have to uninstall the mod to makes the registration with Arabic names working fine again.
i don't know anything about arabic characters :/
spy90000
03-17-2007, 07:27 PM
we mostly used
charset=windows-1256 as primary and UTF-8 in our forums.
or
encoding="ISO-8859-6" in rarely.
Mr Chad
03-17-2007, 07:37 PM
we mostly used
charset=windows-1256 as primary and UTF-8 in our forums.
or
encoding="ISO-8859-6" in rarely.
yea but nothing in the script defines the language.
its just matching and character lengths.
spy90000
03-17-2007, 07:49 PM
you r right in this , but why gave that strange error !!
anyway, am still likes ur mod :) , but am gonna to uninstall it for time been .
I'll try to figure out the reason, the I'll be back for feedback :)
jazde86
03-17-2007, 07:59 PM
Here is the German version.
BUT, please do a product and phrase it! Thanks! :)
In IE7; If you write a nick that is already in use it shows "NICK is Available" put the input field is blanked. When I tested the same thing i FF2 it shows "NICK is in use" and the field is blanked. If you write a nick not in use it works fine.
Lizard King
03-17-2007, 08:28 PM
I also can confirm that this mod doesn't work with non english characters in usernames. Also there are error in template edits. In each template edit you shall leave space before input closing tag. You shall also correct this .
Mr Chad
03-17-2007, 09:02 PM
Here is the German version.
BUT, please do a product and phrase it! Thanks! :)
Thanks for the translation.
also if i phrased it, i would need to include the JS into the template or something.
In IE7; If you write a nick that is already in use it shows "NICK is Available" put the input field is blanked. When I tested the same thing i FF2 it shows "NICK is in use" and the field is blanked. If you write a nick not in use it works fine.
I could not reproduce this error. NICK is Available will leave the text in the input.
I also can confirm that this mod doesn't work with non english characters in usernames. Also there are error in template edits. In each template edit you shall leave space before input closing tag. You shall also correct this .
ok im pretty sure i fixed the error in the template.
I could not reproduce this error. NICK is Available will leave the text in the input.
Yes, but if you select a new that is in use, it gives you the green border and text "NICK is available" which should be red. :P
And I can also confirm that it doesn't work with characters outside a-z 0-9. æøåäöë etc. doesn't work.
Kirk Y
03-17-2007, 11:09 PM
æøåäöë -- all work for me.
Shazz
03-17-2007, 11:13 PM
?????? -- all work for me.
* Shazz 2nds
yup :up:
Mr Chad
03-17-2007, 11:28 PM
Yes, but if you select a new that is in use, it gives you the green border and text "NICK is available" which should be red. :P
I still cant reproduce that issue.
Lizard King
03-18-2007, 01:03 AM
?????? -- all work for me.
Give e a link to check
Shazz
03-18-2007, 01:10 AM
Give e a link to check
I can confirm it works...
OziloZ
03-18-2007, 01:34 AM
It works perfect
thanks :up:
subzero06
03-18-2007, 01:34 AM
I'm having problems with 3.6.4
Every time i use a nick that is already registered like "admin" It tells me that admin Is Available
when IS NOT! bcus its already registered...i tried other registered nicks and still says that they are available.
How can i fix it!
Mr Chad
03-18-2007, 01:57 AM
I'm having problems with 3.6.4
Every time i use a nick that is already registered like "admin" It tells me that admin Is Available
when IS NOT! bcus its already registered...i tried other registered nicks and still says that they are available.
How can i fix it!
do you have a table prefix? also did you rename your user table or something stupid like that?
subzero06
03-18-2007, 02:02 AM
Nop nothing like that.
**********
thincom2000
03-18-2007, 02:08 AM
I had this exact problem until I realized I forgot to import the plugin.
Shazz
03-18-2007, 02:10 AM
I had this exact problem until I realized I forgot to import the plugin.
lol...
Did that fix the problem?
subzero06
03-18-2007, 02:16 AM
Is the plugin in the Administration plugin called "checkusername"? bcus for some reason i have 5 checkusername things
subzero06
03-18-2007, 02:34 AM
lol...nvm i fixed it, i had to delete those four and just leave one "checkusername" plugin
you r right in this , but why gave that strange error !!
anyway, am still likes ur mod :) , but am gonna to uninstall it for time been .
I'll try to figure out the reason, the I'll be back for feedback :)
Same here.
Thanks for your feedback, spy90000. :)
Great mod though, Mr.Chad. :up:
Mr Chad
03-18-2007, 07:29 AM
most of the issues are just installation errors. I'm not sure how u had 4 plugins. lol
Great addon, but I'm gonna uninstall as well. It seems random for what it works with an not.
redlabour
03-18-2007, 09:15 AM
there is a plugin and your post is useless... Its posts like this that make me not release all my addons.
Excuse me - i meaned No Product and again not fully phrased.
jazde86
03-18-2007, 09:43 AM
I uninstalled too and switched to another AJAX Register Check (http://www.vbhacks-germany.org/showthread.php?t=5725) Hack.
M-Tuning
03-18-2007, 09:51 AM
<a href="http://www.psp-media.nl/register.php" target="_blank">www.psp-media.nl/register.php</a>
Works perfect.
da420
03-18-2007, 03:44 PM
Excuse me - i meaned No Product and again not fully phrased.
Why should this hack be a product?
If I needed it phrased that bad I'd do it myself...
RedGTiVR6
03-18-2007, 03:57 PM
Well i had to do things... I'm not sitting at my computer waiting for your response...
This is in beta stage so you shouldn't be testing this on a live board in the first place.
and it also my choice to release this, an since I felt like being nice I did.
I understand. However, I made it clear in my post what my situation was. If you didn't have the time, just say so...simple as that. Don't lead people on then forget about it.
Triky
03-19-2007, 03:48 PM
Great mod. *Triky Installed* :)
b6gm6n
03-19-2007, 07:30 PM
Hi... got it working :) just one thing... i use custom styles for my input boxes etc... how can i retain that when the mod kicks in... just shows a white box, is there any way to keep the style used in the forum? cheers and thank you for a great addon!
Yeah the class 'bginput' is not being restored on 'onblur' as soon as a value is sent from the javascript it creates a default white without the custom css class
-b6
Mr Chad
03-19-2007, 08:18 PM
Hi... got it working :) just one thing... i use custom styles for my input boxes etc... how can i retain that when the mod kicks in... just shows a white box, is there any way to keep the style used in the forum? cheers and thank you for a great addon!
Yeah the class 'bginput' is not being restored on 'onblur' as soon as a value is sent from the javascript it creates a default white without the custom css class
-b6
you would have to add your input style into the inputbad and inputgood CSS you added to your style
b6gm6n
03-19-2007, 08:32 PM
Thanx Mr Chad, your a star!
-b6
PoetJA-1975
03-20-2007, 09:36 AM
I've uploaded images & clientscript files
imported plugin
made template changes
and still see no change whatsoever to the registration form
Possible that there's a conflict with another modification like NoSpam for instance?
Help!
Thanx,
Jacquii.
TheSh@rk
03-20-2007, 11:00 AM
Very nice plugin!
Thank you very much.
Allan
03-20-2007, 12:22 PM
File attach, French language ;)
Translator: Sofia :)
Mr Chad
03-20-2007, 02:03 PM
I've uploaded images & clientscript files
imported plugin
made template changes
and still see no change whatsoever to the registration form
Possible that there's a conflict with another modification like NoSpam for instance?
Help!
Thanx,
Jacquii.
is there any other fields with "name=register"
b6gm6n
03-20-2007, 03:29 PM
I've uploaded images & clientscript files
imported plugin
made template changes
and still see no change whatsoever to the registration form
Possible that there's a conflict with another modification like NoSpam for instance?
Help!
Thanx,
Jacquii.
i had that... until i realized i was using the wrong style... make sure you apply the settings and css and everything else to your 'current' style...
-b6
Soliloquy
03-22-2007, 02:18 AM
I installed this a couple of days ago and it mostly seems to be working great, except today I got three "vBulletin Database Error!" messages when somebody tried to register with an apostrophe in their name. No idea what was shown to the user but here's the error message from the email:
Invalid SQL:
SELECT COUNT(*) as username FROM `vB_user` WHERE `username` = 'Kneene'er';
MySQL Error : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'er'' at line 1
Error Number : 1064
Script : http://www.exampleforum.com/ajax.php?do=CheckUsername¶m=Kneene%27er
subzero06
03-22-2007, 02:59 AM
I installed this a couple of days ago and it mostly seems to be working great, except today I got three "vBulletin Database Error!" messages when somebody tried to register with an apostrophe in their name. No idea what was shown to the user but here's the error message from the email:
Invalid SQL:
SELECT COUNT(*) as username FROM `vB_user` WHERE `username` = 'Kneene'er';
MySQL Error : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'er'' at line 1
Error Number : 1064
Script : http://www.exampleforum.com/ajax.php?do=CheckUsername¶m=Kneene%27er
Yeah, im having the same problem.
Hi,
There is a problem with hebrew lang.
when i insert a new user name in hebrew lang i get a strange characters.
jagari
03-22-2007, 05:26 AM
Does this work even with custom templates?
Working fine here :D
Thanks Mr. Chad
PoetJA-1975
03-22-2007, 08:08 AM
is there any other fields with "name=register"
Thanx for responding MR CHAD - I'm not quite sure I understand though - Where would the "name=register" field be?
Thanx
Jacquii.
ThorstenA
03-22-2007, 09:07 AM
great product !
subzero06
03-22-2007, 12:50 PM
Anyones knows how to fix it so people can register with an apostrophe name.?
Kirk Y
03-22-2007, 04:19 PM
Thanx for responding MR CHAD - I'm not quite sure I understand though - Where would the "name=register" field be?
Thanx
Jacquii.
Look in your Header/Footer templates. It doesn't necessarily need to be name=register either, if you're using JS Rollovers, you could have one of them named register.
Ethelbert
03-24-2007, 04:04 PM
Hi, I have a little problem. Everything working fine except my username. When I type any username it's available or is in use and when I type my username (admin username) username will be cleaned and status will be Available...
Could you tell me how can I fix tis problem?
You can test it at: www.verejnadiskusia.sk - my username is drakeman
Thank you
TheMilkCarton
03-24-2007, 04:52 PM
I'm not really concerned with this, since I just need to edit the JS file, but it doesn't change the character minimum if you change it higher than 3 characters. Can't you incorporate a variable of some kind to pull that info straight from vBulletin?
Also, there's a typo in your phrase "The username must me 3 characters or more" which I just have to edit the JS file as well, and you might have already fixed in your latest release.. I just haven't downloaded it. :)
Also, what I really don't like is that when you click inside a box and then click out of it to, for example, change your username, it will tell you "Password must be 6 chars or more" even though you haven't tried typing anything yet. Can't you make it so that it only shows you error messages once you've started typing something?
Well that's it with my suggestions.. Thanks!
Dead End Society
03-24-2007, 05:32 PM
Anyones knows how to fix it so people can register with an apostrophe name.?
Same problem here, works fine but when a user tries to do this.
testebr
03-24-2007, 09:06 PM
please improve your script to check if username is banned by admin to user register.
TWTCommish
03-24-2007, 09:57 PM
Looks great; very polished. But until/if the apostrophe issue is sorted out, I'll have to pass.
PoetJA-1975
03-25-2007, 01:43 AM
Look in your Header/Footer templates. It doesn't necessarily need to be name=register either, if you're using JS Rollovers, you could have one of them named register.
OK - Thanx for the response ACID - And yes - In my header template (since our main Navbar is of rollover images) we do have a register using JS - So I will rename and see if that makes a difference!
Thanx,
Jacquii.
harmor19
03-25-2007, 07:20 AM
What if you would take all the lines similar to one pasted below and removed the single quotes? I'm not sure if "username" after "LoginStatus" is the variable that holds the value of the provided username typed by the user.
Before
LoginStatus('username','username_status',null,'0', 'The username must me 3 chars or more');
After
LoginStatus(username,'username_status',null,'0', 'The username must me 3 chars or more');
Realturktiger
03-25-2007, 08:01 AM
Thanks for Turkish update ...........
wolfe
03-25-2007, 11:40 AM
i installed this hack and the email are both saying ok even if they dont match up.
PoetJA-1975
03-25-2007, 12:01 PM
Why should this hack be a product?
If I needed it phrased that bad I'd do it myself...
Agreed - so I edited the phrase to suit my forum ;)
lol...nvm i fixed it, i had to delete those four and just leave one "checkusername" plugin
Yeah - for some reason I had 2 checkusername plugins - so I deleted the extra ugh LOL - Thanx for the tip - Works perfectly now!
AND Thanx for the lovely addition MR CHAD - I'm sure this will make the registration process a lot clear than it has been and much easier for prospective Members.
I appreciate you sharing this mod with us ;)
Jacquii.
thincom2000
03-25-2007, 05:57 PM
I tried to fix the apostrophe issue on my own, but I have no clue how to use regular expressions.
Note: If you try to register a username with an apostrophe:
mor'iarty will not work.
mor\'iarty WILL work, but the backslash is part of name now.
taheri6
03-25-2007, 07:08 PM
lol, I was having problems with this in where when you typed in the username, it would check, and replace your username with "Checking..." and then regardless of the outcome the username box would go blank.
I then realized I had not imported the plugin, and proceeded to bang my head on the wall. Once I imported, it has worked as I expected in both IE7 and FF2
Great mod, works perfect. Thanks!
kaptanblack
03-25-2007, 07:18 PM
Thanks very good
ArAb4NoKiA
03-26-2007, 05:14 AM
thanks for the MOD but it doesn't work multi language in the username why ?
Itzbenreel
03-26-2007, 05:45 PM
Clicky clicky.
I'm using this w/ CAPTCHA replacement and things seem to work fine.
Cybershaolin
03-26-2007, 05:47 PM
It's working but not for the username.
This is what I get in the box when trying to input a name:
<?xml version="
Why?
Masked Crusader
03-26-2007, 07:46 PM
Any chance that we can get a PSD for the two images that you used -- the green checkmark and the red 'X'. I need to change the background of the two images.
Thanks.
Xplorer4x4
03-27-2007, 08:19 PM
Any chance that we can get a PSD for the two images that you used -- the green checkmark and the red 'X'. I need to change the background of the two images.
Thanks.
Just edit them in pain brush with the fill tool.
When i try to register on my forums it will clear the user name field when i tab to the password field.
How can this be fixed?
It works like a charm..
But I noticed that it only checks the already registered user-names but not the Illegal User Names which were banned from the admin..
DJ XtAzY
03-28-2007, 08:09 PM
feature request:
If a person enters a yahoo/hotmail (or something like that) as an email, display a warning message that it may block the activation email and recommend another email provider...
something like that
thanks
M-Tuning
03-29-2007, 07:03 AM
feature request:
If a person enters a yahoo/hotmail (or something like that) as an email, display a warning message that it may block the activation email and recommend another email provider...
something like that
thanks
That would be nice.
Cheerpipe
03-29-2007, 02:52 PM
Installed
cool hack and thanks by spanish translation
Spinball
03-29-2007, 07:11 PM
Installation Instructions:
Included In ZIP
Erm, excuse me, but no, they aren't.
Mr Chad
03-29-2007, 09:52 PM
Erm, excuse me, but no, they aren't.
the template edits are in the zip. But are not needed if you used the pre-edited template i provided.
So in a way they are included.
Spinball
03-30-2007, 05:53 AM
the template edits are in the zip. But are not needed if you used the pre-edited template i provided.
So in a way they are included.
Yes I see the template edits are in there. But no instructions on where to put the images or where to upload the files. Some people need their hands holding a little more than others. ;)
Dead End Society
03-30-2007, 07:02 AM
Looks great; very polished. But until/if the apostrophe issue is sorted out, I'll have to pass.
I still don't see a solution to this yet, anyone? I really want to keep this mod installed.
Of course when someone types an apostrophe this error occurs....
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html><head> <title>Dead End Society Database Error</title> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /> <style type="text/css"> <!-- body { background-color: white; color: black; } #container { width: 400px; } #message { width: 400px; color: black; background-color: #FFFFCC; } #bodytitle { font: 13pt/15pt verdana
bela-meaad
04-01-2007, 01:26 PM
i need guest to register using @yahoo.com $ @gmail.com accounts only not other emails
is that possible with this mod?
Krumbz
04-01-2007, 04:23 PM
When i insert a screen name "Test" it comes back with a <br /> Im using vbulletin 3.6.5
http://i91.photobucket.com/albums/k287/MrKronik/hmm.gif
Mr Chad
04-01-2007, 09:15 PM
i need guest to register using @yahoo.com $ @gmail.com accounts only not other emails
is that possible with this mod?
yes this is possible, look inside the javascript and look for the email function. just make it check if thats the domain. (if i have spare time ill try to make it for you)
Mr Chad
04-01-2007, 09:16 PM
I still don't see a solution to this yet, anyone? I really want to keep this mod installed.
Of course when someone types an apostrophe this error occurs....
I'm not sure how to fix this yet.
works fine for me sweet !! thanks alot :D
Barakat
04-02-2007, 12:01 AM
works great for me thanks a lot
bela-meaad
04-02-2007, 02:09 AM
yes this is possible, look inside the javascript and look for the email function. just make it check if thats the domain. (if i have spare time ill try to make it for you)
which line?
i couldn`t find it
SnowBot
04-02-2007, 10:29 AM
Installing now :0 THX!
Mr Chad
04-02-2007, 08:53 PM
which line?
i couldn`t find it
find line 14 in the .js it should look like this:
var matchArray=emailStr.match(emailPat);
under it add this:
if (!emailStr.match("@yahoo.com") || !emailStr.match("@gmail.com")) {
LoginStatus('email_1','email_1_status',null,'0', 'You may only register to this forum with Yahoo or Gmail emails.');
return false;
}
The Bish
04-04-2007, 03:55 AM
Installed!
Tom_S
04-04-2007, 10:17 PM
You got my vote. Sweet! Installed.
bela-meaad
04-05-2007, 05:28 AM
i`m using UTF-8 Unicode
with arabic language
1: when i try to register in arabic word i got this error
inside the box after checking
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"><HTML><HEAD><TITLE>406 Not Acceptable</TITLE></HEAD><BODY><H1>Not Acceptable</H1>An appropriate representation of the requested resource /ajax.php could not be found on this server.<P><HR><ADDRESS>Apache/1.3.37 Server at www.bela-meaad.com Port 80</ADDRESS><br /><div style="z-index:3" class="smallfont" align="center">Search Engine Optimization by <a rel="nofollow" href="http://www.vbseo.com/486/">vBSEO</a> 3.0.0 RC8</div><script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script><script type="text/javascript">_uacct = "UA-537308-2";urchinTracker();</script><br /><div style="z-index:3" class="smallfont" align="center">Search Engine Optimization by <a rel="nofollow" href="http://www.vbseo.com/486/">vBSEO</a> 3.0.0 RC8</div><script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script><script type="text/javascript">_uacct = "UA-537308-2";urchinTracker();</script></BODY></HTML>
& this below
Not Acceptable
An appropriate representation of the requested resource /ajax.php could not be found on this server.
--------------------------------------------------------------------------------
Apache/1.3.37 Server at www.bela-meaad.com Port 80
Search Engine Optimization by vBSEO 3.0.0 RC8
Search Engine Optimization by vBSEO 3.0.0 RC8
2: still member can register with any email
ignoring the warning
Thanks
I get this in the username field when I move out of it after typing anything:
<?xml version="1.0" encoding="windows-1252"?><error>You do not have permission to perform this action. Please refresh the page and login before trying again.</error>
Mr Chad
04-05-2007, 01:56 PM
i`m using UTF-8 Unicode
with arabic language
1: when i try to register in arabic word i got this error
inside the box after checking
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"><HTML><HEAD><TITLE>406 Not Acceptable</TITLE></HEAD><BODY><H1>Not Acceptable</H1>An appropriate representation of the requested resource /ajax.php could not be found on this server.<P><HR><ADDRESS>Apache/1.3.37 Server at www.bela-meaad.com Port 80</ADDRESS><br /><div style="z-index:3" class="smallfont" align="center">Search Engine Optimization by <a rel="nofollow" href="http://www.vbseo.com/486/">vBSEO</a> 3.0.0 RC8</div><script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script><script type="text/javascript">_uacct = "UA-537308-2";urchinTracker();</script><br /><div style="z-index:3" class="smallfont" align="center">Search Engine Optimization by <a rel="nofollow" href="http://www.vbseo.com/486/">vBSEO</a> 3.0.0 RC8</div><script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script><script type="text/javascript">_uacct = "UA-537308-2";urchinTracker();</script></BODY></HTML>
& this below
Not Acceptable
An appropriate representation of the requested resource /ajax.php could not be found on this server.
--------------------------------------------------------------------------------
Apache/1.3.37 Server at www.bela-meaad.com Port 80
Search Engine Optimization by vBSEO 3.0.0 RC8
Search Engine Optimization by vBSEO 3.0.0 RC8
2: still member can register with any email
ignoring the warning
Thanks
I'm not sure about you issue. It seems your rewrite URL's are not letting the script access the ajax.php
I get this in the username field when I move out of it after typing anything:
Did you forgot to install the plugin?
Did you forgot to install the plugin?
Yes, i did install it.
audis3
04-05-2007, 06:53 PM
Installed!Thanks!You have my vote!
Mr Chad
04-05-2007, 09:32 PM
Yes, i did install it.
well, I'm sorry but i cannot reproduce your problem.
have you tried it on multiple browsers yet, and are the results the same?
Installed!Thanks!You have my vote!
thanks
abdulla1
04-05-2007, 11:06 PM
Works great here except that it doesnt check the username using regular expressions, so usernames that arent allowed to be registered are noted as available.
Mr Chad
04-06-2007, 12:31 AM
not sure what regular expressions are usually used. (if i did then i would add them)
blastup
04-06-2007, 04:37 AM
<a href="http://indexspot.com/register.php" target="_blank">http://indexspot.com/register.php</a>........ can you check it got problems.. idk why only the user name.. don;t work all the others worked fine.. the username..part.. when put any name.. it approves it.. do you know how to fix?
blastup
04-06-2007, 04:49 AM
i had switched.. back.. to the original code for the username section.. when users put a username in.. after it checks it the whole name disappears .. so when press submit.. it don't work.. because it siad username is empty.. gotta help me..
Mr Chad
04-06-2007, 05:59 AM
did you install the plugin?
Why got "page not found " when enter a username?
Installed on VB 3.6.0,any help will appreciated.
Mr Chad
04-06-2007, 01:22 PM
Why got "page not found " when enter a username?
Installed on VB 3.6.0,any help will appreciated.
did you install the plugin?
well, I'm sorry but i cannot reproduce your problem.
have you tried it on multiple browsers yet, and are the results the same?
I think i narrowed it down. Test if the forum is locked for guests.
did you install the plugin?
BTW, to make life easier, you should release it as a product. It's what most users are used to.
dbirosel
04-06-2007, 06:28 PM
Suggestion:
Can you add an option to remove the additional information? :D I want it to look simple, and just have the recommended fields.
|Jordan|
04-07-2007, 08:35 PM
What happened to the download link? Why are coders removing their hacks from vb.org? Mutiny?
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.