为我的本地WordPress使用在线数据库

时间:2019-04-12 15:42:11

标签: database wordpress configuration phpmyadmin config

我必须在wordpress项目中与一位朋友一起工作,我们希望能够与本地的所有人一起工作。 为此,我们使用git来具有相同的代码,但是我们需要使用相同的数据库。 我在线创建了一个数据库:

https://xxxx.xxxxxx.com/phpmyadmin

我将wp-conf文件编辑为具有以下内容:

define( 'DB_NAME', 'db_name' );

define( 'DB_USER', 'admin' );

define( 'DB_PASSWORD', '******' );

define( 'DB_HOST', 'https://xxxx.xxxxxx.com' );

我已经尝试过:

define( 'DB_HOST', 'xxxx.xxxxxx.com/phpmyadmin' );

define( 'DB_HOST', 'http://xxxx.xxxxxx.com' );

define( 'DB_HOST', 'http://xxxx.xxxxxx.com/phpmyadmin' );

等...

谢谢

本杰明。

2 个答案:

答案 0 :(得分:0)

如果您在https://codex.wordpress.org/Editing_wp-config.php此处参考编解码器来设置DB_HOST

格式应为

define( 'DB_HOST', 'the_ip_of_the_server' );

,或者在某些情况下需要设置端口。

define( 'DB_HOST', 'mysql.example.com:3307' );

If your host uses Unix sockets or pipes, adjust the DB_HOST value in the wp-config.php file accordingly.

define( 'DB_HOST', '127.0.0.1:/var/run/mysqld/mysqld.sock' );
// or define( 'DB_HOST', 'localhost:/var/run/mysqld/mysqld.sock' );
// or define( 'DB_HOST', 'example.tld:/var/run/mysqld/mysqld.sock' );

答案 1 :(得分:0)

要解决此问题:我只是将数据库公开。