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
2
votes
3 answers

Rails: How to treat some fields of model info independently? Eg. Account vs. Profile information

I have a User model with the usual information (login, email, name, location, etc). However, when users decide to edit their information, I'd like to separate the fields to be edited according to the appropriate concerns. For example, I'd like to…
San Diago
  • 1,030
  • 1
  • 12
  • 26
2
votes
2 answers

Editing user profile details

How to create action and views for editing user custom informations? Authorization is based on membership created by VS with MVC 4 project. I've added additional columns, such as FirstName etc. I needed and registration works correctly, but I don't…
user1900685
  • 193
  • 1
  • 4
  • 16
2
votes
0 answers

Drupal 7 - Submit user_profile_form via Ajax

I am trying to include the user_profile_form in a page, and want it to be handled using AJAX. function wr_pages_form_alter(&$form, $form_state, $form_id) { if ($form_id == 'user_login_block' || $form_id == 'user_login') { …
sebastian
  • 16,470
  • 1
  • 22
  • 18
2
votes
2 answers

Save Foreign Key between profile model and user model

Taking first steps into django's (1.5) auth features and had a lot of trouble so far just attempting so pull in the user's email address (which is the username field in the user model) as a ForeignKey in a profile model Specialist. Two…
2
votes
1 answer

Create UserProfile Model after User signed up using allauth Django

I have a django project in which there is a UserProfile having a OneToOne to the User model. It uses django-allauth for registration. I am accepting registration via account and social account. Upon signing up, i want the user to be redirected to a…
2
votes
2 answers

Syncing profile details with active directory

Several fields in MOSS profiles are mapped to fields in active directory and we have given the user the ability to modify these. But when the incremental profile import runs it overwrites these with the old values from active directory. How do we…
wefwfwefwe
  • 3,382
  • 1
  • 21
  • 24
2
votes
0 answers

can one column in a table reference three primary keys in three different table

I want to reference UserProfile_tbl(UserId) to three Primary Keys as Student(Regno), Faculty(Regno), Admin(adminId). Is this Possible? I am using UserProfile Table for Login.
Tenzin Chemi
  • 5,101
  • 2
  • 27
  • 33
2
votes
1 answer

User profiles in iOS app?

I'm developing an iOS application and I am planning to have a system by which the application will store a 'user profile'. This would be information about the user such as name, gender and age, the rest of the app will have to use and respond to…
Alex G
  • 23
  • 3
2
votes
1 answer

Extended django user profile over-writes user table data when submitted

I'm having an issue that when a user is submitting changes to their profile, the associated user-table has all fields overwritten with blank values (ie: username, email, first_name...etc) My site has two types of users with completely different user…
devinjames
  • 103
  • 6
2
votes
1 answer

how to change the facebook profile picture using facebook android sdk?

my english is not so perfect but i want to learn, so i hope you can understand me. I wanna know how can i change the facebook profile pic using facebook android sdk. im able to upload pictures from my app to any album, including "Profile Pictures"…
Max Collao
  • 91
  • 1
  • 12
2
votes
1 answer

Simple cross-platform settings manager

I'm writing a cross-platform game (in C++) called Bombz and I need a way to read/write users' settings etc, which will also include records of which levels have been completed. Something like an ini file parser will be fine, and it doesn't really…
realh
  • 962
  • 2
  • 7
  • 22
2
votes
0 answers

ASP.NET MVC 3 application with third party user profile management?

I'm building a website that involves user interactions. Some people are going to create new topics, while others are going to vote and write feedback. I'm trying to figure out the best way to handle user account management and I'm struggling here. I…
Levitikon
  • 7,749
  • 9
  • 56
  • 74
2
votes
2 answers

yii-user extension - how to add a checkbox profile field?

Yii framework, yii-user extension (using latest version of both, to date): how do I add a simple "checkbox" field for the profile of all users? I am logged in as admin, and went to user/profileField/admin. I can add new field but the closest I get…
Boaz Rymland
  • 1,459
  • 11
  • 29
2
votes
3 answers

Looking for SQL Server table design sanity check for profile tables with dynamic columns

DOES IT MAKE SENSE TO GENERALIZE A PROFILE TABLE FOR TWO DISTINCT PROFILES IN THE SYSTEM, IN MY CASE, TEACHERS AND STUDENTS? I am doing this and just want a general sanity check regarding my design approach. Responses appreciated. Background…
Peter
  • 5,251
  • 16
  • 63
  • 98
1
vote
2 answers

Facebook Application - User Picture?

I want to use the Facebook users Profile Picture in my Application. I think I should use the following function, but I'm not sure if that's correct: public function getImg() { $img =…
Salexes
  • 11
  • 1