Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
3answers
807 views

Building a simple RESTful api

I'm wanting to make an API quickly, following REST principles - for a simple web application I've built. The first place the API will be used is to interface with an iPhone app. The API only needs ...
6
votes
3answers
2k views

CakePHP: Clearing password field on failed submission

Greetings, I am setting up a pretty standard registration form with password field. The problem is, after a failed submission (due to empty field, incorrect format etc), the controller reloads the ...
6
votes
2answers
726 views

django auth User truncating email field

I am having an issue with the django.contrib.auth User model where the email max_length is 75. I am receiving email addresses that are longer than 75 characters from the facebook api, and I need to ...
5
votes
1answer
258 views

Override UserManager in django

How can I use a custom manager for the auth_user class in django? In my django project, I'm using auth_user and I have a basic profile class. In every page of my site, I use some user and profile ...
5
votes
1answer
212 views

facebook auth problem with tipfy 1.0b

I'm trying to mimic the login page from the example http://tipfy-auth.appspot.com (source http://code.google.com/p/tipfy/source/browse/examples/auth/app/) without success. I seem to run in to problem ...
5
votes
1answer
3k views

How to use Basic Auth and Jquery and Ajax

i am trying to create a basic auth through browser, but i cant really get there. If this script wont be here the browser auth will take over, but i want to tell the browser that the user is about to ...
5
votes
1answer
767 views

AuthComponent: Difference between allowedActions and allow()?

What is the difference between using AuthComponent::allowedActions and AuthComponent::allow? When I Google, I see the majority of examples and documents using or talking about allow(), but only a few ...
4
votes
1answer
208 views

Is PEAR Auth really a viable option for PHP authentication?

Looking at Help me make my password storage safe, the best way to encrypt passwords is using phpass. I want to use PEAR Auth package for authentication, but PEAR only supports md5, sha1, sha256, ...
4
votes
1answer
182 views

How do I log a user in using repoze.who?

I have a working repoze.who/what setup (on a Pylons app). I now want to automatically log new users in after signup, without them having to use the login form. I've browsed the repoze.who docs and ...
4
votes
2answers
396 views

Kerberos and/or other authentication systems - One time logon for all PHP scripts

I'm managing a set of web apps, almost exclusively written in PHP, and would like to find an authentication platform to build a role-based authorization system on top of. Also, I'd like the ...
4
votes
3answers
930 views

Anyone think django's user model is too tightly coupled with auth?

I'm trying to learn Django and I would like feedback from anyone who has any MVC/MTV/PHP/Ruby framework experience. Does anyone find that the user model is too tightly coupled with auth? Background: ...
3
votes
1answer
120 views

Get django-registration and django-profile working together

I am in process to setting up a new django project and I want to use the provided apps django-registration and django-profile. I installed both of them with easy-install and managed to get the ...
3
votes
2answers
314 views

django-registration, django.contrib.auth login and user “is active” flag

I'm using django 1.1. the docs http://docs.djangoproject.com/en/1.1/topics/auth/#topics-auth on the is_active flag it says This doesn’t control whether or not the user can log in. Nothing in the ...
3
votes
1answer
324 views

CI: Ion Auth Error randomly appears sometimes and I can't figure out why

I get the following error when using Ion Auth with Code Igniter 2.0 and PHP 5.2 ErrorException [ Notice ]: Undefined property: Practice::$ion_auth SYSDIR/core/Model.php [ 50 ] and here is the code ...
3
votes
1answer
245 views

How to use form-based authentication with jQuery and Ajax?

I am trying to fake bypass the browser basic authentication, and I don't really understand how this works. I've seen some ways people deal with this basic authentication. Basically the browser is ...
3
votes
3answers
4k views

How to build a RESTful API?

The issue is this: I have a web application that runs on a PHP server. I'd like to build a REST api for it. I did some research and I figured out that REST api uses HTTP methods (GET, POST...) for ...
3
votes
4answers
968 views

