Networking Forums

Networking Forums > Computer Networking > Linux Networking > Creating a Password page similar to the kind found on Yahoo Mail

Reply
Thread Tools Display Modes

Creating a Password page similar to the kind found on Yahoo Mail

 
 
ericcvt
Guest
Posts: n/a

 
      07-11-2004, 01:13 PM
I have been running The Apache Serve on Fedora 1 successfully for
about six months. I've become okay in using Perl and Mysql to create a
number of beneficial applications for myself. But now I want to do
more advanced things. The teachers at the school I work at like many
of the apps I've created. So now I want to create a password page
similar to something found on Yahoo and other sites where the user is
able to create their own user name and password to access services
that such sites offer. I know how to setup user accounts myself. I
have searched bookstores and the Amazon site under Linux Webhosting,
but found nothing that meets my needs. In the books that I have and
glimpsed over in bookstores, the admin always issues the user name and
password. This is fine when only a few people want to access the site
but when twenty or more people want access it becomes tedious creating
user names and passwords over and over.
 
Reply With Quote
 
 
 
 
George Hewitt
Guest
Posts: n/a

 
      07-11-2004, 03:55 PM

> I have been running The Apache Serve on Fedora 1 successfully for
> about six months. I've become okay in using Perl and Mysql to create a
> number of beneficial applications for myself. But now I want to do
> more advanced things. The teachers at the school I work at like many
> of the apps I've created. So now I want to create a password page
> similar to something found on Yahoo and other sites where the user is
> able to create their own user name and password to access services
> that such sites offer. I know how to setup user accounts myself.


Are we talking Unix accounts, or special accounts for the website in
question, completely independent of the system?

If its the latter, then I can't help you with the precise code since I don't
know Perl, but PHP is very good at this sort of thing, and very easy to
learn.

The flow goes something like this.

***
User visits website
Clicks REGISTER link, is taken to register form
Enters details into register form
Form is submitted, details are entered into MySQL table [INSERT into
tblUsers (username,password,realname,address) values (a,b,c,d)]
You'd then use cookies or similar to log the user into the site (PHP
sessions are good here)
In the code of each page, you could say (pseudo) "if the user is logged in,
display the page, else, give a link to the login page"
***

Hope this give you an idea of what's needed. Try tapping some keywords into
Google for Perl specifics. If you want some help with PHP implementations,
then post back and I can help you futher.

HTH.. and btw, this is probably OT ;-)


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.718 / Virus Database: 474 - Release Date: 09/07/2004


 
Reply With Quote
 
Michael Heiming
Guest
Posts: n/a

 
      07-11-2004, 04:52 PM
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
NotDashEscaped: You need GnuPG to verify this message

In comp.os.linux.networking ericcvt <(E-Mail Removed)> suggested:
> I have been running The Apache Serve on Fedora 1 successfully for
> about six months. I've become okay in using Perl and Mysql to create a
> number of beneficial applications for myself. But now I want to do
> more advanced things. The teachers at the school I work at like many
> of the apps I've created. So now I want to create a password page
> similar to something found on Yahoo and other sites where the user is
> able to create their own user name and password to access services
> that such sites offer. I know how to setup user accounts myself. I


You could take a look at cgi.resourceindex.com or alike, they
probably have one or another perl .cgi you could use/enhance
until it meets your needs.

Good luck

--
Michael Heiming (GPG-Key ID: 0xEDD27B94)
mail: echo (E-Mail Removed) | perl -pe 'y/a-z/n-za-m/'
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.1 (GNU/Linux)

iD8DBQFA8XBMAkPEju3Se5QRAgt8AJ4ssAtxfD95rvzieeyKKg j3NK4PMQCfW9Zz
qAB6YSJpTO/0qBKuFr9J6+A=
=PXL2
-----END PGP SIGNATURE-----
 
Reply With Quote
 
ericcvt
Guest
Posts: n/a

 
      07-12-2004, 07:17 PM
