Actions
Bug #99872
openErrors with redirects which are attached to deleted pages in redirects module
Status:
New
Priority:
Should have
Assignee:
-
Category:
Link Handling & Redirect Handling
Target version:
-
Start date:
2023-02-08
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
11
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
Redirects, which are attached to deleted pages (sys.redirct.pid) are displayed in the redirects module and have controls available to edit, delete etc. them.
However, when one of these is edited or deleted, an error occurs:
- delete: no error message, just does not work
- edit: incorrect error message:
Record with uid 98156 from table pages not found Edit form could not be loaded The edit form could not be loaded for the requested records. This might be due to insufficient permissions.
Due to this, these redirects can't be deleted except directly via the database.
Problem description¶
As admin:
1. Create a redirect
2. delete corresponding page
3. Go to redirects BE module.
4. edit redirect or try to delete it
Versions¶
- 11.5.23
- not tested in v12
DB queries¶
select uid,pid,source_path,deleted,disabled,target from sys_redirect where source_path like '/en/neuromodulation/events-details/kick-off-meeting-march-2023%'; +-------+-------+-------------------------------------------------------------------------------+---------+----------+---------------------------------+ | uid | pid | source_path | deleted | disabled | target | +-------+-------+-------------------------------------------------------------------------------+---------+----------+---------------------------------+ | 15008 | 94598 | /en/neuromodulation/events-details/kick-off-meeting-march-2023 | 0 | 0 | t3://page?uid=94597&_language=1 | | 15009 | 94597 | /en/neuromodulation/events-details/kick-off-meeting-march-2023/registration | 0 | 0 | t3://page?uid=94818&_language=1 |
select uid,pid,slug,hidden,deleted from pages where uid=94598; +-------+-------+------------------------------------------------------------+--------+---------+ | uid | pid | slug | hidden | deleted | +-------+-------+------------------------------------------------------------+--------+---------+ | 94598 | 94594 | /neuromodulation/events-details/workshop-neglect-july-2023 | 1 | 1 | +-------+-------+------------------------------------------------------------+--------+---------+
Files
Actions