Re: Working on a log in script to my webpage

2005-03-14 Thread Fuzzyman
Pete. wrote: > Hi all. > > Unfortunaly it looks like I dont have to skill to make a secure log in, cant > figure out how the code has to look like, so guess my webpage has to live > with a security issue. > > Thanks for the effort you put into teaching me the use of cookies. > I've written a

Re: Working on a log in script to my webpage

2005-03-11 Thread Joe
Pete, What web server are you using? Take a look at Apache and use digest authentication. The password is not sent in clear text and it's fairly easy to setup. Plus you won't have to do anything in your web pages. Once you setup digest authentication on the web server for the specified dire

Re: Working on a log in script to my webpage

2005-03-11 Thread Steve Holden
Pete: Don;t give up, load Webware or similar and use that! regards Steve Pete. wrote: Hi all. Unfortunaly it looks like I dont have to skill to make a secure log in, cant figure out how the code has to look like, so guess my webpage has to live with a security issue. Thanks for the effort y

Re: Working on a log in script to my webpage

2005-03-11 Thread Pete.....
Hi all. Unfortunaly it looks like I dont have to skill to make a secure log in, cant figure out how the code has to look like, so guess my webpage has to live with a security issue. Thanks for the effort you put into teaching me the use of cookies. Best wishes Pete "Pete." <[EMAIL PRO

Re: Working on a log in script to my webpage

2005-03-09 Thread Steve Holden
Pete. wrote: I better mention, that I rather make it all in python and html (found out that python somehow works with asp) I know that what I have to do is the following: 1) When the user logs in, I have to store a session ID in a cookie In actual fact it's best not to wait until the user log

Re: Working on a log in script to my webpage

2005-03-09 Thread Pete.....
Thanks. But I would really like to do this from scratch, so that I can learn it, I dont think I need that much more, before it works. I found an example with asp, where the save the session if the password is correct. It isnt that long a code, so was wondering if it isnt possible to make somet

Re: Working on a log in script to my webpage

2005-03-09 Thread Kent Johnson
Pete. wrote: Hi all I am working on a log in script for my webpage. I have the username and the password stored in a PostgreSQL database. You might want to look at Snakelets and CherryPy. Snakelets is "a very simple-to-use Python web application server." One of the features is "Easy user authe

Re: Working on a log in script to my webpage

2005-03-09 Thread Pete.....
solutions. >> all >> of these types of apps have functionality to deal with the user >> login/registration issues... >> >> -regards,,, >> >> >> -Original Message- >> From: [EMAIL PROTECTED] >> [mailto:[EMAIL PROTECTED] Behalf >

Re: Working on a log in script to my webpage

2005-03-09 Thread Pete.....
login/registration issues... > > -regards,,, > > > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Behalf > Of Pete..... > Sent: Tuesday, March 08, 2005 6:26 PM > To: python-list@python.org > Subject: Re: Working on a log in script t

Re: Working on a log in script to my webpage

2005-03-08 Thread Steve Holden
Pete. wrote: The 2 scripts I made is actually working the way they where meant to. So im kindda happy :) The problem is, that I didnt think about the problem: as Steve wrote: "There are other matters of concern, however, the most pressing of which is: How am I going to stop user from naviga

Re: Working on a log in script to my webpage

2005-03-08 Thread Pete.....
roach will give you a > better/faster solution to your problem. > > -regards > > > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Behalf > Of Steve Holden > Sent: Tuesday, March 08, 2005 4:02 PM > To: python-list@python.org > Su

RE: Working on a log in script to my webpage

2005-03-08 Thread bruce
PROTECTED] Behalf Of Pete. Sent: Tuesday, March 08, 2005 6:26 PM To: python-list@python.org Subject: Re: Working on a log in script to my webpage The 2 scripts I made is actually working the way they where meant to. So im kindda happy :) The problem is, that I didnt think about the problem: as S

Re: Working on a log in script to my webpage

2005-03-08 Thread Pete.....
> How am I going to stop user from navigating directly to page1? > > Answering this question will involve learning about HTTP session state and > writing web applications. I could write a book on that subject :-) > > regards > Steve > Thanks Steve And yes I havnt thought about that, guess I

RE: Working on a log in script to my webpage

2005-03-08 Thread bruce
will give you a better/faster solution to your problem. -regards -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Steve Holden Sent: Tuesday, March 08, 2005 4:02 PM To: python-list@python.org Subject: Re: Working on a log in script to my webpage Pete

Re: Working on a log in script to my webpage

2005-03-08 Thread Steve Holden
Pete. wrote: Hi all I am working on a log in script for my webpage. I have the username and the password stored in a PostgreSQL database. The first I do is I make a html form, where the user can type in his username and code, when this is done I want to run the script(testifcodeisokay) that v