Re: [WebDNA] jQuery validation and webdna

This WebDNA talk-list message is from

2015


It keeps the original formatting.
numero = 112418
interpreted = N
texte = --001a11c24d9453a74a051d975352 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable [url][password][/url] Try that because [password] may have an illegal character that is parsed. On Tue, Aug 18, 2015 at 10:36 AM, Nices Lists wrote: > Hi Rich, > > Seems your link to the =E2=80=9Cjquery.min.js=E2=80=9D has an extra =E2= =80=9C.=E2=80=9D after the 2. > > https://ajax.googleapis.com/ajax/libs/jquery/2..1.3/jquery.min.js > > Should be: > > https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js > > Hope that helps. > > =E2=80=94Rupert > > Rupert Ravens > > > On Aug 17, 2015, at 6:49 PM, Rich Kwas wrote: > > 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. > Everything else gets appended a-ok. > > If I change &password=3D[password] to &password=3Dmissing the word "missi= ng" > is written a-ok into the db. > > I'm flushed databases, flushed the cache, tried [url][password][/unurl], > renamed that field and form items etc ......tried everything I can think = of > and 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.... > (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 > > > > > > > =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 > >
id=3D"signupForm"> >
> >

> > >

> >

> > >

> >

> > >

> >

> > >

> >

> >

> >
>
> > =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][uppercas= e][email][/uppercase][/url]&status=3DOK&password=3D[password]®ister_date= =3D[date]®ister_time=3D[time]®ister_ip=3D[ipaddress][/append] > > > > > > Gotta go away from all this for a while LOL > > > Richard > --------------------------------------------------------- This message is > sent to you because you are subscribed to the mailing list . To > unsubscribe, E-mail to: archives: > http://mail.webdna.us/list/talk@webdna.us Bug Reporting: support@webdna.u= s > > > --------------------------------------------------------- This message is > sent to you because you are subscribed to the mailing list . To > unsubscribe, E-mail to: archives: > http://mail.webdna.us/list/talk@webdna.us Bug Reporting: support@webdna.u= s > --001a11c24d9453a74a051d975352 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable
[url][password][/url]

Try that because = [password] may have an illegal character that is parsed.=C2=A0
<= div class=3D"gmail_extra">
On Tue, Aug 18, 20= 15 at 10:36 AM, Nices Lists <ravens@nices.com> wrote:
Hi Rich,
Seems your link to the =E2=80=9Cjquery.min.js=E2=80=9D has = an extra =E2=80=9C.=E2=80=9D after the 2.=C2=A0

https://ajax.googleapis.com/ajax/libs/jquery/2..1.3/jque= ry.min.js

Should be:=C2=A0
=E2=80=94Rupert

Rupert Ravens


On Aug 17, 2015, at 6= :49 PM, Rich Kwas <richkwasniewski@yahoo.com> wrote:

I'm usin= g 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 ever= y time. Everything else gets appended a-ok.

If I c= hange &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], renam= ed that field and form items etc ......tried everything I can think of and = looked everywhere I can think of... No success writing the password into th= e database.

Anyone else using this particular plug= in???
It's driving me nuts...



Below is some of the code o= n the signup page:



c= alling the validation routine etc....=C2=A0
(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"lib/jquery.js"= ;></script>
<script src=3D"dist/jquery.validate.= js"></script>
<script>
$().ready(function() {
// validate signup form on keyup and = submit
$("#sig= nupForm").validate({
= rules: {
= password: {
requ= ired: true,
minl= ength: 8
},
=
confirm_password: {
required: true,
minlength: 8,
equalTo: "#pass= word"
},
email: {
<= span style=3D"white-space:pre-wrap">required: true,
<= span style=3D"white-space:pre-wrap">email: true
},
confirm_email: {
required: true,
equalTo: "#email"
},
},
messages: {
<= /span>password: {
required: "Please choose a Password",
minlength: "Must be at least 8 chara= cters"
},
confirm_password: {=
required: "= ;Confirm your Password",
minlength: "Must be at least 8 characters",
equalTo: "Enter th= e same Password as above"
},
= confirm_email: {
required: "Confirm your email",
equalTo: "Enter the same email as above&quo= t;
},
= =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 email: "Enter a valid email address",<= /div>
}
});

});
</script>

=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

<form method=3D"post" actio= n=3D"registerOK.htm" class=3D"cmxform" id=3D"signu= pForm">
<fieldset>
=C2=A0 =C2=A0=C2=A0
<p>
<label for=3D"email">Enter your= Email:</label>
<input id=3D"email" name=3D&qu= ot;email" type=3D"email">
</p>
= =C2=A0 =C2=A0=C2=A0
<p>
<label for=3D"con= firm_email">Confirm your Email:</label>
<input i= d=3D"confirm_email" name=3D"confirm_email" type=3D"= ;email">
</p>
=C2=A0 =C2=A0=C2=A0
<p>
<label for=3D"password">Choose a Pas= sword:</label>
<input id=3D"password" name=3D&= quot;password" type=3D"password">
</p>
=C2=A0 =C2=A0=C2=A0
<p>
<label for=3D&= quot;confirm_password">Confirm your Password:</label>
<input id=3D"confirm_password" name=3D"confirm_passwor= d" type=3D"password">
</p>
=C2= =A0 =C2=A0=C2=A0
<p>
<input type=3D"submi= t" name=3D"action" value=3D"Create Account" class= =3D"submit">
</p>

<= ;/fieldset>
</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 registerOK= .htm page:


[append db=3D^/membershi= p/membership.db]&uniqueID=3D[cart]&email=3D[url][uppercase][email][= /uppercase][/url]&status=3DOK&password=3D[password]&register_da= te=3D[date]&register_time=3D[time]&register_ip=3D[ipaddress][/appen= d]




Gotta go away from all this for a while LOL


Richard
--------------------------------------------------------- This message is sent to you because you are subscribed to the mailing list . To unsubscribe, E-mail to: archives: http://mail.webdna.us/list/talk@webdna.us Bug Reporting: suppo= rt@webdna.us

--------------------------------------------------------- This message is sent to you because you are subscribed to the mailing list . To unsubscribe, E-mail to: archives: http://mail.webdna.us/list/talk@webdna.us Bug Reporting: suppo= rt@webdna.us

--001a11c24d9453a74a051d975352-- 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)
--001a11c24d9453a74a051d975352 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable [url][password][/url] Try that because [password] may have an illegal character that is parsed. On Tue, Aug 18, 2015 at 10:36 AM, Nices Lists wrote: > Hi Rich, > > Seems your link to the =E2=80=9Cjquery.min.js=E2=80=9D has an extra =E2= =80=9C.=E2=80=9D after the 2. > > https://ajax.googleapis.com/ajax/libs/jquery/2..1.3/jquery.min.js > > Should be: > > https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js > > Hope that helps. > > =E2=80=94Rupert > > Rupert Ravens > > > On Aug 17, 2015, at 6:49 PM, Rich Kwas wrote: > > 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. > Everything else gets appended a-ok. > > If I change &password=3D[password] to &password=3Dmissing the word "missi= ng" > is written a-ok into the db. > > I'm flushed databases, flushed the cache, tried [url][password][/unurl], > renamed that field and form items etc ......tried everything I can think = of > and 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.... > (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 > > > > > > > =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 > >
id=3D"signupForm"> >
> >

> > >

> >

> > >

> >

> > >

> >

> > >

> >

> >

> >
>
> > =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][uppercas= e][email][/uppercase][/url]&status=3DOK&password=3D[password]®ister_date= =3D[date]®ister_time=3D[time]®ister_ip=3D[ipaddress][/append] > > > > > > Gotta go away from all this for a while LOL > > > Richard > --------------------------------------------------------- This message is > sent to you because you are subscribed to the mailing list . To > unsubscribe, E-mail to: archives: > http://mail.webdna.us/list/talk@webdna.us Bug Reporting: support@webdna.u= s > > > --------------------------------------------------------- This message is > sent to you because you are subscribed to the mailing list . To > unsubscribe, E-mail to: archives: > http://mail.webdna.us/list/talk@webdna.us Bug Reporting: support@webdna.u= s > --001a11c24d9453a74a051d975352 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable
[url][password][/url]

Try that because = [password] may have an illegal character that is parsed.=C2=A0
<= div class=3D"gmail_extra">
On Tue, Aug 18, 20= 15 at 10:36 AM, Nices Lists <ravens@nices.com> wrote:
Hi Rich,
Seems your link to the =E2=80=9Cjquery.min.js=E2=80=9D has = an extra =E2=80=9C.=E2=80=9D after the 2.=C2=A0

https://ajax.googleapis.com/ajax/libs/jquery/2..1.3/jque= ry.min.js

Should be:=C2=A0
=E2=80=94Rupert

