Codeigniter 问题,带自动加载数据库
我正在启动一个新的 CodeIgniter 项目,当我自动加载数据库类时出现 404 错误。还有其他人遇到过这个问题吗?其原因何在?我将不胜感激任何建议。我也开始了一个新项目并且它成功了。我在将数据库添加到自动加载列表时遇到了问题...
谢谢
I am starting a new CodeIgniter project and I get a 404 error when I autoload the database class. Has anyone else run into this issue. What is the cause of it? I would appreciate any advice. Also I have started with a new project and it worked. I encountered the issue when I added database to the autoload list...
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您对数组有多熟悉?在 /application/config/autoload.php 中,您的 $autoload['libraries'] 数组应包含“database”。
如果您没有其他库自动加载,它应该如下所示:
仅供参考:请在下次提问时发布您尝试过的内容 - 但欢迎来到 SO!
How familiar are you with arrays? in /application/config/autoload.php, your $autoload['libraries'] array should include 'database'.
If you have no other libraries autoloading, it should look like this:
FYI: Please post what you've tried next time you ask a question - but welcome to SO!