Leg0
Leg0

Reputation: 508

Heroku remote MongoDB connect with php

Im getting error while connecting to remote mongoDb from Heroku facebook app

Class 'Mongo' not found

I guess mongo driver isnt supported out of box? How can i install it on heroku? Thanks

Upvotes: 2

Views: 886

Answers (1)

Leg0
Leg0

Reputation: 508

You just need to install mongo extension to your app

Vendor the Mongo driver with your application. You can download it here:

https://github.com/wuputah/heroku-libraries/raw/master/php/mongo/mongo.so Add it to a folder like "ext".

Add a php.ini file to the root of your application:

extension_dir = "/app/www/ext/" extension=mongo.so

found solution here: https://gist.github.com/1288447

Upvotes: 2

Related Questions