|
|
| Profile missing (United States) |
|
|
I am testing the user group modules, but I can not see send message, add to friends and add to groups buttons in the profile page.
Pls note; I have ventrian messaging system working and I can send messages to all group members.
Thanks for input
Tony
|
|
|
|
 |  |
|
|
| Re: Profile missing (Australia) |
|
|
Hi Tony,
Have you added in the tokens to the template? Also - for the "Add to Groups" you will need to add that page first before you modify the profile template. Thanks
Rodney
See our modules in action on PokerDIY, a social network for home poker players
 |
|
|
|
 |  |
|
|
| Re: Profile missing (United States) |
|
|
Hello Rod
The add to page was already created, I added the tokens. Still not there
Any Ideas?
Thanks
Tony
|
|
|
|
 |  |
|
|
| Re: Profile missing (Australia) |
|
|
Ok, lets deal with one token at a time as they all work differently - If you put the Add to Group token between 2 markers (like *xyz*) what HTML appears between the * * if you do a View Source? Haveyou configured the Settings for the module and pointed it at the Add To Group page? Thanks
Rodney
See our modules in action on PokerDIY, a social network for home poker players
 |
|
|
|
 |  |
|
|
| Re: Profile missing (United States) |
|
|
Rod
I added the markers and checked view source and there was nothing inbetween the markers which means it is not seeing it at all.
the Page is configued to point to the add to page module.
Thanks
Tony
|
|
|
|
 |  |
|
|
| Re: Profile missing (Australia) |
|
|
Ok, can you paste your template here please (I presume you are using Groups 4.3.4?). what version of DNN are you on?
The fact that it is not outputting anything is interesting - if it did not recognise the tag it would just dump it out, but because it is blank it is processing it and not outputing the result for some reason.
Can you also navigate to your "Add to Group" page and paste the URL here - I want to see if it works manually... Thanks
Rodney
See our modules in action on PokerDIY, a social network for home poker players
 |
|
|
|
 |  |
|
|
| Re: Profile missing (United States) |
|
|
This is the template , I really did not change anything , just added ADDTOGROUPS.
<div align="center"> <table class="normal" cellspacing="0" cellpadding="2" width="100%" border="0"> <tbody> <tr> <td colspan="3"> </td> </tr> <tr> <td valign="top" nowrap="nowrap" align="left" width="1%">[PROFILEIMAGE]<br /> *XZ*[ADDTOGROUPS]*XZ*<br /> *zx*[ADDTOFRIENDS]*zx*</td> <td valign="top" nowrap="nowrap"><span class="Head">[EDITPROFILE] [*C*Prefix] [*C*FirstName] [*C*MiddleName] [*C*LastName]</span> [USERONLINEIMAGE]<br /> [NICKNAME]<br /> [EMAIL] <br /> <a target="_blank" href="http://[*C*Website]">[*C*Website]</a><br /> [VIEWCOREINFO]</td> <td valign="top" nowrap="nowrap" align="right" width="1%"><span class="subhead">[*L*lblLastLoggedInLabel.Text]</span> [LASTLOGINDATE]<br /> <span class="subhead">[*L*lblJoinedLabel.Text]</span> [JOINDATE]<br /> <span class="subhead">[*L*lblViewCounter.Text]</span> [VIEWCOUNTER]</td> </tr> <tr> <td class="normal" colspan="3">[*C*Biography]</td> </tr> <tr> <td> </td> </tr> <tr> <td class="normal" colspan="3"> </td> </tr> <tr> <td> </td> </tr> <tr> <td colspan="3"><span class="subhead">[*L*lblAge.Text]</span> [AGE] - [BIRTHDAY]</td> </tr> <tr> <td colspan="3"><span class="subhead">[*L*lblDaysTillNextBirthday.Text]</span> [BIRTHDAYCOUNTDOWN]</td> </tr> <tr> <td colspan="3"><span class="subhead">[*L*lblHomeTown.Text]</span> [*C*City] [*C*Country]</td> </tr> <tr> <td colspan="2"><span class="subhead">[*L*lblLastUpdatedLabel.Text]</span> [UPDATEDATE]</td> <td align="right">[BACKBUTTON]</td> </tr> </tbody> </table> </div>
The add to groups URL = http://www.upowerbuy.com/Powerbuy/AddtoGroups/tabid/84/Default.aspx
Thanks
Tony |
|
|
|
 |  |
|
|
| Re: Profile missing (United States) |
|
|
I forgot to say , I am using DNN 4.5.5 .
By the way , The View counter also is not increasing by 1 with every view , it stays at 1
Thanks
Tony
|
|
|
|
 |  |
