【问题标题】:Failed opening required 'PHPMailer-master/PHPMailerAutoload.php' (include_path='.:/usr/share/pear:/usr/share/php')未能打开所需的 'PHPMailer-master/PHPMailerAutoload.php' (include_path='.:/usr/share/pear:/usr/share/php')
【发布时间】:2016-10-05 00:02:26
【问题描述】:

我有一个托管服务器,我在其中编写了一个错误的 php 代码,我无法访问 php.ini 作为它的托管服务器来更改任何内容

错误:致命错误:require():在 /home/vhosts 中打开所需的 'PHPMailer-master/PHPMailerAutoload.php' (include_path='.:/usr/share/pear:/usr/share/php') 失败/evoting.freevar.com/vote/mailtest.php 在第 2 行

PHP 代码:

<?php
    require 'PHPMailer-master/PHPMailerAutoload.php';

        //Create a new PHPMailer instance
        $mail = new PHPMailer();
        //Tell PHPMailer to use SMTP
        $mail->isSMTP();
        //Enable SMTP debugging
        // 0 = off (for production use)
        // 1 = client messages
        // 2 = client and server messages
        $mail->SMTPDebug = 2;
        //Ask for HTML-friendly debug output
        $mail->Debugoutput = 'html';
        //Set the hostname of the mail server
        $mail->Host = 'smtp.gmail.com';
        //Set the SMTP port number - 587 for authenticated TLS, a.k.a. RFC4409 SMTP submission
        $mail->Port = 587;
        //Set the encryption system to use - ssl (deprecated) or tls
        $mail->SMTPSecure = 'tls';
        //Whether to use SMTP authentication
        $mail->SMTPAuth = true;
        //Username to use for SMTP authentication - use full email address for gmail
        $mail->Username = "sample@gmail.com";
        //Password to use for SMTP authentication
        $mail->Password = "password";
        //Set who the message is to be sent from
        $mail->setFrom('sample@gmail.com', 'Evoting System');
        //Set an alternative reply-to address
        $mail->addReplyTo('sample@gmail.com', 'Evoting System');
        //Set who the message is to be sent to
        $mail->addAddress('azaz3@gmail.com', '');
        //Set the subject line
        $mail->Subject = 'EVoting Otp ';
        //Read an HTML message body from an external file, convert referenced images to embedded,
        //convert HTML into a basic plain-text alternative body
        $mail->msgHTML('23bj34');
        //Replace the plain text body with one created manually
        $mail->AltBody = 'sddsfsd23';
        //Attach an image file
        // $mail->addAttachment('images/phpmailer_mini.gif');

        // send the message, check for errors
        if (!$mail->send()) {
             echo "Mailer Error: " . $mail->ErrorInfo;
        } else {
     echo "Message sent!";
        }

?>

我阅读了有关 * 的相关帖子,但尚未成功。提前致谢!

【问题讨论】:

标签: php phpmailer


【解决方案1】:

这不是火箭科学 - 错误消息非常清楚 - 您只需要使用正确的自动加载器路径(以及其余的 PHPMailer 文件),无论您的服务器在哪里。无需编辑 php.ini。

【讨论】:

    【解决方案2】:

    你可以检查你当前的工作目录,像这样:

    echo getcwd();
    

    如果这样做,您将看到哪个是您的活动文件夹。您需要做的下一件事是检查您的活动文件夹中是否有PHPMailer-master 文件夹(如果您使用的是Linux,则区分大小写)。如果它不存在,那么您将需要指向正确的位置,或者创建文件夹并将文件复制到其中。如果存在,请检查您是否具有必要的权限以及该文件夹内是否有一个名为 PHPMailerAutoload.php 的文件(同样,如果您使用的是 Linux,则区分大小写)。

    【讨论】:

    • 感谢@Lajos Arpad 获得 cwd 后它对我有用。现在的另一个问题是我无法从 web 托管服务器发送 smtp 邮件,而它为 localhost 工作。
    • @Ajazz,很高兴。您遇到的另一个问题是另一个问题。您将需要查看服务器上的错误日志,并查看您正在回显的邮件错误。