Home : Products : Gossamer Links : Discussions :

Products: Gossamer Links: Discussions: Re: [V.E.C.T.O.R.] Need help with plugin (starting with SSI) - Auth_vBulletin: Edit Log

Here is the list of edits for this post
Re: [V.E.C.T.O.R.] Need help with plugin (starting with SSI) - Auth_vBulletin
All right, I've finally solved my original problem of integrating Gossamer Links w/ vBulletin 3.8.0. Here's exactly what I did, for anyone else having problems:

1) I went to the homepage (index.php) in vBulletin, and copied the entire login form, as follows:

<!-- login form -->
<form action="login.php?do=login" method="post" onsubmit="md5hash(vb_login_password, vb_login_md5password, vb_login_md5password_utf, 0)">
<script type="text/javascript" src="clientscript/vbulletin_md5.js?v=380"></script>
<table cellpadding="0" cellspacing="3" border="0">
<tr>
<td class="smallfont" style="white-space: nowrap;"><label for="navbar_username">User Name</label></td>
<td><input type="text" class="bginput" style="font-size: 11px" name="vb_login_username" id="navbar_username" size="10" accesskey="u" tabindex="101" value="User Name" onfocus="if (this.value == 'User Name') this.value = '';" /></td>
<td class="smallfont" nowrap="nowrap"><label for="cb_cookieuser_navbar"><input type="checkbox" name="cookieuser" value="1" tabindex="103" id="cb_cookieuser_navbar" accesskey="c" />Remember Me?</label></td>
</tr>
<tr>
<td class="smallfont"><label for="navbar_password">Password</label></td>
<td><input type="password" class="bginput" style="font-size: 11px" name="vb_login_password" id="navbar_password" size="10" tabindex="102" /></td>
<td><input type="submit" class="button" value="Log in" tabindex="104" title="Enter your username and password in the boxes provided to login, or click the 'register' button to create a profile for yourself." accesskey="s" /></td>
</tr>
</table>
<input type="hidden" name="s" value="" />
<input type="hidden" name="securitytoken" value="guest" />
<input type="hidden" name="do" value="login" />
<input type="hidden" name="vb_login_md5password" />
<input type="hidden" name="vb_login_md5password_utf" />
</form>
<!-- / login form -->

2) I added the following to the above code:

<input type="hidden" name="forceredirect" value="1" />
<input type="hidden" name="url" value="<%url%>" />

3) Add the above pieces of code into the login.html template.

That's it! Forget about all the other stuff mentioned throughout this website, because the above works 100%, plain and simple.

Last edited by:

V.E.C.T.O.R.: May 23, 2009, 11:08 PM

Edit Log: