I had this very same problem with another mod.
What you need to do is find which of the mods files actually builds the URL's, it's probably best to ask the mod author which files these are.
Once you know which files, you then need to edit them and find each occurrence of ;id and change them to &id which will be handled by the browser as &id.
You could test this before making any changes by replacing the ; in the URL with a &, in one of your failing URL's,
i.e. change:
index.php?action=profile;area=awardsMembers;id=1
to
index.php?action=profile;area=awardsMembers&id=1
Hope that helps!
(Thanks to Arantor)