By Zeosing on Tuesday, 23 July 2013
Posted in Technical Issues
Replies 4
Likes 0
Views 1.4K
Votes 0
When you click in this user and click on Views History , appears a message Unable to locate the id of the user, this problem was solved several weeks ago by eric , but seems with the last update os easy discuss appears again

Thanks for the help.
Above solution doesn't seem to work for me.. Maybe I'm doing something wrong. I already cleared cache (thought maybe that helps)..
·
Monday, 12 May 2014 00:30
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Erwin,

I am sorry for the late reply.
Is your issue has resolved? If no, can you provide us with a screenshot? Because we unable to replicate this issue on your site.

Please be advise.
Thanks.
·
Monday, 12 May 2014 12:19
·
0 Likes
·
0 Votes
·
0 Comments
·
I added a screenshot
·
Monday, 12 May 2014 19:36
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Erwin,

I am sorry for the late reply.
I have fix this issue on your site. What I did was change this code:

// Get the user's id.
$alias = $segments[ 2 ];
$id = DiscussHelper::getUserId( $alias );
To this:

// Get the user's id.
$alias = $segments[ 2 ];
$id = explode(':', $alias);
$id = $id[0];
At line: 311 in : /components/com_easydiscuss/router.php

Hope this will help.
If you have anymore question, please don't hesitate to ask us.
Thanks.
·
Wednesday, 14 May 2014 16:05
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post