Hallo zusammen,
ich habe auf einer Seite ein Plugin mit dem folgende urls auftreten:
index.php?id=48
oder
index.php?id=48&zone=bw

ohne realurl klappt es auch sehr gut.
Sobald ich aber realurl einschalte, zeigt mir das Adminpanel ein no_cache=1 bei 
den Seiten mit den getvars an.
Mein config:
$TYPO3_CONF_VARS['EXTCONF']['realurl'] = array(
        'www.meineseite.de' => array(
                'init' => array(
                        'enableCHashCache' => 1,
                        'appendMissingSlash' => 'ifNotFile',
                        'enableUrlDecodeCache' => 1,
                        'enableUrlEncodeCache' => 1,
                        'emptyUrlReturnValue' => '/',
                ),
                'redirects' => array(
                ),
                'preVars' => array(
                        array(
                                'GETvar' => 'no_cache',
                                'valueMap' => array(
                                        'nc' => 1,
                                ),
                                'noMatch' => 'bypass',
                        ),
                ),
                'pagePath' => array(
                        'type' => 'user',
                        'userFunc' => 
'EXT:realurl/class.tx_realurl_advanced.php:&tx_realurl_advanced->main',
                        'spaceCharacter' => '-',
                        'expireDays' => 0,
                        'rootpage_id' => 6,
                        'disablePathCache' => 1,
                        'firstHitPathCache' => 1,
                        'dontResolveShortcuts' => 0,
                        'autoUpdatePathCache' => 1,

                ),
                'postVarSets' => array(
                        '_DEFAULT' => array (
                                'bundesland' => array (
                                        array (
                                                'GETvar' => 'zone'
                                        )
                                ),
                        )
                )
        )
);

Hat da jemand eine Idee?

Gruß
Michael


_______________________________________________
TYPO3-german mailing list
TYPO3-german@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-german

Antwort per Email an