尝试连接到 mongo 服务器时出现此错误:
Unable to find the wrapper "mongodb" - did you forget to enable it when you configured PHP?
连接字符串如下所示:
$conn = new Mongo("mongodb://XXXX:XXXX@XXX.member0.mongohq.com:10021/XXX",array("replicaSet" => 'rsname'));
我尝试使用以下方法找出 qhat 包装器可用:
var_dump(stream_get_wrappers());
并得到以下信息:
array
0 => string 'https' (length=5)
1 => string 'ftps' (length=4)
2 => string 'compress.zlib' (length=13)
3 => string 'compress.bzip2' (length=14)
4 => string 'php' (length=3)
5 => string 'file' (length=4)
6 => string 'glob' (length=4)
7 => string 'data' (length=4)
8 => string 'http' (length=4)
9 => string 'ftp' (length=3)
10 => string 'phar' (length=4)
11 => string 'zip' (length=3)
12 => string 'ssh2.shell' (length=10)
13 => string 'ssh2.exec' (length=9)
14 => string 'ssh2.tunnel' (length=11)
15 => string 'ssh2.scp' (length=8)
16 => string 'ssh2.sftp' (length=9)
我检查了 conf.d 文件夹,它们似乎都按照我可以看到的顺序排列,所以我不确定我需要做什么才能允许我使用包装器进行连接,如 php 中的示例所示文档示例。
我正在运行 nginx / PHP 5.3.5-1ubuntu7.11
以前有没有人对此有所了解,或者能够提供一些指导?谢谢。