Questions tagged as 'login'

1
answer

Facebook login php Auth returning dialog / oauth? client_id in url

I am making my application for login on Facebook, however it returns with GET in url ?code=etc... Before it was working normally, I use Facebook's class . See: $facebook = new Facebook(array( 'appId' => APP_ID,...
asked by 23.02.2015 / 01:33
1
answer

How to destroy a session in java?

To invalidate a session, my teacher passed the following code: HttpSession session = request.getSession(false); if (session!=null){ session.invalidate(); } But after logout, when I click Back in the browser, I can retrieve...
asked by 15.04.2016 / 00:12
2
answers

PHP Logout with CodeIgniter

I'm having a problem logging out my system until it is logging out correctly and destroying the sessions, but if the user clicks the back button of the browser it returns to the previous page of the system where all data is displayed again . The...
asked by 03.02.2016 / 12:35
2
answers

How to make a user in SQL Server 2008 only view a VIEW?

I made a View to send to a client, but I can not pass the general login and password for it. That way I created a user ( cliente_view ) and I would like it to only view the created View (sales_view_view). How to do this process...
asked by 26.06.2017 / 13:29
1
answer

In Django why is the is_authenticated method always returns True?

I saw that in the documentation it indicates the is_authenticated method as being responsible for telling the templates if there is a logged in user. I also saw in the method code that it contains only the following: def is_authenticate...
asked by 19.02.2015 / 01:09
1
answer

Authenticate user efficiently and quickly (without setbacks, Identity x Manual)

I need to create a fun system that uses a validation (user, password). I have experience with WebForm, I have already studied a bit of MVC but I still do not feel safe to create a complete application with MVC. For the validation I thought...
asked by 18.08.2015 / 22:36
1
answer

Login does not work

First time here, I got a code ready adapted for my college work, however the login does not verify, accept anything that you put. Create login <div id="nav"> <div id="sup_direito"> <div id="login">...
asked by 14.06.2016 / 06:13
2
answers

Best way to make a script to logout

I am developing a system in which it is accessed with the login and password, once logged in the user has the option to log out, below my script: if(isset($_SESSION['logado'])){ session_destroy(); header("Location:index.php"); } I w...
asked by 01.09.2014 / 05:14
1
answer

Login with Android PHP and Mysql

Hello! Following a tutorial I created an app that includes registration and login with PHP and MYSQL android, the registration works perfectly, except that in the login part when the inserted data is correct instead of taking me to another scree...
asked by 14.08.2017 / 17:27
2
answers

UPDATE giving error but updates database

IamcreatingaloginpagewhereIneedtowritetotheMySQLdatabasethedateandtimetheuserwasloggedin.InthedatabaseIhaveatablesomethinglikethis:____________________________________________________|nome|login|senha|login_on|----------------------------------...
asked by 22.07.2016 / 21:42