Michael Heiming <michael+(E-Mail Removed)> wrote in message news:<dr78s1-(E-Mail Removed)>...
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
> NotDashEscaped: You need GnuPG to verify this message
>
> In comp.os.linux.networking ericcvt <(E-Mail Removed)> suggested:
> > I have been running The Apache Serve on Fedora 1 successfully for
> > about six months. I've become okay in using Perl and Mysql to create a
> > number of beneficial applications for myself. But now I want to do
> > more advanced things. The teachers at the school I work at like many
> > of the apps I've created. So now I want to create a password page
> > similar to something found on Yahoo and other sites where the user is
> > able to create their own user name and password to access services
> > that such sites offer. I know how to setup user accounts myself. I

>
> You could take a look at cgi.resourceindex.com or alike, they
> probably have one or another perl .cgi you could use/enhance
> until it meets your needs.
>
> Good luck
>
> --
> Michael Heiming (GPG-Key ID: 0xEDD27B94)
> mail: echo (E-Mail Removed) | perl -pe 'y/a-z/n-za-m/'
> -----BEGIN PGP SIGNATURE-----
> Version: GnuPG v1.2.1 (GNU/Linux)
>
> iD8DBQFA8XBMAkPEju3Se5QRAgt8AJ4ssAtxfD95rvzieeyKKg j3NK4PMQCfW9Zz
> qAB6YSJpTO/0qBKuFr9J6+A=
> =PXL2
> -----END PGP SIGNATURE-----


WoW!!!!, Mike. cgi.resourceindex.com has a ton of scripts. Thanks for
suggesting it.
 
Reply With Quote
 
ericcvt
Guest
Posts: n/a

 
      07-12-2004, 08:01 PM
Michael Heiming <michael+(E-Mail Removed)> wrote in message news:<dr78s1-(E-Mail Removed)>...
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
> NotDashEscaped: You need GnuPG to verify this message
>
> In comp.os.linux.networking ericcvt <(E-Mail Removed)> suggested:
> > I have been running The Apache Serve on Fedora 1 successfully for
> > about six months. I've become okay in using Perl and Mysql to create a
> > number of beneficial applications for myself. But now I want to do
> > more advanced things. The teachers at the school I work at like many
> > of the apps I've created. So now I want to create a password page
> > similar to something found on Yahoo and other sites where the user is
> > able to create their own user name and password to access services
> > that such sites offer. I know how to setup user accounts myself. I

>
> You could take a look at cgi.resourceindex.com or alike, they
> probably have one or another perl .cgi you could use/enhance
> until it meets your needs.
>
> Good luck
>
> --
> Michael Heiming (GPG-Key ID: 0xEDD27B94)
> mail: echo (E-Mail Removed) | perl -pe 'y/a-z/n-za-m/'
> -----BEGIN PGP SIGNATURE-----
> Version: GnuPG v1.2.1 (GNU/Linux)
>
> iD8DBQFA8XBMAkPEju3Se5QRAgt8AJ4ssAtxfD95rvzieeyKKg j3NK4PMQCfW9Zz
> qAB6YSJpTO/0qBKuFr9J6+A=
> =PXL2
> -----END PGP SIGNATURE-----


Thanks for the suggestions. Whatever you have to offer would be fine,
George. I know PHP a little. I just never devoted alot of time to it.
Maybe now I'll try to learn more about it.
 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
OT: Yahoo Mail JC Broadband 2 03-11-2007 09:49 PM
What kind of mail-send authentication: Win-Outlook ? news@absamail.co.za Linux Networking 5 03-16-2006 05:34 PM
BT YAHOO BROWSER PROBLEM..page cannot be displayed sometimes bt_mc Broadband 3 12-19-2005 08:14 PM
Pocket PC: Page Cannot be Found Mac Broadband Hardware 0 05-30-2004 03:34 PM
Page not found Daniel Tan Windows Networking 1 11-14-2003 04:48 PM



1 2 3 4 5 6 7 8 9 10 11