I had a quick look at your website, but without signing up for your forum, it does not look like I can view your wiki.
What I did notice is that you are not using short URLs on your wiki so maybe you should set that up first (is not that difficult to setup).
e.g.
http://www.mouseinfo.com/info/Main_Page
I suggest you change your setup to use
http://www.mouseinfo.com/wiki/Main_Page until you get that working properly and then experiment with using /info instead.
On my forum, I am using /wiki as my wiki directory with short names (wiki is installed in /w and then redirects to /wiki as per instructions for short URLs).
In admincp, I have set
http://www.rifeforum.com/wiki as the Wiki Path with short URLs and defined group 6 for the admin group (default setting). Apart from uploading the code, not much more to set in vb.
The most important settings are in the wiki directory file: LocalSettings.php
Make sure that "define( VB_SYSTEM_PATH," points to the full path on the server (not the URL). and that you have the permissions correct:
$wgGroupPermissions['*']['createaccount'] = false;
$wgGroupPermissions['*' ]['edit'] = false;
$wgGroupPermissions['*' ]['createpage'] = false;
$wgGroupPermissions['*' ]['createtalk'] = false;
$wgGroupPermissions['user']['edit'] = true;
and also check your $wgScriptPath
In your case, should be set to
$wgScriptPath = "/info";
I hope this helps.
Peter