Abel Rios

Results 2 comments of Abel Rios

Yep, you have to update your paths described by @mikeradvak: `YourApp/app/Plugin/Mongodb/Model/Datasource/MongodbSource.php YourApp/app/Plugin/Mongodb/Model/Behavior/Schemaless.php YourApp/app/Plugin/Mongodb/Model/Behavior/SqlCompatible.php` From there you will have to update bootstrap.php: `CakePlugin::load('Mongodb');` Then in MongodbSource.php: `App::uses('DboSource', 'Model/Datasource');` This got me...

Ran into this the other day. I modified `doc_manager_base.py` as per @nonight89's instructions: ``` def _unset_field(doc, to_unset): try: if "." in to_unset: path = to_unset.split(".") where = _retrieve_path(doc, path[:-1], create=True)...