[TYPO3-german] Mit realurl werden falsche links im News-Archiv erzeugt
Gerhard Obermayr
design at cgc.at
Thu Nov 11 12:41:56 CET 2010
Das nc bezieht sich auf "no cache" in der Seitenconfiguration.
Hat den Grund, dass immer die zuletzt aufgerufene Single-Anzeige gezeigt
wird, wenn ich die Seiten cachen lassen.
Warum eigentlich sollte das nicht so sein?
Es ist nur die News-Seite betroffen!
Meine Einträge in der localconf.php:
||$TYPO3_CONF_VARS['EXTCONF']['realurl'] = array(
'_DEFAULT' => array(
'init' => array(
'enableCHashCache' => 1,
// 'appendMissingSlash' => 'ifNotFile',
'enableUrlDecodeCache' => 1,
'enableUrlEncodeCache' => 1,
),
'redirects' => array(),
'preVars' => array(
//match &no_cache=1 with path prefix /nc
array(
'GETvar' => 'no_cache',
'valueMap' => array(
'nc' => 1,
),
'noMatch' => 'bypass',
),
//multiple language matching L=1 is replaced by /hu
//value are user defiened depending of the order you've inserted your
//alternative language in TYPO3. See sys_language table for ID
array(
'GETvar' => 'L',
'valueMap' => array(
'en' => '1',
'fr' => '2',
'es' => '3',
'de' => '4',
'it' => '5',
'cn' => '6',
'gr' => '7',
'l8' => '8',
'l9' => '9',
'ru' => '10',
'l11'=> '11',
'tr' => '12',
'bg' => '13',
'se' => '14',
'dk' => '15',
'no' => '16',
'fi' => '17',
'al' => '18',
'cz' => '19',
),
'noMatch' => 'bypass',
),
),
// use extended page name rendering
// page names are converted to readalbe page/sub-page/sub-sub-page.html
'pagePath' => array(
'type' => 'user',
'userFunc' =>
'EXT:realurl/class.tx_realurl_advanced.php:&tx_realurl_advanced->main',
'spaceCharacter' => '-',
'languageGetVar' => 'L',
'expireDays' => 7,
'rootpage_id' => 1,
'segTitleFieldList' => 'alias,tx_realurl_pathsegment,nav_title,title',
'disablePathCache' => 1,
// 'encodeTitle_userProc'=>'EXT:realurl/tx_realurl_encodeTitle_userProc.php:&user_encodeDates',
),
'fixedPostVars' => array(),
// match extension parameter
'postVarSets' => array(
'_DEFAULT' => array(
// archive
'period' => array(
array(
'condPrevValue' => -1,
'GETvar' => 'tx_ttnews[pS]' ,
// 'valueMap' => array(
//
// )
),
array(
'GETvar' => 'tx_ttnews[pL]' ,
// 'valueMap' => array(
//
// )
),
array(
'GETvar' => 'tx_ttnews[arc]' ,
'valueMap' => array(
'archived' => 1,
'non-archived' => -1,
)
),
),
// pagebrowser
'browse' => array(
array(
'GETvar' => 'tx_ttnews[pointer]',
),
),
'select' => array (
array(
'GETvar' => 'tx_ttnews[cat]',
'lookUpTable' => array(
'table' => 'tt_news_cat',
'id_field' => 'uid',
'alias_field' => 'title',
'addWhereClause' => ' AND NOT deleted',
'useUniqueCache' => 1,
'useUniqueCache_conf' => array(
'strtolower' => 1,
),
),
),
),
'index' => array (
array(
'GETvar' => 'news[cat]',
'lookUpTable' => array(
'table' => 'tt_news_cat',
'id_field' => 'uid',
'alias_field' => 'title',
'addWhereClause' => ' AND NOT deleted',
'useUniqueCache' => 1,
'useUniqueCache_conf' => array(
'strtolower' => 1,
),
),
),
),
'article' => array(
array(
'GETvar' => 'tx_ttnews[backPid]',
),
array(
'GETvar' => 'tx_ttnews[tt_news]',
'lookUpTable' => array(
'table' => 'tt_news',
'id_field' => 'uid',
'alias_field' => 'title',
'addWhereClause' => ' AND NOT deleted',
'useUniqueCache' => 1,
'useUniqueCache_conf' => array(
'strtolower' => 0,
'spaceCharacter' => '-',
),
),
),
array(
'GETvar' => 'tx_ttnews[swords]'
),
),
),
),
// map some type to file name: rss.xml = &typo=100
'fileName' => array(
'index' => array(
'rss.xml' => array(
'keyValues' => array(
'type' => 100,
),
),
// 'index.html' => array(
// 'keyValues' => array(),
// ),
'sitemap.xml' => array(
'keyValues' => array(
'id' => 'googlesitemap',
),
),
),
// add .html suffix to the end of the path generated
'defaultToHTMLsuffixOnPrev' => 1,
),
)
);
Vielleicht findet ja jemand den Fehler ...
LG Gerhard
||
Am 10.11.2010 23:43, schrieb Marco Peemöller:
> Hallo,
>
> Am 10.11.2010 18:30, schrieb Gerhard Obermayr:
>> Dank meiner Einträge in der localconf.php werden auch die News
>> <http://www.stadtkapelle.at/nc/news.html> mit lesbaren Adressen
>> ausgestattet.
> das /nc/ (was wohl einem ?no_cache=1 entspricht) deutet darauf hin, dass
> die News nicht gecached werden. So soll es eigentlich nicht sein.
>
>> Hier kann ich jeden Artikel auswählen - es funktioniert.
>> Was mich jedoch verblüfft ist die Tatsache, dass im Newsarchiv
>> <http://www.stadtkapelle.at/news/newsarchiv.html> sowohl falsche als
>> auch richtige links für den selben Eintrag erstellt werden.
>> Gehe ich ins News-Archiv und klicke ich die derzeit einzige News an,
>> kommt keine Detail-Anzeige sondern eine Fehlermeldung.
>> Die erzeugte Adresse ist
>> http://www.stadtkapelle.at/nc/news/singlearchiv/period/1289409834/article/34/Big-Band-Sound-Orchestra.html
> schwer zu sagen, vielleicht zeigst Du uns mal deine realurl Konfiguration.
>
> Viele Grüße
>
> Marco
> _______________________________________________
> TYPO3-german mailing list
> TYPO3-german at lists.typo3.org
> http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-german
>
--
Liebe Grüße aus Haag
Gerhard Obermayr
___________________________________________
*R. OBERMAYR Internet-Services*
A-3350 Haag, Holzleiten 83
+43 7434 42181 - Fax: DW 25
URL Firma: http://www.cgc.at - E-Mail: design at cgc.at
URL Privat:
http://www.gerhard-obermayr.com
___________________________________________
More information about the TYPO3-german
mailing list