Drupal 多个数据库前缀
我有多个 drupal 站点运行一个 MySQL 数据库,每个站点使用不同的 $db_prefix。
如果我使用不同的数据库,我可以通过将数据放入 settings.php 中的数组中来共享数据,然后根据需要调用特定的数据库。
是否可以通过调用不同的 $db_prefix 来实现这一点?
I have multiple drupal sites running off one MySQL database each using a different $db_prefix.
If I was using different databases I could share data by putting them in an array in settings.php and then calling specific databases as I need them.
Is it possible to this by calling a different $db_prefix?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在不同站点之间共享单个表,您可以通过将 db_prefix 设置为一个像这样的数组来做到这一点;
如果这是在站点 A 的 settings.php 中,那么它将与站点 B 共享它的 user_roles、角色、会话和用户表。
这是您想要的吗?
You can share individual tables across different sites, you can do this by making db_prefix an array like this;
If this was in the settings.php for site A, then it would share it's user_roles, roles, sessions and users tables with site B.
Is this what you're wanting?