Connecting to Gmail IMAP PHP quot;Couldn#39;t open streamquot;(连接到 Gmail IMAP PHP“无法打开流)
问题描述
有很多人有类似的问题,但没有人回答他们的问题.我在 PHP 中启用了 IMAP,使用了所有正确的信息.我看不出哪里出错了.
这是我的代码:
$hostname = '{imap.gmail.com:995/imap/ssl/novalidate-cert}';$username = 'emailaddress@gmail.com';$password = '密码';$inbox = imap_open($hostname,$username,$password) or die('Cannot connect to Gmail: ' . imap_last_error());print_r(imap_errors());
不返回任何错误,除了:
<块引用>警告:imap_open() [function.imap-open]:无法打开流{imap.gmail.com:995/imap/ssl/novalidate-cert} 在/home/a8066360/public_html/test/imap.php 在第 6 行
无法连接到 Gmail:无法连接到 gmail-imap.l.google.com,995:连接超时
我注意到如果我将单引号更改为 `<块引用>
shell_exec() 出于安全原因已被禁用...
请帮忙!!!
你需要993端口,SSL IMAP端口.
端口 995 是 SSL POP3 端口.
There are lots of people having similar issues but no one is answering their questions. I have IMAP enabled in PHP, Using all the correct information. I don't see where I'm going wrong.
Here's my code:
$hostname = '{imap.gmail.com:995/imap/ssl/novalidate-cert}';
$username = 'emailaddress@gmail.com'; $password = 'password';
$inbox = imap_open($hostname,$username,$password) or die('Cannot connect to Gmail: ' . imap_last_error());
print_r(imap_errors());
Not returning any errors other than:
Warning: imap_open() [function.imap-open]: Couldn't open stream {imap.gmail.com:995/imap/ssl/novalidate-cert} in /home/a8066360/public_html/test/imap.php on line 6
Cannot connect to Gmail: Can't connect to gmail-imap.l.google.com, 995: Connection timed out
I've noticed that if I change the single quotes to `
shell_exec() has been disabled for security reasons...
Please help!!!
You need port 993, the SSL IMAP port.
Port 995 is the SSL POP3 port.
这篇关于连接到 Gmail IMAP PHP“无法打开流"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:连接到 Gmail IMAP PHP“无法打开流"
基础教程推荐
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 在多维数组中查找最大值 2021-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01