Im a little confused or being stupid,
Does anyone know what should be enterd in the code below to get the login applet to work correctly?
1. This step should be done on the page where you want the password applet to be. For instance, I would create a page called "index.html" and put the following code in it:
(The Frameset code must be before the <BODY> tag)
<frameset rows="*,100%" border=0>
<frame name=hidden src=hidden.html marginwidth=0 marginheight=0 scrolling=no frameborder=0>
<frame name=visible src=password.html marginwidth=0 marginheight=0 scrolling=auto frameborder=0>
</frameset>
The "password.html" should have the Password Wizard code in it. It's what is displaying the Password Wizard login box.
Many Thanks
Rog
Does anyone know what should be enterd in the code below to get the login applet to work correctly?
1. This step should be done on the page where you want the password applet to be. For instance, I would create a page called "index.html" and put the following code in it:
(The Frameset code must be before the <BODY> tag)
<frameset rows="*,100%" border=0>
<frame name=hidden src=hidden.html marginwidth=0 marginheight=0 scrolling=no frameborder=0>
<frame name=visible src=password.html marginwidth=0 marginheight=0 scrolling=auto frameborder=0>
</frameset>
The "password.html" should have the Password Wizard code in it. It's what is displaying the Password Wizard login box.
Many Thanks
Rog
twelve.10@virgin.net wrote:
The "password.html" should have the Password Wizard code in it. It's what is displaying the Password Wizard login box.
Many Thanks
Rog
The "password.html" should have the Password Wizard code in it. It's what is displaying the Password Wizard login box.
Many Thanks
Rog
Hi!
I´m not sure if this is what you need, but please take a look at:
http://www.coffeecup.com/forums/topic-a … editor/579
If you write in the search box "Password Wizard" you will find many topics that can maybe help you.
Good hunting!
Eskil
cheers for reply
I need to know what i need to change or add to the below frameset code for it to work correctly, there doesnt seem to be an answer on here anywhere. At the moment this code will not direct to the protected page only stay on login page.
<frameset rows="*,100%" border=0>
<frame name=hidden src=hidden.html marginwidth=0 marginheight=0 scrolling=no frameborder=0>
<frame name=visible src=password.html marginwidth=0 marginheight=0 scrolling=auto frameborder=0>
</frameset>
I need to know what i need to change or add to the below frameset code for it to work correctly, there doesnt seem to be an answer on here anywhere. At the moment this code will not direct to the protected page only stay on login page.
<frameset rows="*,100%" border=0>
<frame name=hidden src=hidden.html marginwidth=0 marginheight=0 scrolling=no frameborder=0>
<frame name=visible src=password.html marginwidth=0 marginheight=0 scrolling=auto frameborder=0>
</frameset>
You must've missed #2 in the instructions:
http://www.coffeecup.com/password-wizar … e.230.html
Very important.
With the given code you mentioned, your password .swf must be in a file named "password.html" and then you have to paste javascript code in the pages that are redirected to from the password .swf:
<script language=javascript>
<!--
if (parent.frames.length==0)
window.location.replace("URL_to_Password_Page")
// -->
</script> http://www.flashstrap.com
http://www.lodipc.com
http://www.coffeecup.com/password-wizar … e.230.html
Very important.
With the given code you mentioned, your password .swf must be in a file named "password.html" and then you have to paste javascript code in the pages that are redirected to from the password .swf:
<script language=javascript>
<!--
if (parent.frames.length==0)
window.location.replace("URL_to_Password_Page")
// -->
</script> http://www.flashstrap.com
http://www.lodipc.com
Hello Adam.
Thanks for your reply.
No matter what I do with the frameset coding, when I log in through the applet, I just get directed back to the login applet page. never access the protected page, not even by entering the full address of the protected page.
As An Example
Say I have a login applet on www.mywebsite.com/login which goes to protected page www.mywebsite.com/protectedpage
What should I add or change to (the code below )for the login.html page?
Change the word hidden or password? Etc.
<frameset rows="*,100%" border=0>
<frame name=hidden src=hidden.html marginwidth=0 marginheight=0 scrolling=no frameborder=0>
<frame name=visible src=password.html marginwidth=0 marginheight=0 scrolling=auto frameborder=0>
</frameset>
Also what should I add or change to (the code below) for the protectedpage.html page? Do I put http://www.mywebsite.co.uk/login in place of ("URL_to_Password_Page"?)
<script language=javascript>
<!--
if (parent.frames.length==0)
window.location.replace("URL_to_Password_Page")
// -->
</script>
Many Thanks
Rog
Thanks for your reply.
No matter what I do with the frameset coding, when I log in through the applet, I just get directed back to the login applet page. never access the protected page, not even by entering the full address of the protected page.
As An Example
Say I have a login applet on www.mywebsite.com/login which goes to protected page www.mywebsite.com/protectedpage
What should I add or change to (the code below )for the login.html page?
Change the word hidden or password? Etc.
<frameset rows="*,100%" border=0>
<frame name=hidden src=hidden.html marginwidth=0 marginheight=0 scrolling=no frameborder=0>
<frame name=visible src=password.html marginwidth=0 marginheight=0 scrolling=auto frameborder=0>
</frameset>
Also what should I add or change to (the code below) for the protectedpage.html page? Do I put http://www.mywebsite.co.uk/login in place of ("URL_to_Password_Page"?)
<script language=javascript>
<!--
if (parent.frames.length==0)
window.location.replace("URL_to_Password_Page")
// -->
</script>
Many Thanks
Rog
Ok, I'll try to break it down:
1) Create "login.html" and paste this in the code:
<frameset rows="*,100%" border=0>
<frame name=hidden src=hidden.html marginwidth=0 marginheight=0 scrolling=no frameborder=0>
<frame name=visible src=password.html marginwidth=0 marginheight=0 scrolling=auto frameborder=0>
</frameset>
That's all you need for the login.html code. Save it, next file.
2) I didn't even create a hidden.html & it still worked for me (since hidden.html takes up 0% of the screen, you'd never even see it). Next file.
3) password.html contains the page with the .swf login file. You can do what you like to make it pretty, but this page has the .swf.
4) The link entered in the Password Wizard to redirect to contains the second part of code:
<script language=javascript>
<!--
if (parent.frames.length==0)
window.location.replace("URL_to_Password_Page")
// -->
</script>
You need to change "URL_to_Password_Page" to whatever your login in page is (in this case, it would be "password.html"). If the redirected page & login (password.html) page are in the same folders, no path needs to be entered, otherwise, you need to specify where it is like:
window.location.replace("http://www.mydomain.com/password.html").
I'll have to make a working example for all to see. Reply if you're still having trouble. Do note: it'd be best to test the page by closing your browser first since you may be browsing in the 100% frame w/o even realizing it. http://www.flashstrap.com
http://www.lodipc.com
1) Create "login.html" and paste this in the code:
<frameset rows="*,100%" border=0>
<frame name=hidden src=hidden.html marginwidth=0 marginheight=0 scrolling=no frameborder=0>
<frame name=visible src=password.html marginwidth=0 marginheight=0 scrolling=auto frameborder=0>
</frameset>
That's all you need for the login.html code. Save it, next file.
2) I didn't even create a hidden.html & it still worked for me (since hidden.html takes up 0% of the screen, you'd never even see it). Next file.
3) password.html contains the page with the .swf login file. You can do what you like to make it pretty, but this page has the .swf.
4) The link entered in the Password Wizard to redirect to contains the second part of code:
<script language=javascript>
<!--
if (parent.frames.length==0)
window.location.replace("URL_to_Password_Page")
// -->
</script>
You need to change "URL_to_Password_Page" to whatever your login in page is (in this case, it would be "password.html"). If the redirected page & login (password.html) page are in the same folders, no path needs to be entered, otherwise, you need to specify where it is like:
window.location.replace("http://www.mydomain.com/password.html").
I'll have to make a working example for all to see. Reply if you're still having trouble. Do note: it'd be best to test the page by closing your browser first since you may be browsing in the 100% frame w/o even realizing it. http://www.flashstrap.com
http://www.lodipc.com
"(in this case, it would be "password.html")" no in this case it would be login.html
Have something to add? We’d love to hear it!
You must have an account to participate. Please Sign In Here, then join the conversation.