Heroku PHP 中未找到 Mongo 类
我正在使用 Heroku PHP,并添加了 MongoHQ 插件。
但它在 $m = new Mongo();
行给出了错误“class Mongo not found”;
在 Heroku 上设置 mongo 驱动程序还需要什么?
I am using Heroku PHP, and has added the MongoHQ addon.
But it gives an error "class Mongo not found" at the line $m = new Mongo();
What else do I need to setup mongo driver on Heroku?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
现在已支持。
按照 https://gist.github.com/1288447 中的说明进行操作,
可以将自定义扩展添加到
/app/www/ext/
与您的自定义php.ini
!It is now supported.
Follow the instructions at https://gist.github.com/1288447
Custom extensions can be added to
/app/www/ext/
with your customphp.ini
!Heroku 目前不支持 Mongo PHP 类。
是的,您可以添加 MongoHQ 插件等,但 Mongo 驱动程序仍然不适用于 PHP。这个答案来自 Heroku 支持。
Heroku currently does not support Mongo PHP classes.
Yeah, you can add the MongoHQ add-on etc, but Mongo driver is still not available for PHP yet. This answer comes for Heroku support.