PDA

View Full Version : User integration with web application


travisp
04-21-2009, 02:05 AM
(Note: I was redirected from vbulletin.com and so some content may be similar)

I've seen a few posts about similar things, but most seem to be about existing third party applications (e.g. wordpress, joomla).

Basically, I'm developing a PHP web application that I want to have an accompanying message board and I want to integrate my user accounts with the message board such that:


Users don't have to create separate user accounts -- their account for my website will create the vBulletin account.
Users don't have to login separately to vBulletin -- if they login to my website, they should get logged into the vBulletin forum.

I want to do this for a few reasons, but the main one is to encourage forum participation by making it easier for users of the website to jump right into the forums if they wish.

How difficult is it to do this integration with the latest version of vBulletin (some of the mods I found by browsing this site were for older version of vBulletin)? Are there any problems with doing this that I should be aware of?

Dismounted
04-21-2009, 07:49 AM
As long as you have competent knowledge of PHP, this shouldn't be a hard task to do. vBulletin provides a data managers to add/modify/remove data (e.g. users, posts, etc.). Also, the login process is also relatively simple (a few cookies).

Cryo
04-22-2009, 06:56 PM
If suitable, an even easier solution is to have them register with vBulletin then protect the pages you want using vB permissions. It's very easy to accomplish.

travisp
04-23-2009, 02:46 PM
Thank you for the responses. This is what I needed to know and is very helpful. I'll be purchasing vbulletin in just a short while.