Quote:
Originally Posted by silkie
ok I'm following you there. I understand how it's reading that I already have user account. I tried entering with a different account and I even tried making that new account an admin but I still get an error. the other thing is that now matter who I try to log in as, I don't get the gallery to come up at all. All I get is my vbtemplate and a piece of text that says gallery but I can't click on any album or anything. it's as if there is no gallery and that error won't go away. here's the error I'm getting now:
line: 121, G2 did not return a success status. Here is the error message from G2:
Error (GALLERY_SUCCESS)
in at line 0
here's a screenshot of what it's doing.
|
what is on line 121? is it this:
PHP Code:
else
{
echo '<HR>line: '.__LINE__.', G2 did not return a success status. Here is the error message from G2: <br />'.$ret->getAsHtml();
return false;
}
if so
make sure that the following section, looks like this:
PHP Code:
// User not mapped, create G2 user now
// Get Arguments for the new user:
$args['fullname'] = $vbulletin->userinfo['username'];
$args['username'] = $vbulletin->userinfo['username'];
$args['hashedpassword'] = $vbulletin->userinfo['password'];
$args['hashmethod'] = 'md5';
$args['email'] = $vbulletin->userinfo['email'];
$args['language'] = $vbulletin->userinfo['lang_code'];
$args['creationtimestamp'] = $vbulletin->userinfo['joindate'];
im just guessing, i dont remember how i resolved that on my site...