English 中文(简体)
关于将多个不同地点连接到单一社区方面的建筑建议
原标题:Architectural advice on connecting multiple diverse sites into a single community

我的任务是把同一客户的多个网站连接到一个单一网络。 因此,我要听取关于将这些遗址连接到单一社区方面的建筑建议。

These sites include:
1. Invision Power Board Forum (the most important site)
2. 3 custom made cms-s (changes to code allowable)
3. 1 drupal site
4. 3-4 wordpress blogs

Requirements are as follows:
1. Connecting all users of all sites into a single administrable entity. With permissions changing ability, users banning etc.
2. Later on, based on this implementation I have to implement "facebook like" chat, which will be available to all users regardless of place of login.

我对如何做到这一点的想法很少,但愿听取比我自己更有经验的一些人的意见。

Cheers!

问题回答

你们会再次遭受一次损失。 每一个网站平台都有一个非常不同的用户结构:如果不进行大量密码基数的改动,就无法“连接”这些平台。 你们重新审视对每个平台进行深刻变革,与中央数据库进行沟通,有可能修改数千条(如果不是数千条)的法典。

在对所有平台进行明显(大规模)变革的基础上,你再次不得不担心最新情况:新版本的《言论》发表时会发生什么情况? 你可能必须手工更新你们的所有法典(因为你可以略微减少改动)。 你们还必须保证,所有法典改动都符合你目前的数据库。 上帝预示着一个平台开始储存不同的用户信息,从而必须进行更多的大规模的法律变革。 这只是可以维持的。

你的替代办法(最好有条理)是,有某种同步工作,每小时运作:通过每个数据库的每个用户进行检索,进行比较,以了解数据库是否存在,并更新其他数据库。 否则,这些变化就会消失。 问题在于,随着用户越来越多,用户将大大降低。

也许另一种选择是简单地提供常规的开放式信息数据库实施。 我认为,德洛普勒和诺言双方都有开放式的假想,你可以加以利用。 这样,你们就能够让用户在座标点上签有假日记。 倒数是用户可以选择不使用。

uck





相关问题
SQL SubQuery getting particular column

I noticed that there were some threads with similar questions, and I did look through them but did not really get a convincing answer. Here s my question: The subquery below returns a Table with 3 ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

php return a specific row from query

Is it possible in php to return a specific row of data from a mysql query? None of the fetch statements that I ve found return a 2 dimensional array to access specific rows. I want to be able to ...

Character Encodings in PHP and MySQL

Our website was developed with a meta tag set to... <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> This works fine for M-dashes and special quotes, etc. However, I ...

Pagination Strategies for Complex (slow) Datasets

What are some of the strategies being used for pagination of data sets that involve complex queries? count(*) takes ~1.5 sec so we don t want to hit the DB for every page view. Currently there are ~...

Averaging a total in mySQL

My table looks like person_id | car_id | miles ------------------------------ 1 | 1 | 100 1 | 2 | 200 2 | 3 | 1000 2 | 4 | 500 I need to ...

热门标签