Sending email with Swift Mailer, GMail and PHP, Permission Denied Error

只谈情不闲聊 提交于 2019-12-03 07:19:50

We had this problem and the cause turned out to be a SELinux setting that prevents Apache and therefore PHP from opening any outgoing socket connections. We had disabled it but forgot the -P parameter so it was reverted in the next reboot. If you are using CentOS, RHEL or some other SELinux enabled distribution, this is a likely cause for the problem.

The connection restriction can be disabled with this command:

setsebool -P httpd_can_network_connect on
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!