jquery password strength sample....

hey guys
can you tell I am trying to a bit of everything yet :slight_smile:

Well am now trying to add/copy the password strength sample thats included in the samples… I have copied everything I can find within the sample, so both PHP methods, the event and also the ajax event.
But of course am having no luck in it working… the ajax event fires on change but the image/strength doesnt do anything.
In the PHP method = expression as I have renamed it, has a $Password variable, which I am having a hard time finding anywhere within the original example.
Any ideas as to what I am missing? or has anybody a working example (even thou the sample works lol)…

Thanks in advance folks!

what is the name of the sample?
I take it this is ver 7 samples?

yup sc7 it is.
file is under programming = mcr11

Ok,
I cannot verify what I think I know…
But I think that Scriptcase uses $password as an internal variable in their programming.
I am seeing alot of this in the php files and not just the one you are talking about.

<$password> = $this->password;
<input type=hidden name=“password” value="<?php echo NM_encode_input(<$password>) . “”>"; ?>

So I am not going to be alot of help here…

I think if you need it to work you should program it using that $password variable and I would also use their nomenclature, as best you can…

Kev

[QUOTE=Kdriscoll;15133]Ok,
I cannot verify what I think I know…
But I think that Scriptcase uses $password as an internal variable in their programming.
I am seeing alot of this in the php files and not just the one you are talking about.

<$password> = $this->password;
<input type=hidden name=“password” value="<?php echo NM_encode_input(<$password>) . “”>"; ?>

So I am not going to be alot of help here…

I think if you need it to work you should program it using that $password variable and I would also use their nomenclature, as best you can…

Kev[/QUOTE]

doing what I can considering the security pages I am using are the ones generated by scriptcase, so changing names to other names used in demos is probley a bad idea… for sure would break something else.
Will try and add my usual password strength validator instead, seems a waste of time even trying to use/copy most of the samples…
thanks anyway!