26. 07. 2006, 16:22

Hi!

Ich lasse meine Logfiles periodisch von AWstats parsen, was auch wunderbar funktioniert. Jedoch habe ich das Problem dass in Verbindung mit realurl teilweise "503 Service Unavailable" kommt. Das steht dann auch so im Logfile drinnen, und AWstats zählt den Aufruf nicht als Besuch. Komischerweise bekomme ich den 503 nur bei ganz einfachen Seiten, bei denen "?id=PAGE_ID" in den entsprechenden Pagenamen umgewandelt wird. Bei schwierigeren Konstrukten, wie z.b. Single View eines tt_news Beitrages bekomm ich nen HTTP Code 200, sprich alles in Ordnung.

Mein realurl Setup sieht wie folgt aus:

  1. $TYPO3_CONF_VARS['EXTCONF']['realurl'] = array(
  2. '_DEFAULT' => array(
  3. 'init' => array(
  4. 'enableCHashCache' => 1,
  5. 'appendMissingSlash' => 'ifNotFile',
  6. 'enableUrlDecodeCache' => 1,
  7. 'enableUrlEncodeCache' => 1,
  8. ),
  9. 'redirects' => array(),
  10. 'preVars' => array(
  11. 'GETvar' => 'no_cache',
  12. 'valueMap' => array(
  13. 'nc' => 1,
  14. ),
  15. 'noMatch' => 'bypass',
  16. ),
  17. 'GETvar' => 'L',
  18. 'valueMap' => array(
  19. 'dk' => '2',
  20. 'de' => '1',
  21. ),
  22. 'noMatch' => 'bypass',
  23. ),
  24. ),
  25. 'pagePath' => array(
  26. 'type' => 'user',
  27. 'userFunc' => 'EXT:realurl/class.tx_realurl_advanced.php:&tx_realurl_advanced->main',
  28. 'spaceCharacter' => '-',
  29. 'languageGetVar' => 'L',
  30. 'expireDays' => 7,
  31. 'rootpage_id' => 1,
  32. ),
  33. 'fixedPostVars' => array(),
  34. 'postVarSets' => array(
  35. '_DEFAULT' => array(
  36. 'album' => array(
  37. 'GETvar' => 'tx_jmgallery_pi1[albumUid]',
  38. ),
  39. ),
  40. 'img' => array(
  41. 'GETvar' => 'tx_jmgallery_pi1[imageUid]',
  42. ),
  43. ),
  44. 'archive' => array(
  45. 'GETvar' => 'tx_ttnews[year]' ,
  46. ),
  47. 'GETvar' => 'tx_ttnews[month]' ,
  48. 'valueMap' => array(
  49. 'januar' => '01',
  50. 'februar' => '02',
  51. 'maerz' => '03',
  52. 'april' => '04',
  53. 'mai' => '05',
  54. 'juni' => '06',
  55. 'juli' => '07',
  56. 'august' => '08',
  57. 'september' => '09',
  58. 'oktober' => '10',
  59. 'november' => '11',
  60. 'dezember' => '12',
  61. ),
  62. ),
  63. 'GETvar' => 'tx_ttnews[day]',
  64. 'valueMap' => array(
  65. '01' => '01',
  66. '02' => '02',
  67. '03' => '03',
  68. '04' => '04',
  69. '05' => '05',
  70. '06' => '06',
  71. '07' => '07',
  72. '08' => '08',
  73. '09' => '09',
  74. '10' => '10',
  75. '11' => '11',
  76. '12' => '12',
  77. '13' => '13',
  78. '14' => '14',
  79. '15' => '15',
  80. '16' => '16',
  81. '17' => '17',
  82. '18' => '18',
  83. '19' => '19',
  84. '20' => '20',
  85. '21' => '21',
  86. '22' => '22',
  87. '23' => '23',
  88. '24' => '24',
  89. '25' => '25',
  90. '26' => '26',
  91. '27' => '27',
  92. '28' => '28',
  93. '29' => '29',
  94. '30' => '30',
  95. '31' => '31',
  96. ),
  97. ),
  98. ),
  99. 'browse' => array(
  100. 'GETvar' => 'tx_ttnews[pointer]',
  101. ),
  102. ),
  103. 'category' => array (
  104. 'GETvar' => 'tx_ttnews[cat]',
  105. ),
  106. ),
  107. 'article' => array(
  108. 'GETvar' => 'tx_ttnews[tt_news]',
  109. 'lookUpTable' => array(
  110. 'table' => 'tt_news',
  111. 'id_field' => 'uid',
  112. 'alias_field' => 'title',
  113. 'addWhereClause' => ' AND NOT deleted',
  114. 'useUniqueCache' => 1,
  115. 'useUniqueCache_conf' => array(
  116. 'strtolower' => 1,
  117. 'spaceCharacter' => '-',
  118. ),
  119. ),
  120.  
  121. ),
  122. 'GETvar' => 'tx_ttnews[swords]',
  123. ),
  124. ),
  125. ),
  126. ),
  127. 'fileName' => array(
  128. 'index' => array(
  129. 'rss.xml' => array(
  130. 'keyValues' => array(
  131. 'type' => 100,
  132. ),
  133. ),
  134. ),
  135. ),
  136. ),
  137. );

Weiß wer Rat?

Gruß Jens