Jump to content

User Help


MistakenSanity

Recommended Posts

Yes, but it's a bit annoying to do. You'd have to look at both of the applications' SQL databases and see what the differences/similarities between their structure is. Most user tables have columns for username, email, and all that jazz - you should mostly be concerned with any user_id column. You will either have to change one of the user tables to match the other (in terms of column names) OR make a reference table that has each users ID's in the same row. If you take the first option, you'll have to change the application that uses the changed database as well - make it point to the new tables and columns. You would also have to update any references to the ID's in the other tables that are on the same database as the changed table... If you choose to make a reference table, you're up a similar creek because you must now edit all of the login/logout queries in your applications.

 

In short, it's a lot of work and I only really suggest it if you don't have a lot of experience with PHP and SQL. A lot of forums have built in (or modular) chat applets so that you don't have to worry about crossing databases like this.

 

If you do do it, back up your databases first - you might even consider testing it on empty tables first.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.