Tagged Questions
The user-profile tag has no wiki summary.
7
votes
3answers
1k views
Facebook Connect: capturing user data with django-profiles and django-socialregistration
Either my google searching has completely left me or there's hardly any documentation/tutorials for django-socialregistration. Too bad, because it seems like a nice enough app. Through some ...
3
votes
2answers
117 views
What target folder should I install my application to that will never require uac elevation?
I have an app and I am working on the installer for it. Assuming that I want the installation to not require elevation and I want the application itself to never require elevation and I want the ...
3
votes
2answers
857 views
Getting a random UserProfile In SharePoint 2010
I am trying to retrieve a random number of users from the UserProfileManager.
But I am encountering errors when deploying to the live servers. I can't seem to see what is causing the error. My code ...
3
votes
1answer
707 views
SharePoint user info User Information List and People Column Type
I am retrieving the user information from a number of site collections through the SharePoint web services.
http://mysitecollection.com/_vti_bin/usergroup.asmx
Using the ...
3
votes
1answer
212 views
“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, ...
3
votes
2answers
576 views
ASP MVC User Profiles
I've done MVC in the past, but I am new to ASP and ASP MVC. I really love the ease that ASP MVC provides me, so far, but I am having trouble figuring out how to get more control over the Users. By ...
3
votes
4answers
2k views
Django Admin: Ordering of ForeignKey and ManyToManyField relations referencing User
I have an application that makes use of Django's UserProfile to extend the built-in Django User model. Looks a bit like:
class UserProfile(models.Model):
user = models.ForeignKey(User, ...
3
votes
2answers
2k views
Where Does Windows Vista Store The Profile Image?
I was just wondering if anyone knows where vista stores the profile images for each user account. I know in XP it is stored in C:\Documents and Settings\All Users\Application Data\Microsoft\User ...
2
votes
1answer
107 views
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 ...
2
votes
3answers
135 views
Disable profile editing for one single account
I have made a public account in wordpress which I will send to 100 users.
So the login would be:
Username: public
Password: 123example
The only thing I want is to hide the profile page for this ...
2
votes
1answer
292 views
SharePoint FBA and Custom data - SharePoint 2010
Am I doing this right?
I have a client, they currently have a portal for their users, all their users are in an oracle database. They want to move to SharePoint 2010.
The user will log into the ...
2
votes
1answer
272 views
User profile database design
i have to design a user account/profile tables for a university project. The basic idea i have is the following:
a table for user account (email, username, pwd, and a bunch of other fields)
a user ...
2
votes
2answers
138 views
Django - Customizeable UserProfile
So I've got a UserProfile in Django that has certain fields that are required by the entire project - birthday, residence, etc. - and it also contains a lot of information that doesn't actually have ...
2
votes
2answers
538 views
How to get SPUser object from SocialProfile in Sharepoint 2010?
How can I get the SPUser object associated to the profile from the SocialProfile in Sharepoint 2010?
Thanks
2
votes
2answers
223 views
How to display a custom profile based on a specific role?
For example I have a role called "teachers". For any user that belongs to that role, I want to be able to display a custom profile that is different then the main one. I read at some place that one ...
2
votes
2answers
512 views
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 ...
2
votes
1answer
292 views
Using binary type of a UserProperty
For some reason I need to save some big strings into user profiles. Because a property with type string has a limit to 400 caracters I decited to try with binary type (PropertyDataType.Binary) that ...
2
votes
2answers
209 views
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 ...
2
votes
6answers
2k views
How can I crop/scale user images so I can display fixed sized thumbnails without skewing and stretching?
I'm working on allowing users to upload profile pictures for my site. The classic example of what I'm trying to avoid is plentyoffish.com where each users image is skewed and looks very ugly:
So, ...
1
vote
2answers
57 views
Wordpress automatic individual user profile pages
Wordpress builds in the principle of the author page. The author page is fine and can collect information on the author with a nicename URL. It will not do this with users whom have not written posts.
...
1
vote
0answers
41 views
How does allauth work when user logs in via social registration
I have been trying to use django-allauth to provide Social registration, but I am having trouble configuring the profiles for the user. There is no documentation of django-allauth which tells
how a ...
1
vote
1answer
140 views
Django friends as many-to-many field - better storing User or UserProfile (self) in field?
I found two ways of implementing a symmetrical friendship system (you are my friend, so I am also your friend) in Django:
As suggested inside the docs:
class UserProfile(models.Model):
friends = ...
1
vote
2answers
78 views
Django based Microblog
I would like to build a notification system that will give updates to the user regarding the following events all at the same place
When somebody sends a private message
When somebody ...
1
vote
3answers
101 views
showing picture of people who shared website link on facebook
i have integrate share social plugin in my website to share my website on facebook. And, it is working fine, and also showing the number of people, who has shared my website link till now. But, i was ...
1
vote
2answers
254 views
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 ...
1
vote
2answers
237 views
ASP.net MVC 3 user registration
I am new to asp.net mvc 3 world
I looked at some tutorials to get started. I want to know what is the best option to manage users?
I intended use of the membership provider (and modify this for ...
1
vote
0answers
16 views
Application wait for Windows profile to be created
I have a WPF VB.NET 3.5 application which we have set to run at login via GPO (Windows 7, AD 2003/2008), when this application runs on user login I finding that it is failing when the user has not ...
1
vote
3answers
64 views
prevent access to user profile page from user id
i have a user profile page that have the following url : www.XXXXXXX.com/userid/45
is there a way to prevent access to other page when a user change /userid/45 to /userid/47
1
vote
1answer
27 views
How to take value from UserProfile if it exist in another modelForm as default value
I have UerProfile defined and need to take phone data for MyForm
class UserProfile(models.Model):
...
phone = models.CharField(max_length=20, blank=True)
class ...
1
vote
2answers
605 views
wget for fetching Facebook profile/friend pages
I am trying to fetch facebook a user's profile page using "wget" but keep getting a non-profile page called "browser.php" which has nothing to do with that particular user. The profile page's URL as I ...
1
vote
1answer
254 views
Custom style user profile pages in Drupal 6
I wish to display my tabs (View / Edit etc.) in a sidebar and not on top of the node but only when I am viewing my own profile (maybe when viewing other users profiles too). In my page.tpl.php I have ...
1
vote
1answer
61 views
drupal database managemant
I'm new to drupal. i'm using drupal 6.x. i'm trying to make project to collect tuition teachers database. this is what i need,
if some teacher need to add his data to my site first he have to create ...
1
vote
2answers
249 views
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.
...
1
vote
2answers
116 views
is there any way to use GetProfilesDirectory in jscript?
How can I use GetProfilesDirectory to retrieve c:\Documents and Settings or c:\Users (for vista and win7) in Jscript?
Or else any alternative way to get the user profile path (not of the current ...
1
vote
3answers
515 views
Pulling useful info from a MOSS 2007 Person or Group Field dumped via SSIS package
I’ve got a list defined that, as one of the fields (actually a few of the fields), has a Person or Group picker. I’m extracting the entire list through an SSIS package using the SharePoint List Source ...
1
vote
0answers
399 views
Need to access sharepoint user profiles using Java
Iam able to access the user profile service in sharepoint using java with below code but the problem is its only giving current user( user name which i logged in with for windows authentication) ...
1
vote
2answers
989 views
Custom Menu tabs in Drupal user profile page
I want to add a menu item along side the [view] [edit] [files] ... menu links at the top of the user profile page. When a user clicks it, it should behave like the others, in that it doesn't just ...
1
vote
2answers
83 views
Creating User Profiles In Python
I'm making a small python game with pygame. I'd like to be able to have multiple profiles with different stats, upgrades, etc. My biggest problem is storing this information persistently. I've ...
1
vote
0answers
344 views
exception when update userprofile sharepoint 2010 using webservice
i update userprofile using the code below
using System;
using System.Collections.Generic;
using System.Text;
namespace UserProfileWebServiceApp
{
class Program
{
public static ...
1
vote
1answer
382 views
Overriding user edit profile form
Im using theme_user_profile_form($form) and putting in the line
unset ($form['timezone']);
But it doesnt remove that item from the page
I try:
theme_preprocess_user_profile_form
but it doesnt ...
1
vote
2answers
304 views
import user profiles in MOSS 2007 server into my SharePoint 2010
I want to import user profiles in MOSS 2007 server into my SharePoint 2010 server.
Can anyone please suggest how can i go about achieving the same.
Can we import user profiles using Business Data ...
1
vote
1answer
337 views
Twitter API/Query to search in user profiles?
Is there some way I can search in the profiles of users on Twitter?
e.g. User A has mentioned that he is "security, hacking geek" and his website is http://hackme.com
Now i want to search in 2 ways:
...
1
vote
1answer
560 views
MOSS2007 UserProfile Property: programmatic access to “mapped attribute” in AD
As you may know, MOSS 2007 offers functionality to synchronize Active Directory properties to SharePoint UserProfile Properties. You can map AD properties to userProfile properties in
Shared Services ...
1
vote
2answers
75 views
Proper way to define “remaining time off” for a Django User
I've implemented a UserProfile model (as the Django 1.2 docs say is the proper way to save additional data about a User) which has a 'remaining_vacation_hours' field.
In our current system, when a ...
1
vote
3answers
192 views
Data in custom attribute not returned in UserProfile object in MOSS
I've created two new custom attributes in the UserProfile. When the service we wrote returns data about a specific user by using the UserProfile object, sometimes the data isn't returned, even though ...
1
vote
1answer
450 views
Managing User Profiles with PHP/MySQL for Beginners
I am beginner in PHP/MySql and would develop a simple site that has user management. I like the idea of using OpenId's (like stackoverflow uses).
I wonder from where to start? What should I read?
I ...
1
vote
1answer
574 views
user profile issue with Forms Authentication and SharePoint
I am using SharePoint Server 2007 Enterprise with Windows Server 2008 Enterprise. And I am using publishing portal. And I am using a custom Forms authentication solution -- I store user name and ...
1
vote
2answers
155 views
How to check if a another user is on the same or lower level in the company hierarchy?
I've got this:
UserProfile prof = getUserProfile(properties.CurrentUserId);
UserProfile toCheck = getUserProfile(anotherUsersId);
"prof" user must be on a higher or on the same level as "toCheck" ...
1
vote
1answer
2k views
URL segment - User Profiles - Codeigniter
Hey guys, I'm trying to create user profiles for my site where the url is something like
mysite.com/user/ChrisSalij
Currently my controller looks like so:
<?php
class User extends ...
1
vote
1answer
424 views
Pointers to user profile frameworks in Java
I'm looking for pointers to something that I may be overlooking (or maybe something that Jivebot hasn't yet written for me). What I want is a pre-rolled Java framework for managing user accounts that ...