日期:2015-06-10 阅读:2829
dmandwp系统 - wordpress系统和DM系统区块建站>>
在drupal的page.tpl.php模板里,有个区域是:
<?php if($is_admin): ?>
<?php print $messages; ?>
<?php endif; ?>
这里会显示前台的错误信息(通常是开发模板时)。另外,在后台的报告log里也可以查看。
用$is_admin是为了只让管理员在开发时看到,不让访问者看到。
https://www.drupal.org/node/1056468
https://www.drupal.org/node/1036982
drupal错误报告是php的范畴。
Change settings in your dev site
You can show all errors by adding a few lines to your local testing site's settings.php:
在settings.php开启:
<?php
error_reporting(E_ALL);
ini_set('display_errors', TRUE);
ini_set('display_startup_errors', TRUE);
//Note: Do not include the opening and closing PHP tags when you copy this code
?>