Note, I'm not talking about the URL structure for questions, which can be adjusted in the admin section. That works fine for me. I'm referring specifically to the URL structure for user profile pages like ../user/Henry
Is there a way to change the user profile page URL structure to adapt to this? For that matter, is there a way to change where the user profile link links out to (which file/line controls this)?
Btw, I am using an external users table, not Q2A's native users table. I've already tried the same backup on another server that allows for the URL structure and it works fine, so I don't think it's a config issue.
Ah here's the solution:
I went into qa--external-users.php and changed this section from:
return '<A HREF="'.htmlspecialchars($relative_url_prefix.'user/'.urlencode($publicusername)).
'" CLASS="qa-user-link">'.htmlspecialchars($publicusername).'</A>';
to
return '<A HREF="'.htmlspecialchars($relative_url_prefix.'?qa=user/'.urlencode($publicusername)).'" CLASS="qa-user-link">'.htmlspecialchars($publicusername).'</A>';