|
Having an issue with random individuals trying to access an intranet site with a security certificate. Most users are able to simply select their Smartcard/CAC certificate, enter the pin number and then are granted access to the site's pages.
However,...
Started by aimlessWonderer on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
I understand your development environment works as you want and that your production... .
Also check that the certificates are valid (not expired) and otherwise similar - same issuer, PIN not locked etc .
Check the functioning of the card with other applications.
|
|
"User A" is logged on My application recognizes Environment.Username as "User A"
Now in Windows, I click on Switch user ... "User B" logs on
"User A's" processes are still running Application run by "User A" still says Environment.Username is "User A"...
Started by SaM on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
An application that supports the Fast User Switching feature by using Visual Basic .NET or Visual Basic 2005 in Windows XP ?
See also Architecture of Fast User Switching
There is no such thing as the currently active user since ....
|
|
Hello,
I'm using Rails and I have a User Controller for creating new users. To view current users I have to type something like:
mysite.com/users/USER_ID
I want to change to:
mysite.com/USER_ID
What is the best way to acheive that?
Thanks,
Tam
Started by Tam on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
users', :action => 'show'
And then implement the show method - your user id will be in params[:id]
To improve a bit your generated URLs, you could also add a to_param method to the User model to get.
|
Ask your Facebook Friends
|
1) user A goes to the site, creates an account, and logs in 2) user b goes to the site. Rather than having to log in, user b enters as though user b is user a. User b gets access to all of user a's data and can brows the site as user a.
Note: user b does...
Answer Snippets (Read the full thread at stackoverflow):
Other user's auth cookies then I assume this problem would happen fairly often and should.
|
|
I have
$user = $this->Auth->user();
which retrieves the current user from the session.
I want to make an admin user be able to 'act as' a customer. And I was hoping to be able to just replace the customer_id in the user session when they enter the...
Started by Jack B Nimble on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
If you are simply checking the customer_id on the session to determine if that user is of the type customer, instead of:
$user['User']['customer_id'] = 4;
I would try:
$this->Session->write.
|
|
Problem: to copy a directory tree from the "me" master user to the encrypted harddrive of the "cs"-user:
su cs bash-3.2$ cp -R /Users/me/cs_project /Users/cs/ cp: /Users/cs/cs_project: Permission denied cp: /Users/me/cs_project/h_mark: unable to copy ...
Started by Masi on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
/Users/me/cs_project /Users/cs/
Is the "me" user an administrator? If so, you can log in as me.
Whatever user you're running this command under needs permission to read (and search dirs, i.e.
|
|
I want to represent some data visually, using a visualization component. Now I want to represent this situation in a visual way: Suppose I have an web application. I want to get an overview in a visual way about how users are reacting to it.
Say:
in Day...
Started by Sabya on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
It sits on top of (total users at day start - new users....
Top of the stack is new users in a day.
Stacked bar.
Personally I would use a line for the users in a day and a bar for the number of new users/total users.
|
|
How can i check if a user is logged in in user control with asp.net mvc
usually on a view page i use this
<% if (User.Identity.IsAuthenticated) {%> //Do something <% } %>
but i can't get this done on a user control
Started by Yassir on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
This requires that the User calling the Method being authenticated..
Attribute.
|
|
I have setup a RHEL5 server that is running samba & winbind. I am also using the 'username map' feature to map all my Linux user accounts to their AD user accounts. The Windows users can map to the Samba share and everything works as it should.
The only...
Started by Mike Gargano on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
user accounts the same uid as the DOMAIN+user equivalent? In that case when you log on as the linux user, you will be able to see the same files that the DOMAIN+user can..
|
|
Hi I am new to LDAP. I want to know how to identify if the currently logged in user in Solaris is a LDAP user or local user. Any command? or any C Run time functions like getspname, getpwnam which returns an attribute saying it is an LDAP user or local...
Answer Snippets (Read the full thread at stackoverflow):
It doesn....
Ldaplist will tell you if the user has an entry in the ldap database.
For example, if the user has a local account, and they are in LDAP, the passwords that get checked at login will depend on the system configuration.
For it.
|