Franz Holzinger

Verse of the day

Denn es ist ein Gott und ein Mittler zwischen Gott und den Menschen, nämlich der Mensch Christus Jesus, der sich selbst gegeben hat für alle zur Erlösung, daß solches zu seiner Zeit gepredigt würde;
1 Timotheus 2:5-6

© Bible Gateway's Verse of the Day


autor  
10-04-13 10:28:39 realurl Unterstützung
David Voigt
Es wäre schön, wenn eine vollständige (!) realurl-Konfiguration mit dem Shop kommen würde. Als Anhaltspunkt, hier ist meine. Was diese noch nicht beherrscht, ist:

- der Pagebrowser (begin at) wird noch nicht korrekt in URL umgesetzt
- die back_pid taucht leider noch an vielen Stellen in der URL auf, aus Gründen der SEO wäre es schön, wenn man sie loswerden könnte..

[code]$TYPO3_CONF_VARS['EXTCONF']['realurl']['_DEFAULT'] = array(
'init' => array(
'enableCHashCache' => 1,
'appendMissingSlash' => 'ifNotFile',
'enableUrlDecodeCache' => 1,
'enableUrlEncodeCache' => 1,
'respectSimulateStaticURLs' => 0,
'postVarSet_failureMode'=>'redirect_goodUpperDir',
),
'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' => '-',
'languageGetVar' => 'L',
'expireDays' => 7,
'rootpage_id' => 1,
),
'postVarSets' => array(
'_DEFAULT' => array(
'sword' => array(
array(
'GETvar' => 'tt_products[sword]',
'valueMap' => array(
'tt_products[sword]' => 1,
),
'noMatch' => 'bypass'
),
),
),
),
'fixedPostVars' => array(
'_DEFAULT' => array(
// tt_products categories
array(
'GETvar' => 'tt_products[cat]',
'lookUpTable' => array(
'table' => 'tt_products_cat',
'id_field' => 'uid',
'alias_field' => 'title',
'addWhereClause' => ' AND NOT deleted',
'useUniqueCache' => 1,
'useUniqueCache_conf' => array(
'strtolower' => 1,
'spaceCharacter' => '_'
),
),
),
// tt_products products
array(
'GETvar' => 'tt_products[product]',
'lookUpTable' => array(
'table' => 'tt_products',
'id_field' => 'uid',
'alias_field' => 'title',
'addWhereClause' => ' AND NOT deleted',
'useUniqueCache' => 1,
'useUniqueCache_conf' => array(
'strtolower' => 1,
'spaceCharacter' => '_'
),
),
),
),
),
);
[/code]
< Zurück zum Forum