在wampserver

时间:2017-04-13 08:20:49

标签: apache email module wampserver

当我启用ssl_module时,apache始终无法正常工作 如果我禁用ssl_module

#LoadModule ssl_module modules/mod_ssl.so

我的wampserver会再次运作。

我尝试使用ghost通过localhost&发送邮件CodeIgniter,我收到了这个错误:

  

遇到PHP错误

     

严重性:警告

     

消息:fsockopen():SSL操作失败,代码为1. OpenSSL错误   消息:错误:14090086:SSL   例程:SSL3_GET_SERVER_CERTIFICATE:证书验证失败

     

文件名:libraries / Email.php

     

行号:2063

     

回溯:

     

文件:D:\ wamp64 \ www \ TracerStudy \ application \ controllers \ regis.php   行:128功能:发送

     

文件:D:\ wamp64 \ www \ TracerStudy \ index.php行:315功能:   require_once

- 更新 - 我收到了这个错误:

  

严重性:警告

     

消息:fsockopen():php_network_getaddresses:getaddrinfo failed:没有这样的主机。

我的代码:

$config = Array(
          'protocol' => 'smtp',
          'smtp_host' => 'ssl://smtp.googlemail.com',
          'smtp_port' => 465,
          'smtp_user' => 'mymail', 
          'smtp_pass' => 'mypassword', 
          'mailtype' => 'html',
          'charset' => 'iso-8859-1',
          'smtp_crypto' => 'ssl',
          'wordwrap' => TRUE
        );

        $this->load->library('email', $config);
        $this->email->set_newline("\r\n");
        $this->email->from('myemail');
        $this->email->to('sendemail'); 
        $this->email->subject('subject');
        $this->email->message('message');
        if($this->email->send())
        {
          echo 'Email sent.';
        }
        else
        {
          show_error($this->email->print_debugger());
        }

1 个答案:

答案 0 :(得分:0)

禁用你的反病毒......它解决了我的问题