Reputation: 168
I am facing a TYPO3 Backend Error. I added some records to a page and they are showing up on the View Page. Then I delete this records and they still show up.
The records are not visible or existing. I cleared the FE cache, the page cache, all the caches, the records still showing up.
Did I miss anything?
Best Chris
Upvotes: 0
Views: 143
Reputation: 1
What kind/type of data record faces the problem? Is the record part of an extension? If yes, it might be that this extension ignores the delete/invisible flags of the DB table. As Bernd Wilke already recommended try to take a look in the DB directly and check if the concerned records has the datafield "deleted" set to "1".
Upvotes: 0
Reputation: 1
This might caused by browser cache.
If you use extbase Repository to get the records, these deleted marked records will not be retrieved and also not shown in frontend.
Upvotes: 0
Reputation: 10800
have a look in your database (with phpmyadmin or similar). TYPO3 does not realy delete records but marked them in a field 'deleted'. maybe your rendering does ignore this field? (which would be very unusual)
are the records still visible if you really delete the records in the database? then you propably have a strange cache which gets no clearing.
Upvotes: 1