[WebDNA] jQuery validation and webdna

This WebDNA talk-list message is from

2015


It keeps the original formatting.
numero = 112415
interpreted = N
texte = ------=_Part_6046646_1350307515.1439851781050 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable I'm using the jQuery validation plugin from http://jqueryvalidation.org/ It's pretty cool and behaving as expected...BUT I cannot get a password written into a database. Fails every time. Everythi= ng else gets appended a-ok. If I change &password=3D[password] to &password=3Dmissing the word "missing= " is written a-ok into the db. I'm flushed databases, flushed the cache, tried [url][password][/unurl], re= named that field and form items etc ......tried everything I can think of a= nd looked everywhere I can think of... No success writing the password into= the database. Anyone else using this particular plugin???It's driving me nuts.. Below is some of the code on the signup page: calling the validation routine etc....=C2=A0(some of the tabbing seems to h= ave gotten messed up when I pasted it here)=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D The form part on this signup page=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
=C2=A0 =C2=A0=C2=A0

=C2=A0 = =C2=A0=C2=A0

=C2=A0 = =C2=A0=C2=A0

=C2=A0 =C2=A0=C2=A0

=C2=A0 = =C2=A0=C2=A0

=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D The append code currently on the registerOK.htm page: [append db=3D^/membership/membership.db]&uniqueID=3D[cart]&email=3D[url][up= percase][email][/uppercase][/url]&status=3DOK&password=3D[password]®iste= r_date=3D[date]®ister_time=3D[time]®ister_ip=3D[ipaddress][/append] Gotta go away from all this for a while LOL Richard ------=_Part_6046646_1350307515.1439851781050 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable
I'm u= sing the jQuery validation plugin from http://jqueryvalidation.org/

It's pretty cool and behaving as expected...
BUT

I cannot get a password written into a database. Fails every time.= Everything else gets appended a-ok.

If I chang= e &password=3D[password] to &password=3Dmissing the word "missing" = is written a-ok into the db.

I'm flushed databa= ses, flushed the cache, tried [url][password][/unurl], renamed that field a= nd form items etc ......tried everything I can think of and looked everywhe= re I can think of... No success writing the password into the database.

Anyone else using this particular plugin???
<= div id=3D"yui_3_16_0_1_1439847448275_13482" class=3D"">It's driving me nuts= ..


Below is some of the code on the si= gnup page:


calling the validation rou= tine etc.... 
(some of the tabbing seems to have gotten messed up when I pasted it = here)
=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D

<script src=3D"https://ajax.googleapis.com/ajax/libs/jquery/2= .1.3/jquery.min.js"></script>
<script src=3D"lib/jquery.js"></script>= ;
<script s= rc=3D"dist/jquery.validate.js"></script>
<script>
=09$().ready(func= tion() {
=09=09// validate signup form on keyup and submit
=09=09$("#signupForm").validate({
=09=09=09rules: {
=09=09=09=09password: {
= =09=09=09=09=09required: true,
=09=09=09=09=09m= inlength: 8
=09=09=09=09},
=09=09=09=09confirm_password: {
= =09=09=09=09=09required: true,
=09=09=09=09=09minlength: 8,
= =09=09=09=09=09equalTo: "#password"
=09=09=09=09},
=09=09= =09=09email: {
=09=09=09=09=09required: true,
=09=09=09=09=09= email: true
=09=09=09=09},
=09=09=09=09confirm_email:= {
=09=09=09=09=09required: true,
=09=09=09=09=09equalTo: "#e= mail"
=09=09=09=09},
=09=09=09},
=09=09=09messages: {<= /div>
= =09=09=09=09password: {
=09=09=09=09=09required: "Please choo= se a Password",
=09=09=09=09=09minlength: "Must be at least 8 charac= ters"
=09=09=09=09},
=09=09=09=09confirm_password: {
=09=09= =09=09=09required: "Confirm your Password",
=09=09=09=09=09mi= nlength: "Must be at least 8 characters",
=09=09=09=09=09equalTo: "E= nter the same Password as above"
=09=09=09=09},
=09=09=09=09c= onfirm_email: {
=09=09=09=09=09required: "Confirm your email",
=
=09= =09=09=09=09equalTo: "Enter the same email as above"
=09=09=09=09},
  =               =09=09email: "Enter a valid email address",
=09=09=09}
=09=09});

=09});
=09</scrip= t>

=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D



The form part on this signup page
=
=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D
<= br id=3D"yui_3_16_0_1_1439847448275_13723" class=3D"">
<form method=3D"post" action=3D= "registerOK.htm" class=3D"cmxform" id=3D"signupForm">
<fieldset>
    
