Categories
WordPress

WordPress 无法发送邮件

发送邮件失败

centos
lnmp 1.2.0
wordpress 4.2.4
contact-form 无法发送邮件

原因是 sendmail 没有被安装

yum install sendmail
service sendmail start
locate sendmail 查看 sendmail 所在的目录
/usr/sbin/sendmail 不出意外会看到,也就安装好了

vi /usr/local/php/etc/php.ini 编辑 php 设置文件
?sendmail_path
sendmail_path = /usr/sbin/sendmail -t -i 修改为这样,绝对路径
lnmp restart 重启 lnmp

done

参考:

LNMP的mail函数不能发送邮件解决办法

LNMP笔记:解决mail函数不能发送邮件

Categories
WordPress

页面无法滚动

针对 One 主题进行二次开发,添加 semantic 之后,页面无法滚动

原因是 semantic 的第 240行左右,定义了 html, body { height:100%}

注释掉就可以了

Categories
WordPress

Godaddy主机上WordPress SMTP 邮件发送失败

在Godaddy主机上尝试邮件SMTP发送
失败,原因是Godaddy禁用了所有的第三方SMTP服务支持,只能使用原生的php mail()函数来发送邮件
想要使用SMTP就必须使用Godaddy的SMTP服务
方法为开通其免费的邮件服务,设置好邮箱之后按照其提供好的信息设置SMTP

http://wordpress.org/support/topic/woocommerce-email-notifications-not-working/page/2
个人博客,关于godaddy上使用email forwarding
https://joshbetz.com/2008/12/using-gmail-for-godaddy-email
Godaddy免费邮箱申请与使用和解决Godaddy主机SMTP发信问题

Godaddy免费邮箱申请与使用和解决Godaddy主机SMTP发信问题

Categories
WordPress

Wordpres wp-bootstrap-navwalker 添加搜索框