Hannes Bochmann

Results 31 comments of Hannes Bochmann

Maybe I can shed some light on this problem as we face a similar one. When the server is behind a proxy all curl requests which return headers will have...

Ping. Is there any chance that my pull request will get merged?

@responseinformationsdesign realurl uses the logging system ($TYPO3_CONF_VARS['LOG']) of TYPO3 not the simple system log. System log level has no effect on the logging system. You would need to remove the...

@Batman777 Put that in your AdditionalConfiguration.php: ``` $GLOBALS['TYPO3_CONF_VARS']['LOG']['writerConfiguration'][\TYPO3\CMS\Core\Log\LogLevel::ERROR]['TYPO3\\CMS\\Core\\Log\\Writer\\FileWriter'] = $GLOBALS['TYPO3_CONF_VARS']['LOG']['writerConfiguration'][\TYPO3\CMS\Core\Log\LogLevel::WARNING]['TYPO3\\CMS\\Core\\Log\\Writer\\FileWriter']; unset($GLOBALS['TYPO3_CONF_VARS']['LOG']['writerConfiguration'][\TYPO3\CMS\Core\Log\LogLevel::WARNING]['TYPO3\\CMS\\Core\\Log\\Writer\\FileWriter']); ```

Sorry, the snippet I send you was for TYPO3 7.6 upwards. I checked again in one of my 6.2 projects. That's what I put into AdditionalConfiguration.php: ``` $GLOBALS['TYPO3_CONF_VARS']['LOG']['writerConfiguration'][\TYPO3\CMS\Core\Log\LogLevel::ERROR]['TYPO3\\CMS\\Core\\Log\\Writer\\FileWriter'] = $GLOBALS['TYPO3_CONF_VARS']['LOG']['writerConfiguration'][\TYPO3\CMS\Core\Log\LogLevel::DEBUG]['TYPO3\\CMS\\Core\\Log\\Writer\\FileWriter'];...

@abvdveen Thanks for the effort. You saved me those hours of debugging.

When using the displayCond as suggested the fields will be visible in a non-live workspace when a news record is created. Thus they can be filled initially but not changed...

I ran into this problem, too. A simple return true; is not enough. The redirect response object needs to be returned and used in the actual action.

The same problem exists for other actions as well. I provided a PR which fixes a redirects.