profile

user profile definition issue

Hello everyone, I am developing a web site and I need to build a data structure to store user profile information. Just like what we filled about our gender/age/education/etc. information for Facebook, etc. The current issues I met with are, Currently I may not consider all required user profile information from current design/develo...

ASP.NET Profile Templates

Is it possible have more than one profile template? I'm working on an internal application for a company that will be distributed to multiple locations and have different setups. I was thinking of having a profile for user preferences, and then using the profile system to store system configuration information (I didn't want to load th...

What should you be storing with an ASP.NET Profile Provider?

What is the role of the Profile Provider in ASP.NET / MVC? What kind of information should be stored/retrieved using this functionality? How does it fit in with the rest of the family of user providers: Profile Provider Membership Provider Role Provider ? ...

SharePoint 403 error for users not exist in "All People"

It is complex, I'll trying to describe it here. If the user and his group have no access rights to anything on the SP site, the user will get a proper "Error:Access Denied" SharePoint page upon logon. If the user has some access to something through his group membership, then a. If the user is listed in the All People list, then the ...

Activate different Maven profiles depending on current module?

We have a multi module build with modules using different technologies, like Java and Flex. Is it somehow possible to activate different profiles based on the module that is compiled currently? I tried it with an activation like <profile> <id>flex</id> <activation> <file> <exists>${basedir}/src/main/flex</exists> </fi...

setting profile properties in asp.net.

Hi, I've created my own signup form and creating the user using the Membership class. MembershipCreateStatus status; MembershipUser newUser = Membership.CreateUser(tbxUsername.Text, tbxPassword.Text, tbxEmail.Text, null, null, true, out status); After the user is created using the code about, I try to set some profile pr...

Saving profile with registration in Django-Registration.

In Django-Registration it says you can save a custom profile when you save a user. But I have no idea what the documentation is asking me to do. Here is what they say: "To enable creation of a custom user profile along with the User (e.g., the model specified in the AUTH_PROFILE_MODULE setting), define a function which knows how to cre...

How to get a reference to a non-default ProfileBase in ASP.NET?

I know I can get a reference to the default Profile in ASP.NET with code like this: ProfileBase p = ProfileBase.Create(username); (I know there is also HttpContext.Current.Profile, but that is for the current user, and I need to get the profile by username.) The above code works only for the DEFAULT provider as defined in the default...

asp.net MVC, how to redirect registered users that don't have a profile to page?

We are building a site using asp.net mvc. We want to allow the user to easily register and create an account. There is though a very special piece of information, that will be registered in his profile, that we want to show to him *after registration is finished, and he is logging in for the first time. The logic is whatever the URL tha...

Running maven goal in multiple lifecycles

Hi, I have a case where I want to run the cobertura plugin in both the verify phase and the reporting phase. I have two profiles and they should both be running the cobertura plugin, but in profile A, I only want to create the xml/html output, but in profile B, I will be generating full site documentation that includes these results. I ...

Making A Website With Profiles

I am working on a social network, and I am doing it with php and mysql, I need to know how to make users have customizable profiles... Like editing status, ect... Also making it so only friends can veiw their profile.. Also how do I add a user's page/directory to the website directory(example: domainname.com/someonesprofile) Thank ...

ASP.NET SQL Profile Provider - Does the ProfileBase.Create() method hit DB?

I am working with the SQLMemebershipProvider and using Profiles. I have a custom class called UserProfile that inherits from the ProfileBase class and I use this to set custom properties like "FullName". I am wanting to loop through all the users in the database and get access to their profile properties. On each iteration I am calling P...

How do I implement user theme switching in SharePoint?

My customer wants to provide 2 themes for a SharePoint application. Is there a strategy to accomplish this in MOSS 2007? We want to apply user profile-based theme selection, and maybe even a drop-down to switch modes. ...

How to create user profiles with PHP and MySQL

I need some help on creating a user profile system. I want it to be like Facebook or Myspace where it has only the username after the address, no question marks or anything, for example, www.mysite.com/username. I have all the register, logging scripts, etc. all done, but how do I go to profiles using the URL example above, "/username"? ...

How do you get the membership profile of a user in an ASP.NET MVC view?

I'm using ASP.NET MVC and the Membership providers. How do I get the profile of a user in a view? any particular method to get it? The template project out of the box access the username in this way: <%= Html.Encode(Page.User.Identity.Name) %> I'd like to have a similar way to access the profile data. ...

how to add mp3 player to facebook members from my facebook application

hi i making an application that read an mp3 file , and i want the user to be able to share the mp3 player on his profil and be shown like this see this image plz : http://img148.imageshack.us/img148/604/fbml.jpg and not like the normal share button thanks in advance ...

How do you get the Profile variable populated in a view in ASP.NET MVC?

In a view in ASP.NET MVC I can access the profile and profile members like this: <%= Profile.Name %> - <%= Profile.Karma %> but how do I get the Profile variable populated? It seems to be in HttpContext.Current.Profile. I've wrote a custom Profile class with a CurrentUser method that looks like this: static public Profile CurrentUser...

Php, update password without login?

I have a new website. And the following is my scenario: I will send an email to 5 people (numbers not important), inside the email, i will include a link for them to click: www.domain.com/[email protected]&key=abc...xyz They key are randomly generated using salt and sha1 in php. Upon click the link in their email, can I directly let t...

Store a generic dictionary in an asp.net profile?

Hi, Is there any way of storing a generic dictionary object in an asp.net profile? I have tried using this but it still doesn't like it: http://weblogs.asp.net/pwelter34/default.aspx Thanks, Nick ...

Web user registration & profile editing app using LDAP backend

A organization I work with has multiple web facing applications (Django app, Rails apps, phpBB forums, mailman) and each has their own user logins and profiles. The organization wants to standardize on using LDAP has a place to store authentication and authorization data, as well as basic profile data. Is there an existing open source w...