We had an issue where the user got a 503 error in the frontend after he clicked the "Send"-button of the form.
Error:
Core: Exception handler (WEB): Uncaught TYPO3 Exception: #1470230766: An exception occurred while executing a query: Data too long for column 'mail_body' at row 1 | TYPO3\CMS\Extbase\Persistence\Generic\Storage\Exception\SqlErrorException thrown in file /var/www/typo3_web-dev/vendor/typo3/cms-extbase/Classes/Persistence/Generic/Storage/Typo3DbBackend.php in line 86. Requested URL: https://web-dev.local/form?tx_form_formframework%5Baction%5D=perform&tx_form_formframework%5Bcontroller%5D=FormFrontend&cHash=996193d4317e7ef58f9e463478efe8e4
The field mail_body has the value of text and changing it to mediumtext in ext_tables.sql solved the issue.
mail_body mediumtext,
Maybe that can be adapted or is there a downside?
We had an issue where the user got a 503 error in the frontend after he clicked the "Send"-button of the form.
Error:
Core: Exception handler (WEB): Uncaught TYPO3 Exception: #1470230766: An exception occurred while executing a query: Data too long for column 'mail_body' at row 1 | TYPO3\CMS\Extbase\Persistence\Generic\Storage\Exception\SqlErrorException thrown in file /var/www/typo3_web-dev/vendor/typo3/cms-extbase/Classes/Persistence/Generic/Storage/Typo3DbBackend.php in line 86. Requested URL: https://web-dev.local/form?tx_form_formframework%5Baction%5D=perform&tx_form_formframework%5Bcontroller%5D=FormFrontend&cHash=996193d4317e7ef58f9e463478efe8e4The field
mail_bodyhas the value oftextand changing it tomediumtextinext_tables.sqlsolved the issue.mail_body mediumtext,Maybe that can be adapted or is there a downside?