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
0
votes
1 answer

Membership users showing online when they're not?

I have an issue, where by each user in my user list is showing as on-line when I know they're not. When the page is loaded, they show as offline, but if I refresh the page, they all show as on-line. I'm assuming this is because I'm programmatically…
Stuart
  • 1,544
  • 5
  • 29
  • 45
0
votes
1 answer

Is it possible to use custom data types for MOSS user profile properties?

We're wanting to add some properties to our MOSS user profiles and expose them to the people search. However, some of the data are more complex than just a string or choice or whatever. I've been looking around, and I can't seem to figure out if…
Abs
  • 1,339
  • 2
  • 12
  • 16
0
votes
1 answer

How to set or assign predefined attributes to new user, on Rails

First, I apologize if this is too much of a newbie question. I can only code on my spare time so I'm often re-learning things from scratch on every project. I have a Class, Person, with the attributes name, birth-date, and gender, so I can create,…
San Diago
  • 1,030
  • 1
  • 12
  • 26
0
votes
2 answers

Create custom login and provider

I'm developing a site that needs to store additional user information other than the default in the CreateUserWizard in ASP.Net4.0. It's been a few years since I developed (and mainly used windows forms) and this is my first acutal site using ASP…
Jim S.
  • 203
  • 8
  • 24
0
votes
1 answer

The storage construction of user avatar

User avatar is an important part of every website. How should I store the avatar image files on the server with high performance? Here are some points have to solve: How to generate the file name of user? Directly by user id or name, or by the…
Angolao
  • 986
  • 1
  • 15
  • 27
0
votes
3 answers

Unable to resolve user environment variable correctly

I am trying to resolve %USERPROFILE% using WScript.Shell. When I create a vbs file and run directly from Windows, I get the correct path for the logged-in user C:\Documents and Settings\Administrator but it gets resolved to C:\Documents and…
Junaid
  • 1,708
  • 16
  • 25
0
votes
2 answers

How to create username in codeIgniter?

I want address of my website user is mydomain.com/username/. But it seems very difficult to me using codeIgniter.Please help me what is best way to do it. mysite.com/profile?user=username is current url of profile but i want this …
Ejaz Karim
  • 3,676
  • 6
  • 36
  • 49
0
votes
1 answer

Trouble in getting fb user's profile image

I want to place user's profile pic on another image, I tried following code to retrieve user profile pic $url='https://graph.facebook.com/'.$uid.'/picture?type=large'; $userpic = imagecreatefromjpeg($url); imagejpeg($userpic, "xyz.jpg", 100); But…
0
votes
1 answer

VERY Simple User Login/Profile System for Android

I want to have a user profile system in an app; this app has absolutely no sensitive data. I know how to do a secure log in as far as protecting the user password/username etc. But here is my question... once the login confirms that the…
TheLettuceMaster
  • 15,594
  • 48
  • 153
  • 259
0
votes
1 answer

Django: Saving a user profile

This is very basic, but I can't find anything on it. I have a user profile defined in the following way: def create_user_info(sender, instance, created, **kwargs): if created: UserInfo.objects.create(user=instance) User.profile =…
sinθ
  • 11,093
  • 25
  • 85
  • 121
0
votes
2 answers

Django 1.4 : Create UserProfile+User as an atomic action, Roles, and Admin integration

I'm building my first real django application which has different user roles and the normal "User signal that creates an UserProfile" approach is falling short. Could you guys help me out ? To give out more context, here are the requirements from a…
Zeta
  • 1
  • 1
0
votes
2 answers

copy existing image and rename with php

I have a little blackout with the simplest of the simplest. I have a folder called "userpics" and in that folder there are 100x100 profile images named e.g. user-25.jpg. In that folder there also is a picture called user-none.jpg with a silhouette,…
Morten Hagh
  • 2,055
  • 8
  • 34
  • 66
0
votes
2 answers

create permenant unique links based on a user ID

Possible Duplicate: create unique profile page for each user python I am using google appengine with python and jinja2 and trying to give each user in my app a unique URL to their profile page that can be visited by anyone without logging in. …
exployre
  • 67
  • 2
  • 10
0
votes
1 answer

User Profile Link

I have a site that allows users to sign up and create profiles. I have a basic user profile link in the header that allows users to link back their profile page when viewing other pages. The script works fine. The problem is that now I have separate…
Jo Anne
  • 21
  • 1
  • 6
0
votes
3 answers

Cannot create Django user due to UserProfile creation throwing IntegrityError

Django is giving me an integrity error when creating users. From my models.py: class UserProfile(models.Model): user = models.OneToOneField(User) age = models.DateField() city = models.CharField(max_length=30) state =…
BigJim
  • 23
  • 6