Skip to main content
Version: 2023.3

Magic Parameters

Pimcore supports some magic parameters which can be added as parameter to every request.

pimcore_nocache

Setting this parameter disables every kind of cache, eg.: http://www.example.com/my/page?pimcore_nocache
This parameter only works if DEBUG MODE is on.

pimcore_outputfilters_disabled

Disables all output filters, incl. the output-cache. But this doesn't disable the internal object cache, eg.: http://www.example.com/my/page?pimcore_outputfilters_disabled=1
This parameter only works if DEBUG MODE is on.

unminified_js

Disables the JavaScript minifier. Useful for ExtJS debugging. Disabled by default if in DEV MODE.

This parameter only works if DEBUG MODE is on.

pimcore_disable_host_redirect

Disables the "redirect to main domain" feature. This is especially useful when using Pimcore behind a reverse proxy.

pimcore_debug_translations

Configures the translator to return the given translation key instead of actually translating the message. This can be useful to debug translations or to get an overview over used translation keys. Example: http://www.example.com/my/page?pimcore_debug_translations=1

This parameter is only available when debug mode is active or an active admin session is present. It is possible to disable this feature completely or individualize the name of the GET parameter using the following configuration options.

pimcore:
translations:
debugging:
enabled: false
# you could also change the parameter from pimcore_debug_translations to something else
parameter: my_custom_parameter