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

How to Create Folders and Subfolders in %AppData%

First of all thank you very much for all the help I’ve found over 3 Vbscript that has save my life during this last six months. I’m new to Vbscripting and I’m currently working on getting a Vbscript that create folders and copy a file at the same…
Leonavas
  • 35
  • 1
  • 1
  • 5
3
votes
2 answers

how to upload profile pic for users wordpress from front end

I have tried a lot to to upload an image for each of the users in my wordpress website, I have tried a lot of plugins like user avatar,easy user image, etc but no use, all these plugins uploads user image from the dashboard. I have used profile…
sharath
  • 521
  • 1
  • 4
  • 18
3
votes
1 answer

How should I add user profiles and privacy to devise?

I have a rails 3 devise app has users with a profile and privacy settings. I currently have this working, but am concerned about efficiency and would love the advice of an experienced rails dev. I generated User model with devise and scaffolded…
Thomas
  • 2,426
  • 3
  • 23
  • 38
3
votes
2 answers

Upgrading Django to 1.5 with Django-CMS - user model issue

I have just moved a site from Django-CMS 2.3.5 to 2.4.1 (with help from Stackoverflow) under Django 1.4. I am now upgrading to Django 1.5, which is only hard because I need to update the old separate user profile to a new custom user model. I…
Racing Tadpole
  • 4,270
  • 6
  • 37
  • 56
3
votes
1 answer

Header search paths with gcc using C_INCLUDE_PATH

i'm confused about the following include files(with GCC) i've A.c and B.c in folder AAA and B.h in folder BBB in A.c: #include #include "B.h" main() { errPrint(); } in B.c: #include #include "B.h" void errPrint(void) { …
moku
  • 31
  • 1
  • 3
3
votes
0 answers

Windows 2008 R2 User Profile Service: unloads user profile of App Pool identity

I am currently facing the following issue. An web application is being hosted as a domain account (Account A) in IIS 7.5 windows 2008 R2. Attribute "load user profile" is set to false The application pool is running integrated mode with .net…
3
votes
1 answer

How to get the user names and domains of all locally stored user profiles?

How do I retrieve the user names and domains of all user profiles stored on a computer? Here's a screenshot of the User Profiles manager to illustrate what I mean:
3
votes
1 answer

Django 1.5. Users profile creation

I use django 1.5 with custom model MyUser. I want to make users profile page, where he can modify only one field - 'about'. I tried something like that: forms.py: class UserSettingsForm(forms.ModelForm): class Meta: model = get_user_model() …
Wolter
  • 1,053
  • 3
  • 11
  • 17
3
votes
1 answer

Create ProfileProperty Through Code in DNN

How to Create Profile Property Through Code in DNN (DotNetNuke)? I tried this code: DotNetNuke.Entities.Profile.ProfilePropertyDefinition def = DotNetNuke.Entities.Profile.ProfileController.GetPropertyDefinitionByName(this.PortalId, "Level"); …
3
votes
1 answer

Grab twitter ids based on emails like fliptop or fullcontact

How do these APIs use email to grab twitter id which is not public available? For example, http://www.fliptop.com/peoplegraph http://www.fullcontact.com/developer/docs/person/
angelokh
  • 9,426
  • 9
  • 69
  • 139
3
votes
1 answer

How can I use my own User table instead of default UserProfile in MVC 4 ?

I want to create large user table (advance User Profile) and save user's data in my database context. So, I don't want to use 2 DbContexts in my project. When users register to site, they data (UserName, Password etc.) stores my own User table. My…
3
votes
3 answers

Remove facebook fan page profile picture on like box plugin

I just want to ask a simple question about facebook like box http://developers.facebook.com/docs/reference/plugins/like-box/ I just want to remove the fan page profile photo.. Is there a solution for this? Thanks!
Marlon Click
  • 31
  • 1
  • 2
3
votes
1 answer

Django : Customizable templates

I am working on creating a web portal and I want to offer the users the feature of making changes to there profile/dashboard like changed background. etc. Can anybody please guide me to an efficient approach to achieve this? Thanks
Tarun Gaba
  • 1,103
  • 1
  • 8
  • 16
3
votes
2 answers

Django: userena edit profile forbidden

I've installed django-userena to manage user profiles and everything works fine except new registered users unable to edit/update their profiles and face just blank screen. If I make the user a superuser then it can change/update profile. Found…
sultan
  • 5,978
  • 14
  • 59
  • 103
3
votes
3 answers

How to copy a file in using a string that has %UserProfile% in C#

I am trying to copy a file using this - private void button1_Click(object sender, EventArgs e) { Environment.GetFolderPath(Environment.SpecialFolder.UserProfile); if…
user1380541