473,657 Members | 2,851 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Secure Login

Does anyone have the source, class, or link for a secure login using
sessions? Preferably with MySQL. Any help would be greatly appreciated.
Thank you very much.

Nov 9 '06 #1
6 1583
sintacks wrote:
Does anyone have the source, class, or link for a secure login using
sessions? Preferably with MySQL. Any help would be greatly appreciated.
Thank you very much.
No links. Something like this is very easy. When I need it I just
write my own - it's only a few lines of code.

Much faster than trying to find a script then adapt it to my needs. I
generally would end up rewriting a large part of the code anyway.

--
=============== ===
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attgl obal.net
=============== ===
Nov 10 '06 #2
Why not PEARs: http://pear.php.net/

"Jerry Stuckle д
"
sintacks wrote:
Does anyone have the source, class, or link for a secure login using
sessions? Preferably with MySQL. Any help would be greatly appreciated.
Thank you very much.

No links. Something like this is very easy. When I need it I just
write my own - it's only a few lines of code.

Much faster than trying to find a script then adapt it to my needs. I
generally would end up rewriting a large part of the code anyway.

--
=============== ===
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attgl obal.net
=============== ===
Nov 10 '06 #3
sintacks wrote:
Does anyone have the source, class, or link for a secure login using
sessions? Preferably with MySQL. Any help would be greatly appreciated.
Thank you very much.
I used this article as the basis for my security system:
http://www.devshed.com/c/a/PHP/Creat...-Login-Script/

I didn't use any of the actual code, so I can't vouch for it, but the
ideas discussed did help guide me as I wrote my own user authentication
system.

Nov 10 '06 #4
feelinglucky wrote:
Why not PEARs: http://pear.php.net/

"Jerry Stuckle д
"
>>sintacks wrote:
>>>Does anyone have the source, class, or link for a secure login using
sessions? Preferably with MySQL. Any help would be greatly appreciated.
Thank you very much.

No links. Something like this is very easy. When I need it I just
write my own - it's only a few lines of code.

Much faster than trying to find a script then adapt it to my needs. I
generally would end up rewriting a large part of the code anyway.

--
============= =====
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@att global.net
============= =====

Takes longer to install that it does to write the code in the first
place. Then you still have to write the PEAR code, which takes just as
long as it does without PEAR.

PEAR is good for a number of things. But it's huge overkill for a
simple authentication/authorization mechanism.

--
=============== ===
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attgl obal.net
=============== ===
Nov 10 '06 #5
you are absolutely correct. and even though i am a beginner, i could
probably program something like this quicker than installing one.
However, for me...installing a preprogrammed one also gives me added
functionality that i would not have thought of thus teaching me as
well. But you are absolutely correct if i had a higher understanding of
these concepts.

On Nov 10, 8:21 am, Jerry Stuckle <jstuck...@attg lobal.netwrote:
feelinglucky wrote:
Why not PEARs:http://pear.php.net/
"Jerry Stuckle 写道:
"
>sintacks wrote:
>>Does anyone have the source, class, or link for a secure login using
sessions? Preferably with MySQL. Any help would be greatly appreciated.
Thank you very much.
>No links. Something like this is very easy. When I need it I just
write my own - it's only a few lines of code.
>Much faster than trying to find a script then adapt it to my needs. I
generally would end up rewriting a large part of the code anyway.
>--
============== ====
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstuck...@attg lobal.net
============== ====Takes longer to install that it does to write the code in the first
place. Then you still have to write the PEAR code, which takes just as
long as it does without PEAR.

PEAR is good for a number of things. But it's huge overkill for a
simple authentication/authorization mechanism.

