当我尝试运行使用 CodeIgniter 编写的项目时出现 Xampp 未知错误

Posted

技术标签:

【中文标题】当我尝试运行使用 CodeIgniter 编写的项目时出现 Xampp 未知错误【英文标题】:Xampp Unknown Error When I Try to Run Project Written with CodeIgniter 【发布时间】:2012-08-22 09:18:07 【问题描述】:

我下载并安装了 Xampp 1.8.0 和 1.5.0(针对不同版本的 php)。它们都与 HelloWorld 程序一起使用,但是当我尝试运行 CodeIgniter 项目时,它会出现此错误。

它显示“数据库出现问题”和“无法使用数据库服务器提供的配置建立连接”。几乎到处检查(CodeIgniter、Xampp、Wamp)每个站点和每个版本。我该怎么办?

【问题讨论】:

【参考方案1】:

如果您转到codeigniterapplication 文件夹,将会有一个config 文件夹,其中包含一个名为database.php 的文件。此文件包含您的应用程序的数据库连接。

类似这样的:

/*
| -------------------------------------------------------------------
| DATABASE CONNECTIVITY SETTINGS
| -------------------------------------------------------------------
| This file will contain the settings needed to access your database.
|
| For complete instructions please consult the 'Database Connection'
| page of the User Guide.
|
| -------------------------------------------------------------------
| EXPLANATION OF VARIABLES
| -------------------------------------------------------------------
|
|   ['hostname'] The hostname of your database server.
|   ['username'] The username used to connect to the database
|   ['password'] The password used to connect to the database
|   ['database'] The name of the database you want to connect to
|   ['dbdriver'] The database type. ie: mysql.  Currently supported:
                 mysql, mysqli, postgre, odbc, mssql, sqlite, oci8
|   ['dbprefix'] You can add an optional prefix, which will be added
|                to the table name when using the  Active Record class
|   ['pconnect'] TRUE/FALSE - Whether to use a persistent connection
|   ['db_debug'] TRUE/FALSE - Whether database errors should be displayed.

如果您在应用程序中使用数据库,请确保此文件中的连接设置正确。

如果您没有在应用程序中使用数据库,则可能会自动加载数据库连接,这会导致您的应用程序失败。在这种情况下,转到位于同一文件夹中的 autoload.php 文件并检查以下行:

/*
| -------------------------------------------------------------------
|  Auto-load Libraries
| -------------------------------------------------------------------
| These are the classes located in the system/libraries folder
| or in your application/libraries folder.
|
| Prototype:
|
|   $autoload['libraries'] = array('database', 'session', 'xmlrpc');
*/

$autoload['libraries'] = array('database');

如果 database 正在自动加载,请将其从数组中删除,您的应用程序应该可以正常工作。

【讨论】:

非常感谢您解决了我的问题,我正在检查代码,因此数据库用户名等不同,再次感谢您。

以上是关于当我尝试运行使用 CodeIgniter 编写的项目时出现 Xampp 未知错误的主要内容,如果未能解决你的问题,请参考以下文章

已添加具有相同键的项-查询中没有重复列

编写器故障排除:不使用CodeIgniter 3自动加载的类

codeigniter - 连接失败:0 发送 ios 通知时

在 Codeigniter 中设置跨域

使用 Codeigniter + Simplepie 写入权限

尝试使用 Ajax 从远程服务器下载文件,但 Codeigniter 不起作用