2017-09-05 36 views
2

我有8LTS(+ fsc)和ext:form的gridelements(8.x.x的開發分支)帶來了工作。兩者似乎都爲自己工作。但是,如果我將表單元素放入gridelement容器中...當我要發送表單時,我收到以下錯誤消息:TYPO3 - ext:在gridelements中使用它時不工作 - v8

糟糕,發生錯誤!
給定的字符串沒有附加有效的HMAC。

任何一個想法是什麼原因造成的?其他CE元素似乎在網格中工作。

網格配置所有* CE是允許在規定的容器:

Name: Column #1 
Column number: 10 
Allowed CE: * 
Allowed Grids: * 

並重新登錄:

Core: Exception handler (WEB): Uncaught TYPO3 Exception: #1320830018: The given string was 
not appended with a valid HMAC. | TYPO3\CMS\Extbase\Security\Exception\InvalidHashException 
thrown in file /is/htdocs/www/typo3_src-8.7.4/typo3/sysext/extbase/Classes/Security/Cryptography/HashService.php 
in line 94. 
Requested URL: .../contact/?tx_form_formframework%5Baction%5D=perform&tx_form_formframework%5Bcontroller%5D=FormFrontend&cHash=c81ac6ed1b41sdfgsdg71fsdfb44584e7 

調試表明:

TYPO3\CMS\Extbase\Security\Exception\InvalidHashException thrown in file 
/is/htdocs/.../www/typo3_src-8.7.4/typo3/sysext/extbase/Classes/Security/Cryptography/HashService.php in line 94. 

19 TYPO3\CMS\Extbase\Security\Cryptography\HashService::validateAndStripHmac("a:1:}ac4293effb593e4b063cbfcc6fc2c1e2c0c650a1") 

/is/htdocs/.../www/typo3_src-8.7.4/typo3/sysext/extbase/Classes/Mvc/Controller/MvcPropertyMappingConfigurationService.php: 

00124:   } 
00125: 

00126:   $serializedTrustedProperties = $this->hashService->validateAndStripHmac($trustedPropertiesToken); 

00127:   $trustedProperties = unserialize($serializedTrustedProperties); 
00128:   foreach ($trustedProperties as $propertyName => $propertyConfiguration) { 

... 

回答