Redirect options

Posted by & filed under TYPO3.

When a redirect using the external URL is used, the 302 HTTP status code is used. The new PageTS Config option allows using different codes: TSFE.jumpURL_HTTPStatusCode = 301 Moved Permanently TSFE.jumpURL_HTTPStatusCode = 302 Default – moved temporarily/redirect TSFE.jumpURL_HTTPStatusCode = 303 Other TSFE.jumpURL_HTTPStatusCode = 307 Temporary redirect More info: RFC: Bug #3787: Patch: new option TSFE.jumpURL_HTTPStatusCode… Read more »

File permissions

Posted by & filed under TYPO3.

A few new options, applied to backend users and backend user groups (through UserTS) give administrators more control over files. options.fileTree.uploadFieldsInLinkBrowser Configures the number of upload fields in the linkbrowser. Default value is 3, but can be set to 0 to forbit uploading through the linkbrowser at all. options.fileTree.denyCreateFolder If set to 1, creation of… Read more »

Configurable file size labels

Posted by & filed under TYPO3.

You can now change the labels that are attached to file sizes, in either constants or setup: #constants styles.content.uploads.filesize.labels = Bytes | KB | MB | GB # setup tt_content.uploads.20.filesize.labels = Bytes | KB | MB | GB More info: RFC: Feature Request #8487: Enable configuration of filesize labels for CType uploads http://bugs.typo3.org/view.php?id=8487

BE Login Templateable

Posted by & filed under TYPO3.

Backend Login window can now be templated by extensions. You can find an easy how to here: http://danosipov.com/blog/?p=100 More info: RFC #8534: Make Backend Login Templateable http://bugs.typo3.org/view.php?id=8534 RFC #11356: Backend login news is not templateable http://bugs.typo3.org/view.php?id=11356

Hooks

Posted by & filed under TYPO3.

There are numerous hooks added, which improve TYPO3’s extensibility. Here is a list: getSingleField_beforeRender In function getSingleField_SW, called before rendering a field. Class should be added to $TYPO3_CONF_VARS[‘SC_OPTIONS’][‘t3lib/class.t3lib_tceforms.php’][‘getSingleFieldClass’] array, and function name should be getSingleField_beforeRender. It can be used for custom TCA processing prior to the field being rendered. tt_content_drawItem The function tt_content_drawItem of tx_cms_layout… Read more »