ion_auth に問題があります。必要なすべてのファイルを Mongodb に適合するように変換しました。私の設定ファイルmongo_db.php
<?
$config['mongo_host'] = 'localhost';
$config['mongo_port'] = 27017;
$config['mongo_db'] = 'tls_saas';
$config['mongo_user'] = 'root';
$config['mongo_pass'] = 'root';
$config['mongo_persist'] = TRUE;
$config['mongo_persist_key'] = 'ci_mongo_persist';
?>
ion_auth.php
$config['use_mongodb'] = TRUE;
/*
| -------------------------------------------------------------------------
| MongoDB Collection.
| -------------------------------------------------------------------------
| Setup the mongodb docs using the following command:
| $ mongorestore sql/mongo
|
*/
$mongorestore = 'sql/mongo';
$config['collections']['users'] = 'users';
$config['collections']['groups'] = 'groups';
$config['collections']['login_attempts'] = 'login_attempts';
しかし、それでもエラーが発生します
存在しないクラス: Mongo_db
彼らはこれ以上変更を加える必要があります。ion_auth は現在 mongodb で動作していますか??