[TYPO3-english] RealURL and typeNum bug
Victor Livakovsky
v-tyok at mail.ru
Tue Oct 14 09:46:58 CEST 2008
> I'm trying to create a print version of site. Everything is OK, except
> RealURL bug (I suppose) with typeNum.
> I have such TS setup for print page:
> print = PAGE
> print {
> typeNum = 98
> 10 = TEXT
> 10.data = field : title
> 10.wrap = <h1> | </h1>
> }
> Nothing special - print page should only show page title.
> Let's see it with RealURL:
> https://bwagt3.froglab.de/startseite.html?type=98
> Oops... Default page is showing.
> And, what if we change language?
> http://bwagt3.froglab.de/en/homepage.html?type=98
> It works!
> Maybe I have wrong setup for different language versions?
> I firstly thought the same, until I opened:
> http://bwagt3.froglab.de/ueber-uns/das-unternehmen.html?type=98
> It also working!
Adding preVars configuration:
array (
'GETvar' => 'type',
'valueMap' => array(
'print' => '98',
),
'noMatch' => 'bypass'
)
solves the problem, but I suppode it should work even without it...
More information about the TYPO3-english
mailing list