Re: Tutorial for Livecode Server log in system

2024-03-27 Thread Bob Sneidar via use-livecode
As an aside, I do store passwords, but I encrypt them first using a method only I know about. However I am not using a web portal, so there’s that. Bob S On Mar 27, 2024, at 3:44 PM, Tim Selander via use-livecode wrote: Dear Alex and Pere Thank you both for your code and and the time you

Re: Tutorial for Livecode Server log in system

2024-03-27 Thread Tim Selander via use-livecode
Dear Alex and Pere Thank you both for your code and and the time you took to help! I'm am working through the code you sent, studying out how it works. Great learning experience. Also, Alex, your point of not using password log ins is a philosophical re-frame in my thinking! Thank you!

Re: Tutorial for Livecode Server log in system

2024-03-26 Thread Alex Tweedly via use-livecode
Hi Tim, I guess my first response would be - don't. Specifically, don't store or use passwords. Users have a bad habit of re-using the same passwords, so even if your site has no personal or valuable info about your users, the fact that passwords get re-used means you are storing valuable

Re: Tutorial for Livecode Server log in system

2024-03-26 Thread pere xavier Rossello via use-livecode
cont ( make mistakes pushing tab on keyboard) full scrip " put "window.location='index.html?_e=Error_sin_login';" put "" end if retrive pass from database put revOpenDatabase ("mysql", "localhost:3363","reparacion","gsmmax","11*Endimion_grd") into gDbId put "select

Re: Tutorial for Livecode Server log in system

2024-03-26 Thread pere xavier Rossello via use-livecode
Hi. To make online log in is quit easy in livecode. first you need a webpage with a form asking username, email and password ) and submit to a livecode script Log in --- method can be to types get or post - normally I use Get this will send username

Tutorial for Livecode Server log in system

2024-03-25 Thread Tim Selander via use-livecode
Hi all. As a hobbiest/amateur I continue to plunk away with Livecode, mostly the server product in my on-rev account. Can anyone point me to a tutorial or sample of an online log in system (username, email and password) for a website using Livecode? I've found some php tutorials, and