<p>
<label for=3D"email">= ;Enter your Email:</label>
<input id=3D"email" name=3D"email" type=3D"email">=
</p>
   &nb= sp;
<p><= /div>
<label for= =3D"confirm_email">Confirm your Email:</label>
<input id=3D"confirm_email" na= me=3D"confirm_email" type=3D"email">
</p>
    
<p>
<label for=3D"password">Choose a Password:&l= t;/label>
&= lt;input id=3D"password" name=3D"password" type=3D"password">
</p>
    
<= div id=3D"yui_3_16_0_1_1439847448275_13482" class=3D""><p>
<label for=3D"confirm= _password">Confirm your Password:</label>
<input id=3D"confirm_password" name= =3D"confirm_password" type=3D"password">
</p>
    
<p>
<input type=3D"submit" name=3D"action" valu= e=3D"Create Account" class=3D"submit">
</p>

</fi= eldset>
<= ;/form>
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D


The append code currently on the regist= erOK.htm page:


[append db=3D^/membership/membership.db]&uniqueID=3D[cart]&am= p;email=3D[url][uppercase][email][/uppercase][/url]&status=3DOK&pas= sword=3D[password]&register_date=3D[date]&register_time=3D[time]&am= p;register_ip=3D[ipaddress][/append]



<= br id=3D"yui_3_16_0_1_1439847448275_13784" class=3D"">

Gotta go away from all this for a while LOL


Richard
<= /div> ------=_Part_6046646_1350307515.1439851781050-- Associated Messages, from the most recent to the oldest:

    
  1. Re: [WebDNA] jQuery validation and webdna (Nices Lists 2015)
  2. Re: [WebDNA] jQuery validation and webdna (Michael Davis 2015)
  3. Re: [WebDNA] jQuery validation and webdna (Rich Kwas 2015)
  4. Re: [WebDNA] jQuery validation and webdna (Rich Kwas 2015)
  5. Re: [WebDNA] jQuery validation and webdna (William DeVaul 2015)
  6. Re: [WebDNA] jQuery validation and webdna (Nices Lists 2015)
  7. Re: [WebDNA] jQuery validation and webdna (Stuart Tremain 2015)
  8. [WebDNA] jQuery validation and webdna (Rich Kwas 2015)
------=_Part_6046646_1350307515.1439851781050 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable I'm using the jQuery validation plugin from http://jqueryvalidation.org/ It's pretty cool and behaving as expected...BUT I cannot get a password written into a database. Fails every time. Everythi= ng else gets appended a-ok. If I change &password=3D[password] to &password=3Dmissing the word "missing= " is written a-ok into the db. I'm flushed databases, flushed the cache, tried [url][password][/unurl], re= named that field and form items etc ......tried everything I can think of a= nd looked everywhere I can think of... No success writing the password into= the database. Anyone else using this particular plugin???It's driving me nuts.. Below is some of the code on the signup page: calling the validation routine etc....=C2=A0(some of the tabbing seems to h= ave gotten messed up when I pasted it here)=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D The form part on this signup page=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
=C2=A0 =C2=A0=C2=A0

=C2=A0 = =C2=A0=C2=A0

=C2=A0 = =C2=A0=C2=A0

=C2=A0 =C2=A0=C2=A0

=C2=A0 = =C2=A0=C2=A0

=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D The append code currently on the registerOK.htm page: [append db=3D^/membership/membership.db]&uniqueID=3D[cart]&email=3D[url][up= percase][email][/uppercase][/url]&status=3DOK&password=3D[password]®iste= r_date=3D[date]®ister_time=3D[time]®ister_ip=3D[ipaddress][/append] Gotta go away from all this for a while LOL Richard ------=_Part_6046646_1350307515.1439851781050 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable
I'm u= sing the jQuery validation plugin from http://jqueryvalidation.org/

It's pretty cool and behaving as expected...
BUT

I cannot get a password written into a database. Fails every time.= Everything else gets appended a-ok.

If I chang= e &password=3D[password] to &password=3Dmissing the word "missing" = is written a-ok into the db.

I'm flushed databa= ses, flushed the cache, tried [url][password][/unurl], renamed that field a= nd form items etc ......tried everything I can think of and looked everywhe= re I can think of... No success writing the password into the database.

Anyone else using this particular plugin???
<= div id=3D"yui_3_16_0_1_1439847448275_13482" class=3D"">It's driving me nuts= ..


Below is some of the code on the si= gnup page:


calling the validation rou= tine etc.... 
(some of the tabbing seems to have gotten messed up when I pasted it = here)
=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D

