Yes, my meaning is that VaultWiki will now correctly jump between sections even if the upper/lower case doesn't match between the domain of the current page and the domain of the jump link. This means that wherever the misconfiguration is, whether it's your server, or another vBulletin add-on, VaultWiki won't care anymore.
You can find out for sure if it's a server misconfiguration by creating a test PHP file outside your vBulletin directory and then visiting it.
Code:
<?php
echo '$_SERVER[HTTP_HOST] = ' . $_SERVER['HTTP_HOST'] . '<br>';
echo '$_SERVER[SERVER_NAME] = ' . $_SERVER['SERVER_NAME'];
exit;
It should show the hostname and servername as PHP receives it from the server, because in this test, there is no other code in between.
If both variables appear to be correct, then the difference lies somewhere in vBulletin's settings or one of your vBulletin add-on settings.
Bookmarks