做独立博客是必须要注意到网站数据的备份的重要性。原来的博客用过一个 WP-DB-Backup 的备份插件,感觉还不错,于是这次也把它给装上了。但尝试发送到邮件时,出错:
Function set_magic_quotes_runtime() is deprecated
纠结啊!看来 php5.3.0 抛弃了不少函数,带来麻烦啊。
谷歌一番,终于找到解决办法了。
在网站的 wp_include 下有个 class-phpmailer.php 的文件,在里面找到
set_magic_quotes_runtime(0);
替换成
ini_set(“magic_quotes_runtime”, 0);
后面还有一句,
set_magic_quotes_runtime($magic_quotes);
换成
ini_set(“magic_quotes_runtime”,($magic_quotes));
这样就搞定了,贴张图休息下!
欢迎转载,转载请注明出处:蔓草札记 » WordPress备份出现错误