Problem mit realURL

  • illnino illnino
    R2-D2
    0 x
    73 Beiträge
    0 Hilfreiche Beiträge
    30. 09. 2005, 16:06

    Servus,

    ich habe ein riesen Problem mit realURL. (typo3 3.8 und realurl 0.3.0).

    code htaccess:
    [HTML]RewriteEngine On
    RewriteRule ^typo3$ - [L]RewriteRule ^typo3/.*$ - [L]RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-l
    RewriteRule .* index.php[/HTML]

    code localconf:

    1. $TYPO3_CONF_VARS['SC_OPTIONS']['t3lib/class.t3lib_tstemplate.php']['linkData-PostProc'][] = 'EXT:realurl/class.tx_realurl.php:&tx_realurl->encodeSpURL';
    2. $TYPO3_CONF_VARS['SC_OPTIONS']['tslib/class.tslib_fe.php']['checkAlternativeIdMethods-PostProc'][] = 'EXT:realurl/class.tx_realurl.php:&tx_realurl->decodeSpURL';
    3.  
    4. $TYPO3_CONF_VARS['SC_OPTIONS']['t3lib/class.t3lib_tcemain.php']['clearAllCache_additionalTables']['tx_realurl_urldecodecache'] = 'tx_realurl_urldecodecache';
    5. $TYPO3_CONF_VARS['SC_OPTIONS']['t3lib/class.t3lib_tcemain.php']['clearAllCache_additionalTables']['tx_realurl_urlencodecache'] = 'tx_realurl_urlencodecache';
    6.  
    7. $TYPO3_CONF_VARS['FE']['addRootLineFields'].= ',tx_realurl_pathsegment';
    8.  
    9. $TYPO3_CONF_VARS['EXTCONF']['realurl']['_DEFAULT'] = array(
    10. 'init' => array(
    11.  
    12. 'appendMissingSlash' => 'file',
    13. 'emptyUrlReturnValue' => '/',
    14. 'enableCHashCache' => 1,
    15. 'enableUrlDecodeCache' => 1,
    16. 'enableUrlEncodeCache' => 0,
    17. ),
    18. 'pagePath' => array(
    19. 'type' => 'user',
    20. 'userFunc' => 'EXT:realurl/class.tx_realurl_advanced.php:&tx_realurl_advanced->main',
    21. 'spaceCharacter' => '-',
    22. 'segTitleFieldList' => 'tx_realurl_pathsegment,nav_title,title',
    23. 'languageGetVar' => 'L',
    24. 'expireDays' => 1,
    25. 'rootpage_id' => '8',
    26. 'disablePathCache' => 1,
    27.  
    28. ),
    29. 'preVars' => array(
    30. 'GETvar' => 'no_cache',
    31. 'valueMap' => array(
    32. 'no_cache' => 1,
    33. ),
    34. 'noMatch' => 'bypass',
    35. ),
    36. 'GETvar' => 'L',
    37. 'valueMap' => array(
    38. 'no' => '1',
    39. ),
    40. 'noMatch' => 'bypass',
    41. ),
    42. ),
    43. 'fileName' => array (
    44. 'index' => array(
    45. 'backend.php' => array(
    46. 'keyValues' => array (
    47. 'type' => 100,
    48. )
    49. ),
    50. 'print' => array(
    51. 'keyValues' => array(
    52. 'type' => 98,
    53. )
    54. ),
    55. ),
    56. ),
    57. 'postVarSets' => array(
    58. '_DEFAULT' => array (
    59. 'article' => array(
    60. 'GETvar' => 'tx_ttnews[tt_news]',
    61. ),
    62. 'GETvar' => 'tx_ttnews[backPid]',
    63. ),
    64. ),
    65. 'category' => array(
    66. 'GETvar' => 'tx_ttnews[cat]',
    67. ),
    68. ),
    69. 'neste' => array(
    70. 'GETvar' => 'tx_ttnews[pointer]',
    71. ),
    72. ),
    73. ),
    74. ),
    75.  
    76. );

    root Template-Setup:

    1. #realurl:
    2. config.simulateStaticDocuments = PATH_INFO
    3. #config.simulateStaticDocuments = 0
    4. config.baseURL = http://www.yourdomain.de/
    5. config.tx_realurl_enable = 1
    6. #config.absRefPrefix = http://www.your-domain.de/
    7. # config.absRefPrefix = /

    Und die Links die dort rauskommen sind richtig ekelhaft: http://www.yourdomain.de/index.php/outsourcing/

    Jemand eine Idee wie ich da http://www.yourdomain.de/outsourcing/index.php rausbekomme?

    Bevor hier wer schreit: google war schon mein Freund und im Forum habe ich auch gesucht und nix passendes gefunden :o

    bin für jeden Tip dankbar. :)
    [/code]


  • 1
  • 1