我将如何在 Drupal 7 中设置没有模块的单点登录?我让它在 Drupal 6 中运行,但在 settings.php 文件中发生了一些变化,我很难弄清楚这一点。
You can also use a reference to a schema/database as a prefix. This maybe
* useful if your Drupal installation exists in a schema that is not the default
* or you want to access several databases from the same code base at the same
* time.
* Example:
* @code
* 'prefix' => array(
* 'default' => 'main.',
* 'users' => 'shared.',
* 'sessions' => 'shared.',
* 'role' => 'shared.',
* 'authmap' => 'shared.',
* );
* @endcode
* NOTE: MySQL and SQLite's definition of a schema is a database.
这是我需要设置它的代码,我只是不知道将它放在我的 settings.php 文件中的什么位置。有任何想法吗?