|
|
| Re: Profile missing (N/A) |
|
|
Hi Tony,
Are you by any chance looking at your own profile whilst being logged in? The only logic for this token is:
//you can't add yourself
if (loggedOnUserID != userID)
{
linkAddToGroup = new HyperLink();
int addToGroupsTabID = settings[currentUserSearchID + "AddToGroupsTabID"] == null ? new SmartThinker.DNN.Modules.ModuleFramework.Business.UserGroup.Utilities().GetTabIDForModule(pmb, "Smart-Thinker - UserGroup AddToGroup") : Convert.ToInt32(settings[currentUserSearchID + "AddToGroupsTabID"]);
if (addToGroupsTabID != Null.NullInteger)
{
}
}
so you can add yourself to your own group and the setting of the AddToGroup page must be set. Please raise the incementing issue in the UserProfile module forum. Thanks
Rodney
See our modules in action on PokerDIY, a social network for home poker players
 |
|
|
|
 |  |
|
|
| Re: Profile missing (N/A) |
|
|
Rodney,
I'm having similar issues. Here's my config:
DNN: 4.8
UserGroup: 4.3.4
UserProfile: 4.3.8
First, is there an updated Token list? I don't see the "Add To Groups" token listed anywhere.
When I add the token [ADDTOGROUPS] to the "UserProfile - Profile" profile template, I just see the text "ADDTOGROUPS" on my profile screen. Am I missing something? |
|
|
|
 |  |
|
|
| Re: Profile missing (Australia) |
|
|
Hi,
Ok, I checked those versions and they are the correct versions of each module (when it was implemented).
1) Updated token list - I am working on this - I am trying to move this into the Forums (so there is only 1 live copy) - and I want to separate it into general tokens and module specific tokens.
Can you paste your template here please. Also, can you double-check that you have the UP version 4.3.8 version (in Module Definitions). Thanks
Rodney
See our modules in action on PokerDIY, a social network for home poker players
 |
|
|
|
 |  |
|
|
| Re: Profile missing (N/A) |
|
|
Yes, I’m running Smart-Thinker – UserProfile 04.03.08
Here is the template
<div align="center"><table class="normal" border="0" cellpadding="2" cellspacing="0" width="100%"><tr><td colspan="3"></td></tr><tr><td align="left" nowrap="nowrap" valign="top" width="1%">[PROFILEIMAGE]<br/><br/>[ADDTOFRIENDS]<br/>[ADDTOGROUPS]<br/>[PRIVATEMESSAGE]</td> <td nowrap="nowrap" valign="top"><span class="Head">[*C*Prefix] [*C*FirstName] [*C*MiddleName] [*C*LastName]</span> [USERONLINEIMAGE]<br />[NICKNAME]<br /><a href="http://[*C*Website]" target="_blank">[*C*Website]</a><br />[VIEWCOREINFO]</td><td align="right" nowrap="nowrap" valign="top" width="1%"> <span class="subhead">[*L*lblLastLoggedInLabel.Text]</span> [LASTLOGINDATE]<br /> <span class="subhead">[*L*lblJoinedLabel.Text]</span> [JOINDATE]<br /><span class="subhead">[*L*lblViewCounter.Text]</span> [VIEWCOUNTER]</td></tr><tr><td colspan="3" Class="normal">[*C*Biography]</td></tr><tr><td></td></tr><tr><td colspan="3" Class="normal"></td></tr><tr><td></td></tr><tr><td colspan="3"><span class="subhead">[*L*lblAge.Text]</span> [AGE] - [BIRTHDAY]</td></tr><tr><td colspan="3"><span class="subhead">[*L*lblDaysTillNextBirthday.Text]</span> [BIRTHDAYCOUNTDOWN]</td></tr> <tr><td colspan="3"><span class="subhead">[*L*lblHomeTown.Text]</span> [*C*City] [*C*Country]</td></tr><tr><td colspan="2"><span class="subhead">[*L*lblLastUpdatedLabel.Text]</span> [UPDATEDATE]</td><td align="right">[BACKBUTTON]</td></tr></table></div> |
|
|
|
 |  |
|
|
| Re: Profile missing (Australia) |
|
|
Ok, that all looks good - the strange thing is that the code should merely omit the token if it processes it - if it dumps it out (like it is doing on yours) it usually means it hasn't matched the token.
Would it be possible to get admin access to your site so I can have a closer look? If possible, send details to rod . smart-thinker.com please.
Thanks
Rodney
See our modules in action on PokerDIY, a social network for home poker players
 |
|
|
|
 |  |
|
|
| Re: Profile missing (Australia) |
|
|
Actually - I have just looked at the differences in SourceSafe and it looks like the token code might only have been inplemented in 4.3.9! I have not yet investigate as to why this would happen, but is it possible for you to upgrade to the latest version? Thanks
Rodney
See our modules in action on PokerDIY, a social network for home poker players
 |
|
|
|
 |  |
|
|
| Re: Profile missing (N/A) |
|
|
Well, I had to purchase another subscription (since mine ran out), but using the latest version seems to work ... thanks. |
|
|
|
 |  |
|
| |