微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

php – imap_open()表示“无效的远程规范”并且无法连接

当我尝试使用imap_open时,我收到以下错误

Warning: imap_open() [function.imap-open]: Couldn't open stream {mail.domain.com:110/pop3/novalidate-cert/} in /path/to/mailBox.PHP on line 5
Can't open mailBox {mail.domain.com:110/pop3/novalidate-cert/}: invalid remote specification

我的PHPinfo说我有

IMAP c-Client Version   2007e
SSL Support             enabled
Kerberos Support        enabled

在为imap提供相同PHPinfo的另一台服务器上它可以工作,虽然那个版本是2006.PHP说它是用以下设置编译的:

'./configure' '--disable-path-info-check' '--enable-exif' '--enable-fastcgi' '--enable-ftp' '--enable-gd-native-ttf' '--enable-libxml' '--enable-mbstring' '--enable-pdo=shared' '--enable-soap' '--enable-sockets' '--enable-zip' '--prefix=/usr' '--with-bz2' '--with-curl=/opt/curlssl/' '--with-freetype-dir=/usr' '--with-gd' '--with-gettext' '--with-imap=/opt/PHP_with_imap_client/' '--with-imap-ssl=/usr' '--with-jpeg-dir=/usr' '--with-kerberos' '--with-libexpat-dir=/usr' '--with-libxml-dir=/opt/xml2' '--with-libxml-dir=/opt/xml2/' '--with-MysqL=/usr' '--with-MysqL-sock=/var/lib/MysqL/MysqL.sock' '--with-MysqLi=/usr/bin/MysqL_config' '--with-openssl=/usr' '--with-openssl-dir=/usr' '--with-pdo-MysqL=shared' '--with-pdo-sqlite=shared' '--with-pgsql=/usr' '--with-png-dir=/usr' '--with-sqlite=shared' '--with-ttf' '--with-xpm-dir=/usr' '--with-zlib' '--with-zlib-dir=/usr'

解决方法:

看来,如果你在ssl或novalidate-cert之类的选项后面添加一个尾随/后一个,你会得到一个远程规范错误.删除尾随/,它的工作原理!

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