中文站点-网站精选 - [5.0.3] Articles in backend not visible
[5.0.3] Articles in backend not visible
Information
Steps to reproduce the issue
Im logged in as a super user to a brand new Joomla 5.0.3 installation (with a template). I'm the only user and I can't see the articles in the backend. They show up in smart search, in the database and also on the frontend, but after creation in the backend I can't see them (and do some changes for example). No filter is set.
Some of the articles have been 'imported' during quickstart from the template but others were created with the New button in Content -> Articles. No DB imports were made.
What is wrong here?
Expected result
See all articles and modify them.
Actual result
"No Matching Results" in Content -> Articles.
System information (as much as possible)
Joomla 5.0.3
PHP 8.3.2
MariaDB 10.6.14
Additional comments
评级: 0.00
票: 0
传出命中: 6
传入命中: 0
收藏 夹: 0
Activity
brianteeman commented on Mar 27, 2024
The problem is from the "import" - they almost certainly dont have an entry in the workflow table. You should contact the provider of the template
herzogj commented on Mar 27, 2024
Actually, I do have entries in the table workflow_associations. I also deleted all of them and recreated the inserts with
INSERT INTO npfrq_workflow_associations (item_id, stage_id, extension) SELECT c.id as item_id, '1', 'com_content.article' FROM npfrq_content AS c WHERE NOT EXISTS (SELECT wa.item_id FROM npfrq_workflow_associations AS wa WHERE wa.item_id = c.id);
If one association would be missing, would the backend show nothing? Because I created articles by hand in the backend and they are also not visible.
herzogj commented on Mar 28, 2024
I've made a reinstallation of everything and now I'm able to see the articles. Can't explain what happened but for me it's working now, closing the issue.