从一个数据库运行多个站点

发布于 2024-11-01 10:10:13 字数 225 浏览 1 评论 0原文

我已经设置了以下内容:

1.将wordpress定制为cms。

2.跨多个域(而不是子域)设置 WordPress 多站点网络。

现在我只想知道是否可以从一个数据库运行多个 WordPress 站点?我有 10 个网站,需要从一个数据库运行它们,这会产生什么后果?

这纯粹是出于成本考虑,因为我的主机按数据库收费,所以我不想购买 10 个数据库(一次 25 英镑!)。

I've setup the following:

1.Tailored wordpress into a cms.

2.Setup the wordpress multisite network across several domains (rather than sub domains).

Now I just want to know is it possible to run several wordpress sites from one database? I have 10 websites and need to run them from one database, what would be the consequences of this?

This is purely down to costs as my host charges per database so I don't want to buy 10 databases (at £25 a time!).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一桥轻雨一伞开 2024-11-08 10:10:13

似乎可以在一个 mySQL 数据库中运行多个 WordPress 安装。每个安装都会使用不同的表名前缀。来自安装说明

单一数据库

与上述多数据库解决方案一样,每次安装的 wp-config.php 文件都会有所不同。然而,在这种情况下,每个博客只有一行是唯一的:

 $table_prefix = 'wp_'; // 示例:'wp_' 或 'b2' 或 'mylogin_' 

默认情况下,WordPress 为其 MySQL 数据库表分配表前缀 wp_,但此前缀可以是您选择的任何前缀。通过使用多个博客,您可以为数据库中的每个博客创建唯一标识符。例如,假设您要设置三个博客,名称分别为“Main”、“Projects”和“Test”。您想用前缀 wp_ 替换每个博客的 wp-config.php

It seems to be possible to run multiple Wordpress installations in only one mySQL database. Each installation would use a different table name prefix. From the installation instructions:

Single Database

As with the multiple databases solution described above, the wp-config.php file will vary for each installation. In this case, however, only a single line will be unique to each blog:

  $table_prefix = 'wp_'; // example: 'wp_' or 'b2' or 'mylogin_' 

By default, WordPress assigns the table prefix wp_ to its MySQL database tables, but this prefix can be anything you choose. By using more than one, you create unique identifiers for each blog in your database. For example, let's say you have three blogs to set up, with the names Main, Projects and Test. You want to substitute the prefix wp_ for each blog's wp-config.php

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文