CakePHP Auth Component Check User Before Login

I want to prevent banned users from logging in to the site and give them a message that they are banned. I tried to use isAuthorized() for this but it allows the user to login and only after that ...
3
votes
1answer
119 views

Showing auth_message's

After installing django_message I noticed django has a nice little notification system build-in (Being: Auth_message). I was wondering how can I show them to users? They only appear in the admin panel ...
3
votes
1answer
494 views

Work with protocol OAuth without browser?

I am a developer a large social network. Does the protocol OAuth without browser? I plan to write desktop and mobile applications that can not use your browser to get access_token. It worries me step ...
3
votes
2answers
697 views

What is the safest algorithm in Kohana's auth module?

I'd prefer to use the crypt function and use blowfish encryption, but the current implementation of this module uses the hash function, which doesn't offer this encryption method. So, what is the ...
2
votes
1answer
42 views

Python- how to authenticate with MYSQL [chat database]

I'm scripting a chat program in python... I'm on chatting program auth but don't know how to script authentication on python-mysql. How can I authenticate with mysql using python?
2
votes
0answers
91 views

Can't see the new advanced auth dialog with my dev and test users

I'm trying to get Facebook's new Enhanced Authorization dialog to appear for my dev/test users, and it's been really problematic. When the Enhanced Authorization dialog doesn't appear, I can't get the ...
2
votes
1answer
81 views

Access cakephp session (auth) from outside cakephp

I have a CakePHP website with its own login system using the Auth component. I would like to know if the following is possible: A user has logged in and is navigating the website. At one point, he ...
2
votes
1answer
31 views

Able to setcookie in localhost but not in remote site

I'm just now started to learn php. The following code in php runs in localhost and I can see the cookie in localhost. But not in the remote host. The site I uploaded the same php file is ...
2
votes
1answer
40 views

The best way to manage zend roles for various user roles

I have resources to which I want to bind visibility for many roles of user. How can I bind the Zend_Auth with the Zend_ACL and get resources from the database.
2
votes
1answer
61 views

Custom two-factor authentication in WCF

Is it possible to implement two-factor (or multi-factor) custom authentication in WCF? For example, I want to authenticate client using two different credential types: 1) User enter login and ...
2
votes
1answer
69 views

Programatically authenticating a user in Django

How I log in the user programatically in Django? I have the username and password of the User. Is there a method that let's me log him in?
2
votes
1answer
401 views

Redirect URI using the Javascript SDK after authentication

So I've set up a basic login/authentication flow on the home page of my site. After the authentication dialog, I want to redirect them to another page on my site. I've tried several variations of the ...
2
votes
1answer
104 views

webmachine and redirect unauthenticated users

In my new project I want to use webmachine and mochiweb. First thing i want to do is authentication. I edit "dispatch.conf" and make some resources, like: {["auth"], my_res_auth, []}. ...
2
votes
1answer
322 views

How to get an ACCESS_TOKEN from the new Add to Timeline Auth dialog

I currently have the following situation. On my website, the user can access his settings page. This page features a tab called 'Facebook'. On this page, I have the following code that lets the user ...
2
votes
8answers
411 views

Extend auth token without refreshing the page

Users want to use my facebook app for many hours without refreshing the browser. But token expires in 2 hours. Now I ask users to refresh the page but that's annoying. I don't want to ask offline ...
2
votes
1answer
256 views

cakePHP Auth - with allow/deny, what isAuthorized is actualley needed for?

