Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Who's Online problem with Friendly URLs
On a topic page, clicking the name of an online user takes you to
http://www.domain.net/forum/discussion/9/topic-name/account.php?u=1
instead of
http://www.domain.net/forum/discussions/account.php?u=1
I've seen this mentioned elsewhere but the solution was to edit the .htaccess - my .htaccess already has the suggested rules in it, but it still isn't working.
Is there a way to hard-code the correct URL into the plugin? That worked for me with Spell Checker and it would seem to be the easy option.
0
This discussion has been closed.
Comments
AND, I just noticed another problem with the RSS2 and ATOM feeds with Friendly URLs.
If you subscribe to the RSS feed for this discussion and then click on the Title link (which should take you back to this discussion), it gives you http://lussumo.com/community/discussion/?DiscussionID=4490 as the URL -- which fails.
$Panel->AddListItem($ListName, $Context->GetDefinition($name["Name"]), "account.php?u=" . $name["UserID"],NULL,"title=\"$TimePast\"");
And change it to:
$Panel->AddListItem($ListName, $Context->GetDefinition($name["Name"]), GetUrl($Context->Configuration, 'account.php', '', 'u', $name['UserID']), NULL, "title=\"$TimePast\"");