Questions tagged [user-profile]

The user profile is a section, page or tab, used to manage and display a set of personal information of a certain user.

The user profile (or sometimes called simply "profile") is a section, page or tab, used to manage and display one or more sets of personal information of a certain user.

The user profile is considered a digital representation of the user, and is often associated with the online identity of the user.

User profiles can contain various user-related content - first/last name, nickname, avatar, email address and other user-specific fields.

Often, a user profile can have capabilities for personalizing the public profile view and changing the access settings in order to make certain data visible only to certain users.

710 questions
5
votes
1 answer

Should I store user data as claims or in a user profile table?

I'm working on a public facing system which will ideally grow to a large amount of traffic. This is all c# .net work. I'm using claims-based identity and so I'm currently using a user claims table to store the user data, but as the user base grows I…
IWriteApps
  • 973
  • 1
  • 13
  • 30
5
votes
0 answers

After impersonating a domain user on windows, an app running as administrator cannot load the profile

I'm trying to load the user profile (using LoadUserProfile - http://msdn.microsoft.com/en-us/library/windows/desktop/bb762281%28v=vs.85%29.aspx) but the API fails when the user is a windows domain user. The application runs with an Administrative…
5
votes
1 answer

Most efficient way to retrieve user with userprofile in Django

In Django, on a recommended setup, a UserProfile instance is linked by a OneToOneField with its User instance. class UserProfile(models.Model): user = models.OneToOneField(User) data = ... What is the most efficient way inside a view for…
4
votes
2 answers

Search for FB User ID from an Email ID - like in MS Outlook 2010 Social Connect Plugin

Is there any method to search for FB User ID from email Address ? Am developing a site where I would like to show the User Profile Pic based on his Email address - if the person is registered and the Profile Pic is made public. Have tried searching…
Gagan Rana
  • 41
  • 1
  • 2
4
votes
1 answer

how to show facebook and twitter user profile image on my website's comments

I am showing Gravatar's Avatar on my webpage comments like that $hash = md5(trim($row['email'])); $default_usr =…
user1008545
4
votes
4 answers

Getting user profile with google oauth2

I'm trying to get user profile information upon logging in with google-oauth2. User successfully logs in and i can get the access_token and can refresh the token when needed. Though i could not manage to get any information about the user despite…
altunyurt
  • 2,821
  • 3
  • 38
  • 53
4
votes
2 answers

Programmatic Windows user profile creation

I am trying to do something similar to what the user who asked this question is trying to do: HTTPS Request From a Credential Provider DLL Concerning the components of a user profile, I found this. What is the minimum profile that Windows will…
beatgammit
  • 19,817
  • 19
  • 86
  • 129
4
votes
1 answer

"Foreign Keys" across very separate databases in Django

I've writing a Django site that uses two different databases. One is the local, let's call it, "Django", database that stores all of the standard tables from a pretty standard install -- auth, sites, comments, etc. -- plus a few extra tables. Most…
4
votes
3 answers

Where Do I Get the Powershell Cmdlet Remove-UserPhoto

I cannot find this anywhere on the web and am in need of an answer so I can remove all user photos from profiles in our Azure AD account. Microsoft so kindly documents how to use Get-UserPhoto and Remove-UserPhoto, but does not explain how to…
4
votes
5 answers

linux: how to execute profile file

My colleague gave me a file containing lots of configs such as alias ll="ls -l" alias lr="ls -lrt" alias gv="vim -g" How can I use(execute) this profile?
Yves
  • 11,597
  • 17
  • 83
  • 180
4
votes
3 answers

Create provisioning profile in iphone application

How can i build provisioning profile for deploying an iPhone application?
Khushi
4
votes
2 answers

How do I edit link tabs found on the default user profile page in drupal?

How do I edit link tabs found on the default user profile page in drupal? I'm trying to avoid having to create a user_profile.tpl.php file and rebuild the entire profile from scratch. If there's an easier way to do this, I'd rather do that. But, if…
Dylan West
  • 627
  • 10
  • 22
4
votes
2 answers

how to fetch profile picture from facebook

I am trying to fetch the profile picture of the user. But as Facebook has update its API sdk to v4.0 or later, and also on the FB developers site, they are explaining in Objective C, but I want code in Swift. I am not getting how to use…
Pankaj Kumar
  • 100
  • 1
  • 8
4
votes
6 answers

Generate random 1000 profile pictures

I'm trying to create 1000 random profile pics of people defined by demographics. e.g : 85% Women, aged - 20 - 29 , Nationality : American and so on... Does anyone know any services that'll do this for me? If not does anyone have any good ideas on…
4
votes
2 answers

Ruby on Rails 4, Devise, and profile pages

I am new to coding, so this is probably a simple question. I started using RoR about a month ago. Unfortunately, I've hit a bump and can't seem to get over it. I've tried looking at other SO questions for help, but I'm still a novice, so the coding…
1 2
3
47 48