Rupert Ravens


On Aug 17, 2015, at 6= :49 PM, Rich Kwas <richkwasniewski@yahoo.com> wrote:

I'm usin= g 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 ever= y time. Everything else gets appended a-ok.

If I c= hange &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], renam= ed that field and form items etc ......tried everything I can think of and = looked everywhere I can think of... No success writing the password into th= e database.

Anyone else using this particular plug= in???
It's driving me nuts...



Below is some of the code o= n the signup page:



c= alling the validation routine etc....=C2=A0
(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"lib/jquery.js"= ;></script>
<script src=3D"dist/jquery.validate.= js"></script>
<script>
$().ready(function() {
// validate signup form on keyup and = submit
$("#sig= nupForm").validate({
= rules: {
= password: {
requ= ired: true,
minl= ength: 8
},
=
confirm_password: {
required: true,
minlength: 8,
equalTo: "#pass= word"
},
email: {
<= span style=3D"white-space:pre-wrap">required: true,
<= span style=3D"white-space:pre-wrap">email: true
},
confirm_email: {
required: true,
equalTo: "#email"
},
},
messages: {
<= /span>password: {
required: "Please choose a Password",
minlength: "Must be at least 8 chara= cters"
},
confirm_password: {=
required: "= ;Confirm your Password",
minlength: "Must be at least 8 characters",
equalTo: "Enter th= e same Password as above"
},
= confirm_email: {
required: "Confirm your email",
equalTo: "Enter the same email as above&quo= t;
},
= =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 email: "Enter a valid email address",<= /div>
}
});

});
</script>

=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

<form method=3D"post" actio= n=3D"registerOK.htm" class=3D"cmxform" id=3D"signu= pForm">
<fieldset>
=C2=A0 =C2=A0=C2=A0
<p>
<label for=3D"email">Enter your= Email:</label>
<input id=3D"email" name=3D&qu= ot;email" type=3D"email">
</p>
= =C2=A0 =C2=A0=C2=A0
<p>
<label for=3D"con= firm_email">Confirm your Email:</label>
<input i= d=3D"confirm_email" name=3D"confirm_email" type=3D"= ;email">
</p>
=C2=A0 =C2=A0=C2=A0
<p>
<label for=3D"password">Choose a Pas= sword:</label>
<input id=3D"password" name=3D&= quot;password" type=3D"password">
</p>
=C2=A0 =C2=A0=C2=A0
<p>
<label for=3D&= quot;confirm_password">Confirm your Password:</label>
<input id=3D"confirm_password" name=3D"confirm_passwor= d" type=3D"password">
</p>
=C2= =A0 =C2=A0=C2=A0
<p>
<input type=3D"submi= t" name=3D"action" value=3D"Create Account" class= =3D"submit">
</p>

<= ;/fieldset>
</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 registerOK= .htm page:


[append db=3D^/membershi= p/membership.db]&uniqueID=3D[cart]&email=3D[url][uppercase][email][= /uppercase][/url]&status=3DOK&password=3D[password]&register_da= te=3D[date]&register_time=3D[time]&register_ip=3D[ipaddress][/appen= d]




Gotta go away from all this for a while LOL


Richard
--------------------------------------------------------- This message is sent to you because you are subscribed to the mailing list . To unsubscribe, E-mail to: archives: http://mail.webdna.us/list/talk@webdna.us Bug Reporting: suppo= rt@webdna.us

--------------------------------------------------------- This message is sent to you because you are subscribed to the mailing list . To unsubscribe, E-mail to: archives: http://mail.webdna.us/list/talk@webdna.us Bug Reporting: suppo= rt@webdna.us

--001a11c24d9453a74a051d975352-- William DeVaul

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:

Random question (1998) Setting up shop (1997) Kaaaaahhhhhhhnnnnnnn! (1997) creating files dynamically (2002) WC2f3 (1997) [WriteFile] problems (1997) Fwd: Problems with Webcatalog Plug-in (1997) Bulk Processing Offline (2004) setting taxable to true (1997) [WebDNA] What does PHP(5) has, that Webdna hasn't (2009) using showpage and showcart commands (1996) Country & Ship-to address & other fields ? (1997) Speed Optimization - Mac (1997) Showif for mulitple variations (1997) Forms Search Questions (1997) WebCatalog 4.0.2b5 available (2000) raw field names (2001) Nested tags count question (1997) Grep doesn't work the same? (2005) Auto Wrap Text in

(2004)