The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#2
|
|||
|
|||
![]()
I never got any replies, so I tried working around the limitations. Here's what I did to allow an external registration form to register users in vBulletin, in case anyone can use it.
I turned 'allow registration' back on, and then edited the navbar template so that it doesn't show the "register" link. Given that our forum URL isn't advertised outside the site, and you need to register in order to "see" them, I'm not too worried about people trying to register directly via the forums. Then it was a relatively simple matter of making a form containing the user data (which will eventually be pulled from our custom registration page) which submits to the vB register.php page. It's important to include the "agree" variable, otherwise it will assume that you haven't yet agreed to the terms of the site. HTML Code:
<form action="forums/register.php" method="post"> <input type="hidden" name="do" value="addmember"> <input type="hidden" name="agree" value="1"> HTML Code:
<input type="text" name="email" value="email@wherever.com" readonly> <BR> <input type="text" name="emailconfirm" value="email@wherever.com" readonly> <BR> <input type="text" name="password" value="abcd1234" readonly> <BR> <input type="text" name="passwordconfirm" value="abcd1234" readonly> <BR> HTML Code:
<input type="hidden" name="options[adminemail]" value="1"> <input type="hidden" name="dst" value="2"> |
Thread Tools | |
Display Modes | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|