从BlogEngine迁移到Wordpress完毕,遇到的问题
终于迁移完毕,经历了导数据,更新统计信息,修改bug之后,终于能拿出来见人了,不完美的地方是丢了30多篇文章,和BlogML.xml有关,算了不管他了。
BlogEngine是个非常好的blog框架,架构和层次都很好,还没有完全研究透,但是前几天出了一个bug,于是不想再用了。还有一些原因比如更新太慢,非常的慢;插件和皮肤少等。正好最近学习php和linux,不如换掉吧。
总结问题,由于是在godaddy的windows主机上安装,如果不采用godaddy默认的wordpress安装而选择和我一样的手动安装的话,可能会遇到500问题而无法安装。解决方法是调整根目录下的wp-settings.php如下:
500问题修改
/**
* Used to setup and fix common variables and include
* the WordPress procedural and class library.
*
* You should not have to change this file and allows
* for some configuration in wp-config.php.
*
* @package WordPress
*/
if ( !defined(‘WP_MEMORY_LIMIT’) )
define(‘WP_MEMORY_LIMIT’, ‘64M’); //this line need modify to 128M
if ( function_exists(‘memory_get_usage’) && ( [...]
最近评论