Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Drupal 6 如何连接到数据库?我习惯 Drupal 7 有一个 setting.php 文件,要求输入数据库名称、用户和密码,但 Drupal 6 setting.php 文件完全不同。
您需要$db_url在站点的 settings.php 文件中设置变量。
$db_url
例子
// mysql://username[:password]@hostname[:port]/databasename $db_url = 'mysql://root@localhost/testdrupal';