- extbase has it's own debugging methods
- fluid has it's own debugging methods
Last active
August 29, 2015 14:26
-
-
Save githubrsys/ed84daaaef30cc22dc34 to your computer and use it in GitHub Desktop.
Enable Debugging in TYPO3 6.2.x and up
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'FE' => array( | |
'debug' => '2', /* shows Errors if devIPmask matches in FE */ | |
'formmailMaxAttachmentSize' => '2500000', | |
'hidePagesIfNotTranslatedByDefault' => '0', | |
'loginSecurityLevel' => 'rsa', | |
'pageNotFound_handling_statheader' => 'HTTP/1.0 404 Not Found', | |
), | |
'SYS' => array( | |
'UTF8filesystem' => '1', | |
'binPath' => '/usr/bin', /* should match your server */ | |
'clearCacheSystem' => '1', | |
'compat_version' => '6.2', /* should match your Version */ | |
'curlUse' => '1', | |
'ddmmyy' => 'd.m.y', | |
'debugExceptionHandler' => '', | |
'defaultCategorizedTables' => 'tt_content,pages,sys_file_metadata', | |
'devIPmask' => '127.0.0.1,89.182.219.16', /* Add you external ISP IP */ | |
'displayErrors' => '2', /* shows Errors if devIPmask matches in FE */ | |
'enableDeprecationLog' => '0', | |
'enable_errorDLOG' => '0', | |
'enable_exceptionDLOG' => '0', | |
'encryptionKey' => 'yourkey', | |
'errorHandler' => '', | |
'exceptionalErrors' => 'E_ALL ^ E_NOTICE ^ E_WARNING ^ E_USER_ERROR ^ E_USER_NOTICE ^ E_USER_WARNING', | |
'maxFileNameLength' => '90', | |
'phpTimeZone' => 'Europe/Berlin', | |
'productionExceptionHandler' => '', | |
'sitename' => 'Your Sitename', | |
'sqlDebug' => '0', /* 1 for errors, 2 for all */ | |
'systemLocale' => 'de_DE.utf-8', | |
'systemLog' => '', | |
'systemLogLevel' => '2', | |
't3lib_cs_convMethod' => 'mbstring', | |
't3lib_cs_utils' => 'mbstring', | |
), |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment