【发布时间】:2020-06-28 12:13:03
【问题描述】:
我有一个cs cart 安装,它曾经可以正常工作,没有任何问题。但是我刚刚发现现在有问题,客户无法完成订单,他们返回500 error页面。在错误日志中我看到了这个错误:
mod_fcgid: stderr: PHP Fatal error: Class 'phpmailer' not found in /var/www/vhosts/example.com/public_html/app/Tygh/Mailer.php on line 18, referer: https://example.com/index.php?dispatch=checkout.checkout
这是Tygh/Mailer.php中出现错误的代码:
namespace Tygh;
class Mailer extends \phpmailer
{ //ln:18
private static $_mailer;
.......
为什么会出现此错误?我该如何解决?在设置页面我有
发送邮件的方法:通过php邮件函数
【问题讨论】: