Gerir os cookies que são utilizados para publicidade, como a personalização de anúncios, o remarketing e a análise de desempenho de anúncios.
2.14.2.11. Enable debug mode in Joomla!
Joomla! 2.5/3.0+
- Open the site configuration file
configuration.phpin the built-in file manager editor or in any FTP client. - Enabling error output:
- Find the line with the
$error_reportingparameter:public $error_reporting = 'default'; - In the located line, replace
defaultwithmaximumso that it looks as follows:public $error_reporting = 'maximum';
- Enabling debug console:
- Find the line with the
$debugparameter:public $debug = '0'; - In the found line, replace
0with1so that it has the following form:public $debug = '1';
- Save the changes.
- Reproduce the error on your site.
After identifying the source of errors on the site and eliminating their causes, it is recommended to disable debug mode by returning the modified lines to their original state.
Joomla! 1.5
- Open the configuration file of the site
configuration.phpin the built-in editor of the file manager or any FTP client. - Find the line with the
$error_reportingparameter:var $error_reporting = '-1'; - In the found line, replace
-1with6143so that it looks as follows:var $error_reporting = '6143'; - Save the changes.
- Reproduce the error on your site.
After identifying the source of errors on the site and eliminating their causes, it is recommended to disable debug mode by returning the modified line to its original state.
Joomla! 1.0
- Open the configuration file of the site
configuration.phpin the built-in editor of the file manager or any FTP client. - Find the line with the
$mosConfig_error_reportingparameter:$mosConfig_error_reporting = '-1'; - In the found line, replace
-1with6143so that it looks as follows:$mosConfig_error_reporting = '6143'; - Save the changes.
- Reproduce the error on your site.
After identifying the source of errors on the site and eliminating their causes, it is recommended to disable debug mode by returning the modified line to its original state.