Mono Support Why a user gets reputation points even for updating profile ? 

Viewed 43930 time(s), 6 post(s), 1/22/2013 6:31:56 PM - by super
1/22/2013 6:31:56 PM
6018 Reputation 709 Total posts

Why a user gets reputation points even for updating profile ? I have also tested that if a user click on edit profile and without doing any modifications just simply clicks on the save button - still he/she gets reputation points which is like a bug because no actual modifications have been made.

Where I an control this whole point system and re-configure what points a user should get on different situations ?

1
1/23/2013 9:31:49 AM
526 Reputation 43 Total posts

Hi,

you will have to create a Global class which will inherit MonoSoftware.MonoX.Global and add the following code to it to override Application_Start and add a custom amount of points for that action:

protected override void Application_Start(object sender, System.EventArgs e)
{
    base.Application_Start(sender, e);
 
    MonoSoftware.MonoX.ApplicationSettings.Reputation.UserProfile.NewUserInfoScore = 0;
}
Regards

2
1/23/2013 4:50:41 PM
6018 Reputation 709 Total posts

In default / current monox project - Where I an control this whole point system and re-configure what points a user should get on different situations ? Is there any way to control the point system in default monox project rather than adding custom code ?

3
1/24/2013 10:29:59 AM
2218 Reputation 300 Total posts

MonoX provides score points for many different situations for example:
- Uploading an avatar image
- Updating your profile
- Creating a new blog post
- Posting message discussions
and many more.

You can easily edit any points assigned on the profile page by editing User Profile web part properties, I'm attaching an example screenshot. Same approach can be used for any web part.

Regards

4
1/24/2013 12:35:03 PM
6018 Reputation 709 Total posts

How I can go to the user profile webpart properties ? I know how to see any webpart properties but I don't know where is user profile part located ? how I can locate this web part on current monox default project ?

Also like I mentioned above that " I have also tested that if a user click on edit profile and without doing any modifications just simply clicks on the save button - still he/she gets reputation points which is like a bug because no actual
modifications have been made.
"

Is this a bug ?

5
1/24/2013 12:48:29 PM
2218 Reputation 300 Total posts

How I can go to the user profile webpart properties ? I know how to see any webpart properties but I don't know where is user profile part located ? how I can locate this web part on current monox default project ?
1. Login as an admin user
2. Navigate to profile page
3. Click on About
4. Click on "Edit the web part properties" button as show in the attachment

Also like I mentioned above that " I have also tested that if a user click on edit profile and without doing any modifications just simply clicks on the save button - still he/she gets reputation points which is like a bug because no actual
modifications have been made."
 
Is this a bug ?
We are unable to reproduce this issue. Do you have any custom logic on your user profile section?

Regards,
Mario

6
This is a demo site for MonoX. Please visit Mono Software for more info.