Questions tagged «wp-config»

wp-config.php是WordPress的配置文件,是升级过程中不会被覆盖的少数几个文件之一。这对于运行WordPress至关重要,因为它包含连接到数据库所需的信息

2
使用wordpress wp-config文件连接到数据库
如何使用wp-config.php文件连接到数据库? 我正在尝试使脚本对Wordpress更友好,并且我需要连接到数据库,但无需将脚本安装为插件。 基本上我在剧本上 $host = "xxxxxxxxxxx"; //database location $user = "xxxxxxxxxxx"; //database username $pass = "xxxxxxxxxxx"; //database password $db_name = "xxxxxxxx"; //database name //Database Connection $link = mysql_connect($host, $user, $pass); mysql_select_db($db_name); 该脚本不能作为插件安装(这可以使事情变得更容易),因此我需要在安装时使用现有的wp-config.php连接到数据库。 提前致谢 编辑和澄清 1-我需要直接使用wp-config.php,无需修改。2-脚本位于www.example.com/script/ 3-不能作为插件完成,因为脚本的核心需要公开访问,而没有任何登录屏幕跳动。4-我的问题基本上是如何通过修改上面的脚本使用wp-config.php文件连接到数据库。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.