Umfrageergebnis anzeigen: Hast Du auch Probleme mit der RealURL 0.2.0 und Typo3?

Teilnehmer
4. Du darfst bei dieser Umfrage nicht abstimmen
  • 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%
Ergebnis 1 bis 1 von 1

Thema: RealURL 0.2.0 mit Typo3 3.7: Mehrere Domains = Probleme

      
  1. #1
    Forum Zuschauer
    Registriert seit
    17.01.2005
    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
    Geändert von Junior (04.11.2006 um 17:12 Uhr)

 

 

Aktive Benutzer

Aktive Benutzer

Aktive Benutzer in diesem Thema: 1 (Registrierte Benutzer: 0, Gäste: 1)

Facebook Kommentare

Ähnliche Themen

  1. realUrl + Mehrsprachigkeit + mehrere Domains
    Von zefix im Forum Suchmaschinenfreundliche URLs (SEO)
    Antworten: 2
    Letzter Beitrag: 15.09.2009, 10:34
  2. RealURL, mehrere Domains SEO homesite
    Von jcfreaktobias im Forum TYPO3 4.x Fragen und Probleme
    Antworten: 0
    Letzter Beitrag: 22.03.2008, 13:53
  3. RealURL - mehrere Seitenbäume, mehrere Domains
    Von yahooooo im Forum Suchmaschinenfreundliche URLs (SEO)
    Antworten: 1
    Letzter Beitrag: 13.09.2007, 17:40
  4. RealURL und Mehrere Domains!
    Von Roman1983 im Forum Suchmaschinenfreundliche URLs (SEO)
    Antworten: 2
    Letzter Beitrag: 09.07.2007, 16:06
  5. Realurl mehrere Domains??
    Von bobhead im Forum Suchmaschinenfreundliche URLs (SEO)
    Antworten: 2
    Letzter Beitrag: 10.01.2007, 20:06

Berechtigungen

  • Neue Themen erstellen: Nein
  • Themen beantworten: Nein
  • Anhänge hochladen: Nein
  • Beiträge bearbeiten: Nein
  •  

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237