Bug #72909
closedEpic #65814: Make Indexed search extbase plugin shine
Indexed Search: Data too long for column 'cookie'
100%
Description
Using the Extbase plugin, when I search something in the FE I get this sql error:
Data too long for column 'cookie' at row 1
This is because the extension tries to insert a 32 chars long string into field 'cookie' of table index_stat_search that is a varchar(10).
Updated by Gerrit Code Review almost 9 years ago
- Status changed from New to Under Review
Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/46643
Updated by Gerrit Code Review almost 9 years ago
Patch set 2 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/46643
Updated by Gerrit Code Review almost 9 years ago
Patch set 1 for branch TYPO3_7-6 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/46648
Updated by Wouter Wolters almost 9 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset 9c4df3b39213c64809c8720e90d6d084d1829597.
Updated by Gerhard Rupp about 1 year ago
- TYPO3 Version changed from 7 to 10
- PHP Version set to 7.4
- Complexity set to no-brainer
This is still (again?) an issue for TYPO3 10.4.41.
I had to encrease the length to 255:
cookie varchar(255) DEFAULT '' NOT NULL,