Re: [WebDNA] jQuery validation and webdna

This WebDNA talk-list message is from

2015


It keeps the original formatting.
numero = 112417
interpreted = N
texte = --Apple-Mail=_0808AF85-4924-42EE-9BD9-9DF3D3B1993B Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=windows-1252 Hi Rich, Seems your link to the =93jquery.min.js=94 has an extra =93.=94 after = the 2.=20 https://ajax.googleapis.com/ajax/libs/jquery/2..1.3/jquery.min.js Should be:=20 https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js Hope that helps.=20 =97Rupert Rupert Ravens On Aug 17, 2015, at 6:49 PM, Rich Kwas = wrote: > I'm using the jQuery validation plugin from = http://jqueryvalidation.org/ >=20 > It's pretty cool and behaving as expected... > BUT >=20 > I cannot get a password written into a database. Fails every time. = Everything else gets appended a-ok. >=20 > If I change &password=3D[password] to &password=3Dmissing the word = "missing" is written a-ok into the db. >=20 > 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. >=20 > Anyone else using this particular plugin??? > It's driving me nuts... >=20 >=20 >=20 > Below is some of the code on the signup page: >=20 >=20 >=20 > calling the validation routine etc....=20 > (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 >=20 > > > > >=20 > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D >=20 >=20 >=20 > 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 >=20 >
>
> =20 >

> > >

> =20 >

> > >

> =20 >

> > >

> =20 >

> > >

> =20 >

> >

>=20 >
>
>=20 > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D >=20 >=20 > The append code currently on the registerOK.htm page: >=20 >=20 > [append = db=3D^/membership/membership.db]&uniqueID=3D[cart]&email=3D[url][uppercase= ][email][/uppercase][/url]&status=3DOK&password=3D[password]®ister_date= =3D[date]®ister_time=3D[time]®ister_ip=3D[ipaddress][/append] >=20 >=20 >=20 >=20 >=20 > Gotta go away from all this for a while LOL >=20 >=20 > 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.us --Apple-Mail=_0808AF85-4924-42EE-9BD9-9DF3D3B1993B Content-Transfer-Encoding: quoted-printable Content-Type: text/html; charset=windows-1252 Hi = Rich,

Seems your link to the =93jquery.min.js=94 has = an extra =93.=94 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. 

=97Rupert

R= upert Ravens


On Aug 17, 2015, at = 6:49 PM, Rich Kwas <richkwasniewski@yahoo.com>= ; 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 "missing" = 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=

<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
= $("#signupForm").validate({
= rules: {
= password: {
= required: true,
= minlength: 8
= },
= confirm_password: {
= required: true,
= minlength: 8,
= equalTo: "#password"
= },
= email: {
= required: true,
= email: true
= },
= confirm_email: {
= required: true,
= equalTo: "#email"
= },
= },
= messages: {
= password: {
= required: "Please choose a = Password",
= minlength: "Must be at least 8 characters"
= },
= confirm_password: {
= required: "Confirm your = Password",
= minlength: "Must be at least 8 characters",
= equalTo: "Enter the same Password = as above"
= },
= confirm_email: {
= required: "Confirm your email",
= equalTo: "Enter the same email as = above"
= },
                email: = "Enter a valid email address",
= }
= });

});
= </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" 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>
    
<p>
<label = for=3D"confirm_email">Confirm your Email:</label>
<input = id=3D"confirm_email" name=3D"confirm_email" type=3D"email">
</p>
  =   
<p>
<label for=3D"password">Choose a = Password:</label>
<input id=3D"password" name=3D"password" = type=3D"password">
</p>
    
<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" 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^/membership/membership.db]&uniqueID=3D[cart]&email=3D[url][u= ppercase][email][/uppercase][/url]&status=3DOK&password=3D[passwor= d]&register_date=3D[date]&register_time=3D[time]&register_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/l= ist/talk@webdna.us Bug Reporting: support@webdna.us

