Patterns for replicating user data from one software to another - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T05:51:57Zhttp://stackoverflow.com/feeds/question/470927http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/470927/patterns-for-replicating-user-data-from-one-software-to-another0Patterns for replicating user data from one software to anotherandybaird2009-01-22T21:42:29Z2009-03-02T12:11:01Z
<p>I have a website that I've integrated with a popular forum software (phpBB).
I have it setup so users that login to the main site automatically are logged in to the forum software as well. I do this by authenticating through the forum's API at the very same time.</p>
<p>When someone registers for the site, an entry goes in to the main site database and an entry goes in to the forum user database (using the forum API).</p>
<p>The primary id of the forum user table is stored in a column in the main site user DB. This is saved at the time of registration: the registration process first creates a forum user, then passes back the ID in to the query that creates the user in the main site.</p>
<p>When a user logs in, if they authenticate with the main site, that ID is pulled and passed in to the forum login API to login the correct person.</p>
<p>However, a weird thing seems to happen randomly: one in every 30 or 40 people that registers ends up with a forum user id that is not their own in the main site user table. I know how to look for these problems and fix them on case by case basis and have scripts in place to do so, but that seems like more of a bandaid, not a fix. </p>
<p>Is this a common problem when linking data like this, or does this seem like something more specific with the software? Because of the randomness of this issue its been hard to debug.</p>
http://stackoverflow.com/questions/470927/patterns-for-replicating-user-data-from-one-software-to-another/471055#4710551Answer by le dorfier for Patterns for replicating user data from one software to anotherle dorfier2009-01-22T22:16:00Z2009-01-22T22:16:00Z<p>I would suspect Session Management. Are you intentionally or unintentionally reusing session ids?</p>
http://stackoverflow.com/questions/470927/patterns-for-replicating-user-data-from-one-software-to-another/602095#6020950Answer by Osama ALASSIRY for Patterns for replicating user data from one software to anotherOsama ALASSIRY2009-03-02T12:11:01Z2009-03-02T12:11:01Z<p>I've done something similar with vbulletin, by directly using the forum's mysql database to autheticate the main site, and other sites (they're all on the same machine)...</p>
<p>In your case, I would add the site-specific fields that are not in phpBB database in the site's db, and link it to phpbb by user_id... It could be one form on the main sites that inserts into the two databases (some in the main site db, others in phpBB db - with some more privileges fields), I'd use my own non-standard captcha like generating a distorted image "what is x+y" with x and y as random numbers and + may be replaced by other operations, or an image of "type the word ORANGE", or "type your username again"</p>
<p>I would disable the default phpBB registration... there are so many bots that know how to use it...</p>
<p>This would guarantee you have one source for the info, and you fill all the info at once.</p>