login

Zend Authentication Problem with subdomain

I am working on a project using zend framework, php, mysql on ubuntu. I have created hostname test.dev on my local machine and using zend authentication. When an user is authenticated using zend authentication, I set session variable for logged in user id. I use this session variable(userid) on different pages to sure authentication. ...

UML based Web Modelling: model the login process?

I am trying to model a web site project with UML. My question: in Use Case and Activity diagrams, should I model the login process (and if so, how)? Looking around, I didn't find a consistent answer to this question. Some people say we should no show the login as any part of the system, neither in Use Case nor in Activity diagrams; some ...

problem with login page ruby on rails

Hi I'm following a tutorial: http://visionmasterdesigns.com/tutorial-create-a-login-system-in-ruby-on-rails/ to create a login page when I try to do this part: def authenticate 02. #User.new(params[:userform]) will create a new object of User, retrieve values from the form and store it variable @user. 03. @user = User.ne...

oracle express sytem Invalid Login Credentials

i just installed oracle express, im trying to login at database homepage. trying with user sys and system with the password i gave at the installation but i cant log in. message: Invalid Login Credentials at sql command line trying to connect ora-01017 invalid username/password; logon denied i dont know how to modify the password or jus...

Why is ASP.net forms authentication logging me off (when not connecting directly on my box)?

I've got an ASP.net 2.0 application on my server at work. When I'm on the box and browsing (either http://serverName or http://localhost) the site I can login with forms authentication and navigate the site with no trouble. The instant I browse that server from my intranet I can still login, but anytime I click any links on the homepag...

Login via cURL to Javascript Page?

Hey guys, I'm having some trouble devise a script which attempts a login to a billing portal (Freshbooks) using cURL. I've seen various examples of this online (http://www.trap17.com/index.php/automatic-login-curl%5Ft38162.html) however, none of these examples would with JavaScript. The login page seems to be based on JavaScript and jq...

how to create a secure login with ASP.NET and MySql.

coming from php and Mysql i know how its best done in php but im not realy sure were to start with ASP.NET, can anyone give me any pointers? ...

How to make multilingual login in django?

Hello, I need to create multilingual website. But there is a problem with the login address. Do you know, how I can have /login/ for EN and /prihlasit/ for CS, etc... ? I can specify just one login url in my settings.py ...

What methods can I use to rearrange the order of javascript function execution?

How to rearrange javascript function execution order independent of include order. A question that assists, but doesn't completely answer my question: Can you have multiple $(document).ready(function() sections? (The answer is yes, and they execute in the order that they are added to jQuery.ready()). I am trying to make my javascript ...

http or https authentication for Intranet Web applications

I’m developing an Intranet application and I want to make a secure authentication. One approach can be use “https”. The problem is that the server doesn’t have a trusted certificate, therefore is a bit annoying for the client because the browser doesn’t trust in the certificate and complaints with a scary message. Using http will com...

session expiring and giving error page

My application is throwing an error when the session expires. I dont want the sessions to expire automatically.... but if there is no way to do that then instead of showing the error it should be redirected to the login page... I tried to do this.... Response.AppendHeader("Refresh", Convert.ToString((Session.Timeout * 60) + 10) + "; ...

How do I hook into the Wordpress login system to stop some users programmatically?

Hello folks, I am working on a Wordpress based portal which integrates with a custom-made e-commerce. The e-commerce serves also as a 'control panel': all the roles are set up there. Some users are recorded but 'inactive'; they shouldn't be able to log into Wordpress. For this reason I need to hook into the Wordpress login system. If ...

Login pages that expire

Some web sites (notably some email clients) have log-in pages that expire (after 2 minutes). What is the reason for login pages that expire? ...

need a help with TEdit

hello all I am making login system , I successed all the way but ,i want abit more professional ,in my login system ,when user enters password in his password edit box ,i want to convert them as * but i want real data what they types to test their authentication and i want to make save this account ,how can i do that example than...

Php Login Issue (Users cannot login and users can use others passwords to access their own accounts)

Ok so here is my issue, Some users cannot login to their accounts. They enter in their password and username properly but it just doesn't seem to work. and secondly I noticed that a few of the users can log into any account they want with their own password and not the password of the original account. using MYSQL, and PHP5. /*Login ...

Spring Security: Cannot access target page even after successful login

Spring version: 2.5.6 SEC01 Spring Security version: 3.0.0 RC1 I'm attempting to integrate Spring Security with a Spring MVC application. The security part is largely based on the example applcation that ships with Spring Security. I've defined some pages that require a specific role to access them and as expected, when accessing them w...

Display WebPart controls if user is logged in - ASP.NET 3.5

I know it's possible to use the LoginView code to display content when the user is logged in. But I am trying to do this with a webpart control, but when I do this with the drop down list for picking the Browse, Design and Catalog menu, the VB code is still trying to look for the dropdownlist. But because I'm not yet logged in, the dro...

Java AJAX webapp security

I'm experimenting with creating a simple AJAX Java webapp. I'd like to use the container managed security provided by the Servlet container, but having investigated it have a feeling that it isn't going to work how I'd like it to. Basically I'd like to be able to have a login prompt on the main page, without the user having to navigate...

is this a safe/good way to implement login with ajax?

Hi I have created the code below to check if a user is valid to login to a database, I am using SSL to secure the connection, but I dont know if this is still a good way in which I have done it. Could anyone give advice? Thanks. (sorry its abit long) <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/...

Session Variables, Hidden Fields and Tables

Ok, would this work? When a user logins a session variable is created. Then using the session variable I am able to put into a hidden field the correct user's ID number. The hidden field is in a form that allows the user to add comments. So from the hidden field the user ID is added to the 'comments' table from the 'users' table? Tha...