Umfrageergebnis anzeigen: Hast Du auch Probleme mit der RealURL 0.2.0 und Typo3?
Ja, Probleme konnten nie gelöst werden 2 50,00%
Ja, aber die Probleme konnten gelöst werden 0 0%
Nein, alles funktioniert so wie ich will 2 50,00%
Teilnehmer: 4. Sie dürfen bei dieser Umfrage nicht abstimmen

Antwort
 
LinkBack Themen-Optionen Thema bewerten Ansicht
  #1  
Alt 17.01.05, 14:31
Forum Zuschauer
 
Registriert seit: 17.01.05
Beiträge: 1

RealURL 0.2.0 mit Typo3 3.7: Mehrere Domains = Probleme


Hallo,

seit vielen Wochen habe ich das Problem, daß das "Speaking URLS" immer nur für meine erste Domain auf meiner TYPO3-Installation funktioniert.
Also nur bei meiner ersten Domain innerhalb meiner TYPO3-Installation
werden die ID-Nummern der Seiten durch den PageTitle ersetzt, nicht aber für die anderen Domains/Auftritte. Teilweise werde für diese noch nicht einmal statische Seiten simuliert oder es werden statische Seiten
simuliert und beim Klick auf einen der Links erscheint dann wieder die
Homepage.

Kann mir da bitte jemand einen Tip geben? (Natürlich habe ich die
Dokumentation von RealURL gelesen und auch die dortigen Tips zu den
multiple domains verfolgt.)

Auf meiner Seite Mord und Gerichtsprozess: Mord in Mainz ist ja alles Ok.
Auf meinem Bruder seiner Seite http://www.bellowski.de führen alle Links wieder zu der Homepage,
außerdem werden die IDs nicht durch die Seitentitel ersetzt (=Speaking URLs).
Auf meiner Qualitätsmanagement-Herumprobier-Site Qualitätsmanagement, Software-Qualitätssicherung, Performance-Test, Typo3: QM-Konzepte passiert gar nichts, also es werden noch
nicht einmal statische Seiten simuliert.

Das ganze lässt mich seit vielen Wochen verzweifeln: Ich kann einfach
nicht resignieren......


Meine ext_localconf.php sieht folgendermaßen aus:

PHP-Code:
<?php
// Activate script Hook, normaly already done in
ext/realurl/ext_localconf.php
$TYPO3_CONF_VARS
['SC_OPTIONS']['t3lib/class.t3lib_tstemplate.php']['linkData-PostProc'][]
=
'EXT:realurl/class.tx_realurl.php:&tx_realurl->encodeSpURL';
$TYPO3_CONF_VARS['SC_OPTIONS']['tslib/class.tslib_fe.php']['checkAlternativeIdMethods-PostProc'][]
=
'EXT:realurl/class.tx_realurl.php:&tx_realurl->decodeSpURL';

// script Hook for clear all cache, normaly already done in
ext/realurl/ext_localconf.php
$TYPO3_CONF_VARS
['SC_OPTIONS']['t3lib/class.t3lib_tcemain.php']['clearAllCache_additionalTables']
[
'tx_realurl_urldecodecache'] = 'tx_realurl_urldecodecache';
$TYPO3_CONF_VARS['SC_OPTIONS']['t3lib/class.t3lib_tcemain.php']['clearAllCache_additionalTables']
[
'tx_realurl_urlencodecache'] = 'tx_realurl_urlencodecache';

$TYPO3_CONF_VARS['FE']['addRootLineFields'] .=
',tx_realurl_pathsegment,alias,nav_title,title';

// realurl config
$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=2 is replaced by /dk
//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' => 3,
// 'english' => '3',
'de' => 0,
// 'deutsch' => '0',
),
//'noMatch' => 'bypass',
'valueDefault' => 'de',
),
),
// 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' => 27,
//
'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,
),
),
),
),

