I have a piBase extension which has a listing of records and a detail page. When calling the listing first, everything is fine, realurl (version 2.0.15, TYPO3 version 7.6.10) creates the urls for the detail pages with cHash parameter, e.g.
cHash=dc3409cee49ff80a6b8173357a474bd3&id=168&tx_myext_pi1[event]=1062
But when truncating all four realurl tables, clearing the frontend cache and accessing a detail page of a record directly, realurl creates the url for this page without cHash:
id=168&tx_myext_pi1[event]=1062
When trying the same in an Extbase extension (e.g. EXT:news) I get a 404 error and the generated url is also without cHash:
id=102&tx_news_pi1[news]=speaking-path-of-news
Why is the cHash parameter missing? Is this a bug?