First, you are running the 2.0.4 port. Don't worry about that. You can fix that by going into your database and to nuke_bbconfig and change your version number from .3 to .4
as for the link in the email activation.
Here
open
includes/usercp_register.php
find
Code:
'U_ACTIVATE' => $server_url . '?mode=activate&' . POST_USERS_URL . '=' . $user_id . '&act_key=' .
change to this
Code:
'U_ACTIVATE' => $server_url . '&mode=activate&' . POST_USERS_URL . '=' . $user_id . '&act_key=' .
I think there are like three instances of that. All need to eb changed.
Link it sends to acivate the Account to the Admin and user is broken
Link looks like this:
http://yoursite.com/modules.php?name...act_key=b68b4a
should look like this:
http://yoursite.com/modules.php?name...act_key=b68b4a
notice the ? b/w profile and mode in the first link? it needs to be &
that's all that was :-)
mikem