Tagged Questions
6
votes
3answers
303 views
Best way to stop a single person from creating multiple accounts
I'm creating a game currently and I want to limit one account per person. I have a lot of families that want to play and I can't think of a way to decipher families from cheaters.
The way I'm ...
4
votes
2answers
380 views
Subdomains and Logins
If you multiple subdomains e.g.:
sub1.domain_name.com
sub2.domain_name.com
Is there a way to have a user be able to log into both of these without issues and double login issue?
The ...
1
vote
1answer
62 views
Restrict multi login in CakePhp
I have a mission to limit multi login on site(f.e. login from different computers under same username). My PM want to do this with saving session id. How I can do it? I have idea to save flag to ...
1
vote
6answers
373 views
best login management solution without database - php
Can anybody suggest me a simple and best solution to manage user logins (username & password) in a private network (localhost) web page without setting up a mysql or any such database systems?? I ...
1
vote
1answer
20 views
Logged out sidebar weirdness
When I'm logged in to my site, viewing an individual post, the right sidebar displays perfectly, but when I log out on the same page (via the sidebar widget), the right sidebar suddenly ends up below ...
1
vote
2answers
103 views
Windows XP/Windows 7 and Windows Servers login page
I would like to have a windows form application to popup right before when the user enters his or her windows credentials. If the validation in that particular windows form is successful then I want ...
1
vote
1answer
829 views
I have a Login Control.Even after successful Login it does not redirects to destination page
I have a ASP.NET Login Control with Forms authentication.Even after successful Login it does not redirects to destination page.But it uses returnURL and stays at same Login page.How to make Login ...
1
vote
1answer
109 views
One user at a Time
I am trying to implement that only one user can login with given credentials.
I check this at the time of login with this code :
MembershipUser objectUser = Membership.GetUser(Login1.UserName);
...
1
vote
1answer
176 views
How to implement a good system for login/out into a webapp
I am one of the developers at PassPad, a secure password generator and username storage system. We're still working on it, but I have a few questions on the best way to implement a secure login/out ...
1
vote
5answers
465 views
Disabling Forward and Back Buttons + php
I have been almost finished (well i thought i finished) writing this login page in php. Everything works fine when the user enter in the details and presses the login button.
But after the user ...
0
votes
1answer
18 views
Authentication levels and for specific people
Is it possible to have login levels with the facebook authentication? Also, is it possible to only give permission to login in my website if you meet certain requirements, like for example being in a ...
0
votes
2answers
96 views
Implementing User Accounts into Login System Php
I want to establish and ENFORCE user permissions on my website.
I have two user groups: buyers and merchants.
For example, for buyers I have (under /login/ dir):
<form method="post" ...
0
votes
1answer
25 views
Directory Application Security
So, I have two types of users who may login or register: merchants or buyers.
When I login as a buyer, using: action="check_buyer.php", it redirects me to login/buyer/ on my website. But, right now, ...
0
votes
2answers
326 views
ASP.NET Login/Membership - How to logout?
I am using the <asp:LoginStatus> control (along with <asp:Login>)
I login successfully as A.
Then I logout.
If I then login as B, the current user is still A.
(Both <asp:LoginName> ...
0
votes
1answer
245 views
Symfony 2 login redirects back to the login page
I have a Symfony 2 application installed and I'm trying to use the security bundle and a user entity to deal with the login. When I try yo view the /about page I get redirected to the login page and ...
0
votes
1answer
214 views
mvc entity framework : login using a database
I have created a database in Microsoft sql server express. I need to be able to login on Mvc 2 app, using my database ( not the one existing on AcountController meaning MembershipService )
I just ...
0
votes
1answer
191 views
ASP.net - Own login module or built in?
I'm creating a website in ASP.net and using a MySQL database. What would you guys suggest I do?
Build my own login system with SQL Injection check
Built in login control using a compliant membership ...
0
votes
3answers
238 views
Maintaining a single logged user into an account in php
I want to make a login system using PHP and MySQL and do it in such a way that every-time only one person is logged into my system at any point of time. If the same user logs in on another ...
0
votes
1answer
257 views
ASP.net login control design
I've tried looking for this but can't find anything:
<asp:Login id="Login1" runat="server"
TitleText=""
CreateUserText="<br />Register a new account"
...
0
votes
2answers
639 views
Adding more textboxes to an asp:login control
I am using ASP.NET 4.0 WebForms and making use of the control. However I want to add 3 textboxes, email, password and dateofbirth. email and password come standard as username and password, but if I ...
0
votes
2answers
723 views
Can I put custom code into the standard DotNetNuke Login?
Where can I find the function that handles the login for DNN? I would like to add custom features to the login and I don't see the function in Login.ascx.vb (unless I missed it).
There is a tag and ...
-1
votes
2answers
361 views
LoginStatus control in asp.net
Any one help me out, how to work with LoginStatus control in asp.net...
the statu before login should be 'userlogin'
after logged in ,it automatically changes to 'userlogout'
any suggestions??
-2
votes
1answer
47 views
Picture Password Source [closed]
Is it possible to recreate the picture password as a login mechanism for your .NET application? Or is there some law stating it cant be done because you'll get sued?
...
-2
votes
2answers
86 views
Problem with PHP Login
I'm a newcomer to PHP and am trying to do a login/session for a user. I keep getting errors. Any Help would be greatly appreciated.
<?php session_start();
include('./config.php');
...