Hey guys, I had the same problem many of you were having with the gxboxlive redirecting to the index and I needed this hack for my signature generator I offer to our users. I just wanted to let you know I got this hack working on my vb4 (
which you can see here) by deleting the following bits from gxboxlive.php:
Code:
define('VB_PRODUCT', 'gxboxlive');
and
Code:
if (!$vbulletin->options['gxbl_user_field'] || !$gxblprod['active'])
{
standard_error(!$vbulletin->options['gxbl_user_field']?"gXboxLive is not configured properly. Please configure gXboxLive in vBulletin Options.":"gXboxLive is currently disabled.");
exit;
}
After that, the page come up fine, although there are some template problems and I'm not sure if it's updating the gamerscore of people which is the most important part for me. Hopefully this helps some of you out, until Gryphon can release an update.