= --Apple-Mail=_0808AF85-4924-42EE-9BD9-9DF3D3B1993B-- 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)
--Apple-Mail=_0808AF85-4924-42EE-9BD9-9DF3D3B1993B Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=windows-1252 Hi Rich, Seems your link to the =93jquery.min.js=94 has an extra =93.=94 after = the 2.=20 https://ajax.googleapis.com/ajax/libs/jquery/2..1.3/jquery.min.js Should be:=20 https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js Hope that helps.=20 =97Rupert Rupert Ravens On Aug 17, 2015, at 6:49 PM, Rich Kwas = wrote: > I'm using the jQuery validation plugin from = http://jqueryvalidation.org/ >=20 > It's pretty cool and behaving as expected... > BUT >=20 > I cannot get a password written into a database. Fails every time. = Everything else gets appended a-ok. >=20 > If I change &password=3D[password] to &password=3Dmissing the word = "missing" is written a-ok into the db. >=20 > 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. >=20 > Anyone else using this particular plugin??? > It's driving me nuts... >=20 >=20 >=20 > Below is some of the code on the signup page: >=20 >=20 >=20 > calling the validation routine etc....=20 > (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 >=20 > > > > >=20 > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D >=20 >=20 >=20 > 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 >=20 >
>
> =20 >

> > >

> =20 >

> > >

> =20 >

> > >

> =20 >

> > >

> =20 >

> >

>=20 >
>
>=20 > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D >=20 >=20 > The append code currently on the registerOK.htm page: >=20 >=20 > [append = db=3D^/membership/membership.db]&uniqueID=3D[cart]&email=3D[url][uppercase= ][email][/uppercase][/url]&status=3DOK&password=3D[password]®ister_date= =3D[date]®ister_time=3D[time]®ister_ip=3D[ipaddress][/append] >=20 >=20 >=20 >=20 >=20 > Gotta go away from all this for a while LOL >=20 >=20 > 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.us --Apple-Mail=_0808AF85-4924-42EE-9BD9-9DF3D3B1993B Content-Transfer-Encoding: quoted-printable Content-Type: text/html; charset=windows-1252 Hi = Rich,

Seems your link to the =93jquery.min.js=94 has = an extra =93.=94 after the 2. 

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

Should be: 

=

Hope that = helps. 

=97Rupert

R= upert Ravens


On Aug 17, 2015, at = 6:49 PM, Rich Kwas <richkwasniewski@yahoo.com>= ; 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 "missing" = 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=

<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
= $("#signupForm").validate({
= rules: {
= password: {
= required: true,
= minlength: 8
= },
= confirm_password: {
= required: true,
= minlength: 8,
= equalTo: "#password"
= },
= email: {
= required: true,
= email: true
= },
= confirm_email: {
= required: true,
= equalTo: "#email"
= },
= },
= messages: {
= password: {
= required: "Please choose a = Password",
= minlength: "Must be at least 8 characters"
= },
= confirm_password: {
= required: "Confirm your = Password",
= minlength: "Must be at least 8 characters",
= equalTo: "Enter the same Password = as above"
= },
= confirm_email: {
= required: "Confirm your email",
= equalTo: "Enter the same email as = above"
= },
                email: = "Enter a valid email address",
= }
= });

});
= </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" 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>
    
<p>
<label = for=3D"confirm_email">Confirm your Email:</label>
<input = id=3D"confirm_email" name=3D"confirm_email" type=3D"email">
</p>
  =   
<p>
<label for=3D"password">Choose a = Password:</label>
<input id=3D"password" name=3D"password" = type=3D"password">
</p>
    
<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" 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^/membership/membership.db]&uniqueID=3D[cart]&email=3D[url][u= ppercase][email][/uppercase][/url]&status=3DOK&password=3D[passwor= d]&register_date=3D[date]&register_time=3D[time]&register_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/l= ist/talk@webdna.us Bug Reporting: support@webdna.us

= --Apple-Mail=_0808AF85-4924-42EE-9BD9-9DF3D3B1993B-- Nices Lists

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:

embedded showif statements (2000) Help need to figure this out today!!! Advanced Question (2004) Running _every_ page through WebCat ? (1997) too many nested [xxx] (1997) textarea inputs and returns (1999) OH CRAP!!!!!- Template not found error!!! (1999) Forum - Test Request (2005) Sendmail Question (2001) WebCat Redundancy (2000) Robots fill event log (1997) Webmerch tags? (1998) How To question on setting up downloads (1997) WebCatalog dying in NT (1998) Authorize.net, SIM, tcpconnect and applescript (2003) Sort Order on a page search (1997) WCS Newbie question (1997) Erotic Sites (1997) Math with Time (1997) It finally happened ... (2003) duplicate cart numbers (2002)