I need help =/ I updated Typ3 to 4.5.5 and an older Version of realurl.
The plugin we're using gets the GET parameters by reading the 't3lib_div::_GET();' variable.. realurl does not let through values that are submited by the original GET method, it only passes the "readable" url parameters....
so: www.anypage.com/welcome/any works with config:
array(
'GETvar' => 'tx_plugin_pi1[database]',
'valueMap' => array(
'one' => 'one',
'any' => 'any'
),
'noMatch' => 'bypass'
)
but: www.anypage.com/welcome/?database=any
does not pass the value ('any') to the plugin...