gpt4 book ai didi

php - mysqli::real_connect(): (HY000/1049): codeigniter 中的未知数据库错误

转载 作者:行者123 更新时间:2023-12-05 01:00:39 26 4
gpt4 key购买 nike

我是 Codeigniter PHP 框架的新手。当我测试我的应用程序时,出现“未知数据库 db_name”错误。我浏览了几个站点,但没有找到问题的解决方案,因为我正在尝试连接 wamp 的 mysql 数据库。任何帮助都将不胜感激。

以下是config文件夹中的database.php:image describing Test database :

$active_group = 'default';
$query_builder = TRUE;

$db['default'] = array(
'dsn' => '',
'hostname' => 'localhost',
'username' => 'root',
'password' => '',
'database' => 'test',
'dbdriver' => 'mysqli',
'dbprefix' => '',
'pconnect' => TRUE,
'db_debug' => TRUE,
'cache_on' => FALSE,
'cachedir' => '',
'char_set' => 'utf8',
'dbcollat' => 'utf8_general_ci',
'swap_pre' => '',
'encrypt' => FALSE,
'compress' => FALSE,
'stricton' => FALSE,
'failover' => array()
);

最佳答案

我在安装新的 wampserver 3.2.0 时遇到了同样的错误,它默认安装 MariaDB 并且分配了 3306 端口,你甚至无法更改它。我认为 codeigniter/php 默认会尝试连接到这个端口。我使用了以下,它对我有用,即 hostname => 'localhost:3308'

 $db['default'] = array(
'dsn' => '',
'hostname' => 'localhost:3308',
'username' => 'root',
'password' => '',
'database' => 'soft',
'dbdriver' => 'mysqli',
'dbprefix' => '',
'pconnect' => FALSE,
'db_debug' => (ENVIRONMENT !== 'production'),
'cache_on' => FALSE,
'cachedir' => '',
'char_set' => 'utf8',
'dbcollat' => 'utf8_general_ci',
'swap_pre' => '',
'encrypt' => FALSE,
'compress' => FALSE,
'stricton' => FALSE,
'failover' => array(),
'save_queries' => TRUE
);

关于php - mysqli::real_connect(): (HY000/1049): codeigniter 中的未知数据库错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48355946/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com