日期:2014-05-25 阅读:2387
dmandwp系统 - wordpress系统和DM系统区块建站>>
在装devel时,不能用simplehtmldom的最新版,会冲突。(具体看simplehtmldom模块的说明),会出现空白页。
http://www.tvdrupal.com/docu_devel.html
如何查找出这个原因的呢:
在includes/module.inc
function module_invoke_all($hook) {
$args = func_get_args();
// Remove $hook from the arguments.
unset($args[0]);
$return = array();
foreach (module_implements($hook) as $module) {
// print "Starting loading $module <br />"; 加上这行
$function = $module . '_' . $hook;
.......
//print "Finished loading $module <br />"; 加上这行
}
然后刷新页面,会发现simplehtmldom模块并没有Finished loading ,就知道是它的原因了。
white screen error http://drupal.stackexchange.com/questions/54239/white-screen-of-death