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.
当我安装 Joomla 时,mysqli是默认选项,所以我安装了 mysqli 驱动程序。
但是我客户的数据库是mysqli。因此,当我将本地站点迁移到主机时,出现此错误:
数据库连接错误 (1): MySQL 适配器 'mysqli' 不可用。
有人可以知道我如何更改/返回“mysql”驱动程序吗?因为我在 localhost 中使用“mysqli”驱动程序配置了我的所有 Joomla 站点。
打开 configuration.php 并更改:
public $dbtype = 'mysqli';
对此
public $dbtype = 'mysql';