You can integrate Codoforum with your existing user login system using SSO.
Codoforum uses JSONP to make cross-domain single sign on possible.
The requests between your website and codoforum is secured by a shared security key.
Install the Single sign on plugin from Codoforum backend -> Plugins
Click on Settings link for the Single sign on plugin to enter the settings page.
Here is a basic rundown of all the inputs required on the settings page.
This should be the name of the website. It is used by the uni_login plugin.
This is a public key and can be any valid string. It is recommended that you use your forum name here.
This is the private security key which will be shared by your website and codoforum. It can be any valid string.
Codoforum will make the jsonp request to this path to get the logged in user details.
The link to your website login form. For eg. http://mywebsite.com/login.php
Additionaly, you can add a parameter at the end so that your website knows that the request has come from codoforum.
i.e http://mywebsite.com/login.php?referrer=codoforum
Then, you can then check if $_GET['referer'] === 'codoforum'
and redirect the user back to codoforum after he logs in your website.
All this will help improve user experience.
This is your website's user logout link.
You can again do the same as done for login to redirect the user back to codoforum after logout.
The link to your website's user register form.
Download/fork the skeleton sso integrator from here: https://github.com/evnix/codoforum-sso
Now, you only have to edit and upload the file client.php and sso.php to your server(website) but do not edit sso.php.
The client.php
file is heavily documented to help you with the setup.
Make sure the code in the file is executed only when Codoforum requests for the SSO Get User Path as defined above in SSO plugin settings.
Thats it folks.