Login not working since 10.4.33
Closed this issue · 1 comments
darthnorman commented
Since the latest TYPO3 version released today, this extension doesn't seem to work anymore on our end.
Login procedure will not succeed.
Etmolf commented
The login process now expects a hash of the transmitted storage folders from the field "pid" in the form "123,456,789@hmacvalueofpidlist".
Something like:
$pidList = '123,456,789';
$pidValue = sprintf('%s@%s', $pidList, GeneralUtility::hmac($pidList, FrontendUserAuthentication::class));
$hiddenInput = '<input type="hidden" name="pid" value="'.$pidValue.'" />';
In addition:
TYPO3-CMS/frontend@62e1e2b
either will fix the issue