Skip to content

Instantly share code, notes, and snippets.

@githubrsys
githubrsys / readme.md
Last active July 20, 2022 09:59
TYPO3 fluid VHS: Group elements with wrap without Modulo

Summary

Imagine you have a list of elements. E.g. some DIV's (or something else) and you want to surround or wrap blocks or chunks of 3 with an <li> element.

Expected output Code

<li>
foo
@githubrsys
githubrsys / TYPO3 - add sorting to fe_users.md
Last active March 16, 2018 18:11
add sorting to fe_user with own extension

scope

Valid from TYPO3 6.x

summary

Add sorting to fe_users with own Extension

ext_tables.php

\TYPO3\CMS\Core\Utility\GeneralUtility::loadTCA('fe_users');
@githubrsys
githubrsys / LocalConfiguration.php
Last active August 29, 2015 14:26
Enable Debugging in TYPO3 6.2.x and up
'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',
@githubrsys
githubrsys / gist:d65d4aa91ef619d37fa3
Created July 22, 2015 10:57
UTF-8 Support on filesystem for typo3
'SYS' => array(
'UTF8filesystem' => '1',
'binPath' => '/usr/bin',
'clearCacheSystem' => '1',
'compat_version' => '6.2',
'curlUse' => '1',
'ddmmyy' => 'd.m.y',
'debugExceptionHandler' => '',
'defaultCategorizedTables' => 'tt_content,pages,sys_file_metadata',
'devIPmask' => '127.0.0.1',