Re: [WebDNA] jQuery validation and webdna

This WebDNA talk-list message is from

2015


It keeps the original formatting.
numero = 112416
interpreted = N
texte = --Apple-Mail=_5280A64A-34F4-4041-A2B0-A95F2C283EFA Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=utf-8 Replace =E2=80=98PASSWORD=E2=80=99 with something else such as = =E2=80=98PWORD=E2=80=99. To make sure that PASSWORD is not being used as a reserved word. Kind regards Stuart Tremain IDFK Web Developments AUSTRALIA webdna@idfk.com.au > On 18 Aug 2015, at 08:49, Rich Kwas wrote: >=20 > 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=_5280A64A-34F4-4041-A2B0-A95F2C283EFA Content-Transfer-Encoding: quoted-printable Content-Type: text/html; charset=utf-8 Replace =E2=80=98PASSWORD=E2=80=99 with something else such = as =E2=80=98PWORD=E2=80=99.

To make sure that PASSWORD is not being used as a reserved = word.


Kind regards

Stuart Tremain
IDFK Web Developments
AUSTRALIA





On 18 Aug 2015, at 08:49, 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/list/talk@webdna.us Bug Reporting: support@webdna.us

= --Apple-Mail=_5280A64A-34F4-4041-A2B0-A95F2C283EFA-- 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=_5280A64A-34F4-4041-A2B0-A95F2C283EFA Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=utf-8 Replace =E2=80=98PASSWORD=E2=80=99 with something else such as = =E2=80=98PWORD=E2=80=99. To make sure that PASSWORD is not being used as a reserved word. Kind regards Stuart Tremain IDFK Web Developments AUSTRALIA webdna@idfk.com.au > On 18 Aug 2015, at 08:49, Rich Kwas wrote: >=20 > 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=_5280A64A-34F4-4041-A2B0-A95F2C283EFA Content-Transfer-Encoding: quoted-printable Content-Type: text/html; charset=utf-8 Replace =E2=80=98PASSWORD=E2=80=99 with something else such = as =E2=80=98PWORD=E2=80=99.

To make sure that PASSWORD is not being used as a reserved = word.


Kind regards

Stuart Tremain
IDFK Web Developments
AUSTRALIA





On 18 Aug 2015, at 08:49, 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/list/talk@webdna.us Bug Reporting: support@webdna.us

= --Apple-Mail=_5280A64A-34F4-4041-A2B0-A95F2C283EFA-- Stuart Tremain

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:

range vs greater than/less than (2003) [OT] Indexing of dynamic web sites (2003) Quiz question: Return all green and blank records? (2001) WebCommerce: Folder organization ? (1997) Logging purchases (1997) Missing contexts on NT (1997) A little syntax help (1997) Add a field to the error log? (1997) SSL and Webstar 3 with Webcatalog (1998) [WebDNA] How WebDNA email sending works... (2012) PCS Frames (1997) Sort Order on a page search (1997) Resume Catalog ? (1997) Question re: FlushDatabases (1997) File upload to database ? (2001) OSX Continued (2000) Setting up WebCatalog with Retail Pro data (1996) WebCatalog can't find database (1997) Shell Script needed (2003) Unexpected error (1997)