在 Yii 控制台应用程序中不自动加载 Mongo 类

2022-01-04 00:00:00 mongodb console php yii

我正在使用 Yii &mongodb(YiiMongoDbSuite 扩展),并创建了一个控制台应用程序.但它不起作用给出错误,

I am using Yii & mongodb(YiiMongoDbSuite extension), and created a console application. But its not working giving the error,

include(Mongo.php): 无法打开流:没有那个文件或目录在文件/var/www/yii/framework/YiiBase.php 第 418 行

include(Mongo.php): failed to open stream: No such file or directory in file /var/www/yii/framework/YiiBase.php at line 418

我已将 console.php 配置为包含所有模块、组件和模型.但是还是报错.

I have configure the console.php to include all the modules, components and models. But still giving the error.

推荐答案

Mongo class 是 php mongo 扩展的一部分,与 YiiMongoDbSuite 无关.这意味着未加载 mongo php 扩展.确保您的 cli php 使用了正确的(或任何)php.ini.您可能已经在 httpd.conf 中定义了 ini 路径,但它仅供 apache 使用.
最简单的解决方法是将 php.ini 放入您的 php 文件夹中.

Mongo class is a part of php mongo extension, it is not related to YiiMongoDbSuite. This means that mongo php extension is not loaded. Make sure, that your cli php is using proper (or any) php.ini. You might have defined ini path in httpd.conf, but it is used only by apache.
Easiest fix is to drop php.ini into your php folder.

相关文章