0

How to debug blank pages in joomla 2.5 during development. I try to access my custom components on view and sub controller like

index.php?option=com_mycomponent&view=item&id=2571

index.php?option=com_mycomponent&task=item.display&id=2571

but I'm getting blank pages. Where to escape this error?

Thank you in advanced

4

2 回答 2

3

在全局配置中,将您的错误报告设置为开发。然后你会看到错误信息。此外,您可能希望在全局配置中打开调试。

于 2013-04-28T19:42:08.250 回答
0

有时它无济于事。

尝试在 com_yourcomponent/yourcomponent.php 文件中添加字符串(就在 '< ?php' 之后):

ini_set( 'display_errors', true );
error_reporting( E_ALL ); 
于 2014-01-22T17:12:51.947 回答