// backPid link
// 'back_to' => array(
// array('GETvar' => 'tx_ttnews[backPid]',
// 'lookUpTable' => array('table' => 'pages',
// 'id_field' => 'uid',
// 'alias_field' => 'title',
// 'addWhereClause' => ' AND NOT deleted',
// 'useUniqueCache' => 1,
// 'useUniqueCache_conf' =>
array('strtolower' => 1,
// 'spaceCharacter' => '_',
// ),
// ),
// ),
// ),
'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' => 1,
'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(),
// ),
),
// add .html suffix to the end of the path generated
'defaultToHTMLsuffixOnPrev' => 1,
),
),

//Fuer QMKonzepte
'www.bellowski.de' => 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=2 is replaced by /dk
//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' => 3,
// 'english' => '3',
'de' => 0,
// 'deutsch' => '0',
),
//'noMatch' => 'bypass',
'valueDefault' => 'de',
),
),
// 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' => 87,
//
'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,
),
),
),
),

// backPid link
// 'back_to' => array(
// array('GETvar' => 'tx_ttnews[backPid]',
// 'lookUpTable' => array('table' => 'pages',
// 'id_field' => 'uid',
// 'alias_field' => 'title',
// 'addWhereClause' => ' AND NOT deleted',
// 'useUniqueCache' => 1,
// 'useUniqueCache_conf' =>
array('strtolower' => 1,
// 'spaceCharacter' => '_',
// ),
// ),
// ),
// ),
'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' => 1,
'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(),
// ),
),
// add .html suffix to the end of the path generated
'defaultToHTMLsuffixOnPrev' => 1,
),
),

//Fuer Bellowski
'www.qm-konzepte.de' => array(
'preVars' => array(
'0' => array(
'GETvar' => 'L',
'valueMap' => array(
'de' => 0,
'en' => 3,
),

'valueDefault' => 'de',
),

),

'fileName' => array(
'defaultToHTMLsuffixOnPrev' => '1',
),

'pagePath' => array(
'type' => 'user',
'userFunc' =>
'EXT:realurl/class.tx_realurl_advanced.php:&tx_realurl_advanced->main',
'spaceCharacter' => '_',
'languageGetVar' => 'L',
'expireDays' => 3,
'rootpage_id' => 140,
),

'fixedPostVars' => array(
),

)

);
?>
Vielen Dank im Voraus.
Andreas
__________________
http://www.in-memoriam-gabi.de

Geändert von Junior (04.11.06 um 17:12 Uhr).
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!Spurl this Post!Reddit! Diesen Post bei linksilo.de bookmarken!
Mit Zitat antworten
Antwort

Lesezeichen

Themen-Optionen
Ansicht Thema bewerten
Thema bewerten:

Forumregeln
Es ist Ihnen nicht erlaubt, neue Themen zu verfassen.
Es ist Ihnen nicht erlaubt, auf Beiträge zu antworten.
Es ist Ihnen nicht erlaubt, Anhänge hochzuladen.
Es ist Ihnen nicht erlaubt, Ihre Beiträge zu bearbeiten.

BB-Code ist an.
Smileys sind an.
[IMG] Code ist an.
HTML-Code ist aus.
Trackbacks are an
Pingbacks are an
Refbacks are an


Ähnliche Themen
Thema Autor Forum Antworten Letzter Beitrag
RealURL, mehrere Domains SEO homesite jcfreaktobias TYPO3 4.x Fragen und Probleme 0 22.03.08 13:53
RealURL - mehrere Seitenbäume, mehrere Domains yahooooo Suchmaschinenfreundliche URLs (SEO) 1 13.09.07 17:40
RealURL und Mehrere Domains! Roman1983 Suchmaschinenfreundliche URLs (SEO) 2 09.07.07 16:06
realUrl + Mehrsprachigkeit + mehrere Domains zefix Suchmaschinenfreundliche URLs (SEO) 1 22.06.07 12:35
Realurl mehrere Domains?? bobhead Suchmaschinenfreundliche URLs (SEO) 2 10.01.07 20:06


Alle Zeitangaben in WEZ +1. Es ist jetzt 17:20 Uhr.


Powered by vBulletin® Version 3.7.3 (Deutsch)
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.1.0