PDA

View Full Version : Looking For A Way To Have Custom Registration Page/Options


chrymo
08-31-2011, 01:43 PM
Good Day Fellow VB users,

I am aware that there are plugins that could probably in one way or another handle what I want done by VBulletin, You could suggest resources and links I could learn how to do the feature I want or if there is an out of the box solution then it would be better.

So Here Goes:

I have set a subforum that is only accessible to an assigned usergroup with a name "Premium Users".

Now, I have this separate landing page that I am putting enticing visitors to become premium users on my forum. However there is a regular "Free" usergroup as well.

I will point visitors and "free" members to this landing page and allow the ff:

1. visitors and registered members already on the forum upgrade to the "premium" usergroup.

2. new members can directly register to the "premium" usergroup.

Thus I think if it can be done, I need the registration page to check where the user is coming from, so for example the landing page is located at www.landingpage.com/premium then they are shown a registration page that automatically assigns new users to the "premium" usergroup.

Alternately if for example I create a new usergroup named "platinum" and the landing page is at www.landingpage.com/platinum is used to go the the registration page, then new users will be registered on the "platinum" usergroup.

Any Ideas?

Chris

vbresults
08-31-2011, 08:25 PM
<a href="https://vborg.vbsupport.ru/showthread.php?t=263521" target="_blank">https://vborg.vbsupport.ru/showthread.php?t=263521</a>

chrymo
09-01-2011, 01:15 AM
Hi, Thanks YOU, actually I saw this yesterday, the problem I have with this is the selection process, I would have loved to be able to provide separate registration pages i.e. register page for "free" , "premium" and higher levels with unique usergroup assignments.

For example I can point free registrants to: mysite.com/registerfree.php
premium to mysite.com/registerpremium.php

Is there such a way to do this?

Thanks Again

vbresults
09-01-2011, 01:51 AM
.htaccess

RewriteRule registerpremium.php register.php [R]
RewriteRule registerfree.php register.php?do=order_subscription&lancerforhire_paid_registration_free=true [R]

chrymo
09-01-2011, 02:20 AM
Hi,

I figured it has something to do with htaccess, will look deeply on the mod, its the paid system process that will bug me a little since when they get to that link members have already paid...

--------------- Added 1314847645 at 1314847645 ---------------

This Mod is great when I need paid members in the future on registration. What I currently need is to provide members who already paid outside of the vbulletin system to be able to have a sort of unique link with unique usergroup for them to register in...

--------------- Added 1314879673 at 1314879673 ---------------

Just To Clarify I would like something like this:

www.mysite.com/registerfree.php -------------------> Registers only "Free" Usergroup
www.mysite.com/registerpremium.php -------------> Registers "Premium" Usergroup
www.mysite.com/registerplatinum.php--------------> Registers "Platinum" Usergroup
and so on...

Like having separate register.php file for each usergroup.

Please point me into the right direction, since Ive been searching for almost 36 hours now total and I couldnt find any info on how to do this.