DEPRECATION WARNING

This documentation is not using the current rendering mechanism and is probably outdated. The extension maintainer should switch to the new system. Details on how to use the rendering mechanism can be found here.

Administrator Manual

Installation

The first step, to get this extension up and running is importing it in the extension manager and install it.

Alternatively you can use composer to install the extension:

composer require de-swebhosting-typo3-extension/tinyurls

Then you can edit the extension configuration according to your needs.

Now you are able to create and use tiny URLs in your TYPO3 instance.

Editing tiny URL records

Once the extension is installed you can add tiny URLs in the TYPO3 backend. If you didn’t change the default value of urlRecordStoragePID in the extension configuration you must add the records in the TYPO3 root. Otherwise you can add them in the page (folder) with the PID you specified in the config.

Using tinyurls in TypoScript

You can convert any typolink to a tinyurl by simply setting the property tinyurl to 1. For more information about the TypoScript configuration options please have a look in the TypoScript configuration section.

This is a quick example:

page.30 = TEXT
page.30 {
                value = Permalink
                typolink = 1
                typolink.parameter.data = getIndpEnv:REQUEST_URI
                typolink.tinyurl = 1
}

Further information