Hallo, habe hier ein komisch verhalten von RealURL und dem ID-to-path mapping, dieser füllt sich nicht. Der Decode-/Encode-Cache und UniqueAliases funktioniert tadellos.
real conf
Dachte es liegt am "disablePathCache" aber es tut sich nichts. ID-to-path mapping bleibt leer.PHP-Code:$TYPO3_CONF_VARS['EXTCONF']['realurl']['_DEFAULT'] = array(
'init' => array(
'useCHashCache' => '0',
'enableCHashCache' => '1',
'respectSimulateStaticURLs' => 'TRUE',
'appendMissingSlash' => 'ifNotFile',
'enableUrlDecodeCache' => '1',
'enableUrlEncodeCache' => '1',
),
'preVars' => array(
array(
'GETvar' => 'no_cache',
'valueMap' => array(
'no_cache' => 1,
'nc' => 1,
),
'noMatch' => 'bypass',
),
array(
'GETvar' => 'L',
'valueMap' => array(
'de' => '0',
'en' => '1',
),
'noMatch' => 'bypass', ),
),
'pagePath' => array(
'type' => 'user',
'userFunc' => 'EXT:realurl/class.tx_realurl_advanced.php:&tx_realurl_advanced->main',
'spaceCharacter' => '-',
'segTitleFieldList' => 'alias,tx_realurl_pathsegment,nav_title,title',
'languageGetVar' => 'L',
'expireDays' => 1,
//'disablePathCache' => 1,
'rootpage_id' => 1,
//'firstHitPathCache' => 1,
),
'fileName' => array(
'defaultToHTMLsuffixOnPrev' => 1,
'index' => array(
'rss.xml' => array(
'keyValues' => array(
'type' => 100,
),
),
'rss091.xml' => array(
'keyValues' => array(
'type' => 101,
),
),
'rdf.xml' => array(
'keyValues' => array(
'type' => 102,
),
),
'atom.xml' => array(
'keyValues' => array(
'type' => 103,
),
),
),
),
),
),
);
typo 4.5.0
realurl 1.11.2
Habe folgendes geändert
Druch den Eintrag 'autoUpdatePathCache' => '1', scheint es zu funktioniert wie gewollt ID-to-path füllt sich.PHP-Code:'pagePath' => array (
'type' => 'user',
'userFunc' => 'EXT:realurl/class.tx_realurl_advanced.php:&tx_realurl_advanced->main',
'spaceCharacter' => '-',
'languageGetVar' => 'L',
'expireDays' => '7',
'autoUpdatePathCache' => '1',
'rootpage_id' => '1',
),
Aktive Benutzer in diesem Thema: 1 (Registrierte Benutzer: 0, Gäste: 1)
Lesezeichen