找不到套接字传输“ssl” - 在配置PHP时忘记启用它了吗?

2022-08-30 17:37:36

我正在谷歌搜索如何这个错误很多小时。我已经尝试了这个主题的所有解决方案,但没有运气。 (我使用Appserver而不是IIS的唯一区别)它没有显示任何实现SSL的内容。我还需要尝试什么?<? phpinfo(); ?>

完整的错误消息:

<b>Warning</b>:  fsockopen() [<a href='function.fsockopen'>function.fsockopen</a>]: unable to connect to ssl://smtp.gmail.com:465 (Unable to find the socket transport &quot;ssl&quot; - did you forget to enable it when you configured PHP?) in <b>C:\AppServ\www\webgitz\test\class.smtp.php</b> on line <b>122</b><br />
SMTP -> ERROR: Failed to connect to server: Unable to find the socket transport "ssl" - did you forget to enable it when you configured PHP? (27010016)

和代码:

<?php 

require_once "validation.php";

require_once "PHPMailer.php";


require_once "class.smtp.php";

$email= "foo@gmamcil.com";

$mail = new PHPMailer();
$mail->IsSMTP();
$mail->SMTPAuth   = true; // enable SMTP authentication
$mail->Port       =465;                    // set the SMTP server port
$mail->Host = "smtp.gmail.com"; // GMAIL's SMTP server
$mail->SMTPDebug = 2;
$mail->SMTPSecure = 'ssl';
$mail->Username   = "xxxxxx@gmail.com"; // GMAIL username
$mail->Password   = "*********"; // GMAIL password
$mail->AddReplyTo("XXXXX@gmail.com","AAAA"); // Reply email address
$mail->From = "XXXX@gmail.com";
$mail->FromName = "...."; // Name to appear once the email is sent
$mail->Subject = "...."; // Email's subject
$mail->Body = "Hello World,<br />This is the HTML BODY<br />"; //HTML Body
$mail->AltBody = "..."; // optional, commentA out and test
$mail->WordWrap = 50; // set word wrap
$mail->MsgHTML($msg); // [optional] Send body email as HTML
$mail->AddAddress("$email", "fooo");  // email address of recipient
$mail->IsHTML(true); // [optional] send as HTML

if(!$mail->Send()) echo 'ok'; else echo 'error';    
?>

答案 1

检查你的php.ini文件,如果你有的话:

;extension=php_openssl.dll

将其更改为

extension=php_openssl.dll

之后,请记住重新启动Apache,使用Appserver提供的任何控制面板,或使用系统控制面板上的服务窗口。

还要确保php_openssl.dll位于系统可以访问的文件夹中,许多人使用它们通过将它们复制到C:\windows或C:\windows\system32来解决dll位置问题。虽然这不应该是必要的。

之后,使用phpinfo执行文件并检查它是否已启用。

我在某处读到过,无法确定,那种wamp的某个安装有更多的php.ini,但只有一个是真正活跃的,可能是你编辑错了吗?


答案 2

正确的答案是替换行

;extension=php_openssl.dll

在文件中php.ini

extension=php_openssl.dll

如果在文件中找不到,则只需将以下行附加到文件中即可:extension=php_openssl.dllphp.ini

extension=php_openssl.dll

这应该有效!


推荐