How to handle "Resouce 'X/Y/Z' not found in (...)/Zend/Acl.php #3468
Replies: 9 comments 22 replies
-
Did you clear the cache? Are you using any FPC extension? Redis? Disable those two extensions and check if the exceptions are written in the log file. Install the file system and database in a test environment. Export the admin_rule table and then truncate it. Check if the errors still appear after it is empty. |
Beta Was this translation helpful? Give feedback.
-
Was it throwed once and only after update? |
Beta Was this translation helpful? Give feedback.
-
I did some testing with the resource "admin/rma/settings/action":
Is there some kind of event some plug ins probably don't hook correctly into? Is there a good location for a breakpoint for debugging this saving? I'll investigate further but don't know if I find enough time next week. |
Beta Was this translation helpful? Give feedback.
-
Same problem here, on a test server fortunately, any solutions? |
Beta Was this translation helpful? Give feedback.
-
Duplicate of discussion #2705, which is fixed in PR #2706. For 3rd-party rules, you can just remove them in your database: DELETE FROM admin_rule
WHERE `resource_id` IN (
'admin/rma/settings/action',
'admin/Symmetrics_CashTicket/action',
# ... and so on
) |
Beta Was this translation helpful? Give feedback.
-
Sorry, reopen because the errors may not be related to #2705. |
Beta Was this translation helpful? Give feedback.
-
To get rid of these errors in log file just follow these steps:
Please, let me know if it's working for you. |
Beta Was this translation helpful? Give feedback.
-
Well the problem is not in admin_rule table, but in the code. Do the same thing in RMA extension. |
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
-
Hi,
since a while I am seeing the Exception mentioned in the title in my exception.log when I login to the admin area. But I have no real idea how to takle this one.
A concrete example:
Just going in admin to Rights (or privelges?)/roles/resources and save it again seems to have no effect.
I discovered that roles are stored in the table ''admin_rule". Would it be enough to just manually add the rules there? Or would this have unwanted side effects I am not aware of?
I did not post this as a bug, because it seems to come (only) from external plugins (from which I don't expect to get any support from nowadays)
Kind regards
Beta Was this translation helpful? Give feedback.
All reactions