Check this: function beforeFilter() { $this->Auth->authorize = 'controller'; $this->Auth->allow('delete'); } function isAuthorized() { if ($this->Auth->user('role') != ...
2
votes
2answers
70 views

Why is my registration/reset_password_done.html template not used by Django?

I have an urls.py: from django.contrib.auth.views import (password_reset, password_reset_done, password_change, password_change_done) [...] urlpatterns += ...
2
votes
1answer
157 views

How to check if a Django user is still logged in from the client side only?

Security is not an issue here. I need to display 'You are logged in as username' on the page, but don't want to remove the view from the cache just for this so I'm hoping to be able to do it in ...
2
votes
1answer
267 views

CakePHP - Auth to save user's last login time

Where is the best place to insert the code to save the user's last login? I am using the CakePHP Auth login system in almost the standard implementation in the manual. Where can I insert the code so ...
2
votes
1answer
500 views

django auth ldap

I've been trying to get the LDAP -> Django groups mappings working without success. Everything seems to work fine except for the group mapping part. My LDAP backend is Active Directory. I'm using ...
2
votes
1answer
118 views

Why Are My CakePHP AROs Not Being Created?

I followed the CakePHP Cookbook's simple ACL application tutorial and for a while all way fine and dandy. When I created a user, my AROs were automagically created too, and without too much effort I ...
2
votes
2answers
71 views

Minimum overhead for ASP.NET MVC authentication

I want to keep things as simple as possible and I don't want a complicated security mechanism. Basically I need for a user an ID and an e-mail address and I really don't want to bother about other ...
2
votes
1answer
187 views

Build tables for ion auth and codeigniter

I have Codeigniter and Ion Auth installed on MAMP. I have the libraries working but I'm not sure how to build the required database tables for Ion Auth. Is there a preferred / best-practices way of ...
2
votes
1answer
243 views

Implementing combined authorization (OAuth, OpenID etc) using PHP

I'm writing my own authentification library with PHP. I want to implement not only old-style Login/Pass authorization, but also OAuth and OpenID services (maybe others too) as drivers. These drivers ...
2
votes
3answers
204 views

How can I save an automatically generated password in CakePHP?

I am trying to automatically register users. You enter an email address and it sends the user a password. Sounds simple enough, right? Here are a bunch of things that I've tried in my add action, but ...
2
votes
4answers
103 views

Auth via cookies, storing the admin id too

I am testing a way to autenticate via a private system with cookie. Consider i have a db like this: adminID - user - email - psw Whenever someone logs in i set a cookie like this: $adminID . ...
2
votes
1answer
70 views

Multiple auth providers

I want to implement multiple auth providers (like stackoverflow). I have downloaded the dotnetauth library. However, I have one generic question about the overall architecture of my web application. ...
2
votes
3answers
325 views

check_password() from a user again

I do have the following form. How can I check the password from the user again, before the user can change his emailadsress finally. Even he is logged in, I just want to be sure that it is really the ...
2
votes
1answer
461 views

CakePHP auth session vs. cookie not updating

I have a ACL+auth driven app. Everything works fine but I discovered that user is logged out after a random period of time. After doing some research I discovered that the cookie set once doesn't ...
2
votes
3answers
238 views

Cake's ACL component and the concept of “ownership”

I have been futzing around with Cake's Auth/ACL components. I've read the docs and I've done the tutorial, but I am still not satisfied with what I can actually accomplish with it. I've seen a ...
2
votes
2answers
242 views

php's Header equivalent in JSP

in php i used to authenticate whether a user was logged in or not by checking the session for a member id, if set ok, else the page would be redirected via Header to the login page. this auth script ...
2
votes
3answers
738 views

Tomcat URL Authentication e.g: https://user:password@app.wibble.com

I am writing a tomcat app, and have a need to do authentication within the URL like this: https://user:password@app.wibble.com Except for the life of me i'm not sure how to set it up or able to find ...
2
votes
1answer
312 views

What are the model, lft, and rght fields used in the acos table?

What are the cakePHP usages/meanings of the model, lft, and rght fields in a acos table? Similarly, what are the usages/meanings of the lft and rght fields in a aros table?
2
votes
2answers
807 views

Raw FTP SSL with C#

I'm trying to understand how SSL works. In my wish to make a small FTP client which supports SSL I've run into some problems: TcpClient FtpConnection = new TcpClient(FtpServer, FtpPort); ...

1 2 3 4 5 7