<script src=3D"https://ajax.googleapis.com/ajax/libs/jquery/2= .1.3/jquery.min.js"></script>
<script src=3D"lib/jquery.js"></script>= ;
<script s= rc=3D"dist/jquery.validate.js"></script>
<script>
=09$().ready(func= tion() {
=09=09// validate signup form on keyup and submit
=09=09$("#signupForm").validate({
=09=09=09rules: {
=09=09=09=09password: {
= =09=09=09=09=09required: true,
=09=09=09=09=09m= inlength: 8
=09=09=09=09},
=09=09=09=09confirm_password: {
= =09=09=09=09=09required: true,
=09=09=09=09=09minlength: 8,
= =09=09=09=09=09equalTo: "#password"
=09=09=09=09},
=09=09= =09=09email: {
=09=09=09=09=09required: true,
=09=09=09=09=09= email: true
=09=09=09=09},
=09=09=09=09confirm_email:= {
=09=09=09=09=09required: true,
=09=09=09=09=09equalTo: "#e= mail"
=09=09=09=09},
=09=09=09},
=09=09=09messages: {<= /div>
= =09=09=09=09password: {
=09=09=09=09=09required: "Please choo= se a Password",
=09=09=09=09=09minlength: "Must be at least 8 charac= ters"
=09=09=09=09},
=09=09=09=09confirm_password: {
=09=09= =09=09=09required: "Confirm your Password",
=09=09=09=09=09mi= nlength: "Must be at least 8 characters",
=09=09=09=09=09equalTo: "E= nter the same Password as above"
=09=09=09=09},
=09=09=09=09c= onfirm_email: {
=09=09=09=09=09required: "Confirm your email",
=
=09= =09=09=09=09equalTo: "Enter the same email as above"
=09=09=09=09},
  =               =09=09email: "Enter a valid email address",
=09=09=09}
=09=09});

=09});
=09</scrip= t>

=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D



The form part on this signup page
=
=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D
<= br id=3D"yui_3_16_0_1_1439847448275_13723" class=3D"">
<form method=3D"post" action=3D= "registerOK.htm" class=3D"cmxform" id=3D"signupForm">
<fieldset>
    
<p>
<label for=3D"email">= ;Enter your Email:</label>
<input id=3D"email" name=3D"email" type=3D"email">=
</p>
   &nb= sp;
<p><= /div>
<label for= =3D"confirm_email">Confirm your Email:</label>
<input id=3D"confirm_email" na= me=3D"confirm_email" type=3D"email">
</p>
    
<p>
<label for=3D"password">Choose a Password:&l= t;/label>
&= lt;input id=3D"password" name=3D"password" type=3D"password">
</p>
    
<= div id=3D"yui_3_16_0_1_1439847448275_13482" class=3D""><p>
<label for=3D"confirm= _password">Confirm your Password:</label>
<input id=3D"confirm_password" name= =3D"confirm_password" type=3D"password">
</p>
    
<p>
<input type=3D"submit" name=3D"action" valu= e=3D"Create Account" class=3D"submit">
</p>

</fi= eldset>
<= ;/form>
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D


The append code currently on the regist= erOK.htm page:


[append db=3D^/membership/membership.db]&uniqueID=3D[cart]&am= p;email=3D[url][uppercase][email][/uppercase][/url]&status=3DOK&pas= sword=3D[password]&register_date=3D[date]&register_time=3D[time]&am= p;register_ip=3D[ipaddress][/append]



<= br id=3D"yui_3_16_0_1_1439847448275_13784" class=3D"">

Gotta go away from all this for a while LOL


Richard
<= /div> ------=_Part_6046646_1350307515.1439851781050-- Rich Kwas

DOWNLOAD WEBDNA NOW!

Top Articles:

Talk List

The WebDNA community talk-list is the best place to get some help: several hundred extremely proficient programmers with an excellent knowledge of WebDNA and an excellent spirit will deliver all the tips and tricks you can imagine...

Related Readings:

[shownext max (1997) group searching problem (2002) [WebDNA] [OT] hello (2012) [WebDNA] "Safe Write for Database" setting.... (2016) quit command on NT (1997) Verifying both name and password (was: New Problem) (1997) [OT] JS snippet needed (2006) Emailer (WebCat2) (1997) Nested tags count question (1997) [WebDNA] Strange happenings (2012) [isfile] ? (1997) [showif [numfound]=0]? (2000) WebCatalog Q & A pages (1997) HomePage Caution (1997) Signal Raised Error (1997) AOL displays strange header info (2000) Mass deletion of records (2006) Navigator 4.01 (1997) random sorting broken (was Re[2]: php vs WebCatalog) (2000) Code database (1998)