--
=============== ===
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstuck...@attgl obal.net
=============== ===
Nov 10 '06 #6
sintacks wrote:
Does anyone have the source, class, or link for a secure login using
sessions? Preferably with MySQL. Any help would be greatly appreciated.
<news:11******* *************** @z14g2000cwz.go oglegroups.com(
http://groups.google.com/group/comp....0fad0eef59415a )

--
<?php echo 'Just another PHP saint'; ?>
Email: rrjanbiah-at-Y!com Blog: http://rajeshanbiah.blogspot.com/

Nov 11 '06 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

7
3439
by: ojorus | last post by:
Hello! I want to make a login system as secure as possible on a website I develop. * The user shall log on using a Username and a password (which is stored in a mySQL database) *The server which I use to run my application has "register_globals" activated (set to "on"), so that has to be taken into concideration *The system should be secure even if the user do not click "log out" when he is finished. (Users often just close the browser...
6
3130
by: Sarah Tanembaum | last post by:
I was wondering if it is possible to create a secure database system using RDBMS(MySQL, Oracle, SQL*Server, PostgreSQL etc) and web scripting/programming language(Perl, PHP, Ruby, Java, ASP, etc) combination? I have the following in mind: I wanted to store all my( and my brothers and sisters) important document information such as birth certificate, SSN, passport number, travel documents, insurance(car, home, etc) document, and other...
3
2111
by: Aaron | last post by:
Hey, I have a question about how secure the following will be.... I want to have a login form that posts to itself, so when it loads it checks if there is a username and password on the query list. If there is not, it asks for one. If there is, it checks to see if the information is valid. If it is not valid, it deletes the attributes and calls itself again.
18
2459
by: | last post by:
Please help. After a number of wrong turns and experiments I need advice on login management system to secure our web pages without inconveniencing our visitors or our internal staff. What I need: A system whereby the user only has to register ONCE and he will have automatic entry to ANY page without havinto to RE-LOGIN even if he comes in
6
4819
by: Billy Jacobs | last post by:
I have a website which has both secure and non-secure pages. I want to uses forms authentication. How do I accomplish this? Originally I had my web.config file in the root with Forms Authentication set up and it worked just fine. Then I realized that I needed to have some pages unsecure. I then created 2 directories. One named Secure and the other named Public. I placed my web.config file in my
1
2145
by: sharp2037 | last post by:
Hi Everyone, I am working on an ASP.net application and I have a homepage to which everyone visits of course and on that front page I have a user ID and password box and a login button. What I don't understand is some sites I visit don't use SSL on the login page. Instead you visit the homepage and there is no padlock. Then you type in your user ID and password and then click login and then it redirects to a secure area.
0
1477
by: Holly | last post by:
I copied this code that works to connect into Unix. I am looking for a way to get it to work with a secure Unix box. Anyone have any insights on how to do this? I am trying to build an sftp service. Thanks Holly Imports System Imports System.Net Imports System.IO
14
4910
by: knal | last post by:
Hi there, I'm looking for a secure login script for a sort-of-community site... (PHP, MySQL, sessions, or maybe something else ... ) I know there are a lot of scripts out there, but none of them really seem secure, or have other kind of flaws (like IP based login etc.). Why i'm asking here, is because there's experience out there, and i hope experience can tell me what my best shot is. I'm aware that i will very probably have to do...
2
1838
by: raknin | last post by:
Hi, I am looking for a close package of secure login and registeration written in PHP.The package that I am looking for should have the following functionality I believe this is standard functionality today: Login: 1. User enter user name and passsword 2. Forgot your password 3. Remember me on this computer
8
2863
by: Harris Kosmidhs | last post by:
Hello, while I'm developing sites for some time I never coded a login form with security in mind. I was wondering what guidelines there are. For my point of view I'm thinking of using md5 passwords (it's an one way function right?) in db. Is this a correct approach?
0
8385
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, well explore What is ONU, What Is Router, ONU & Routers main usage, and What is the difference between ONU and Router. Lets take a closer look ! Part I. Meaning of...
0
8821
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8602
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
6162
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupr who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5632
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4150
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
2726
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
1941
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1601
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.