Ask Questions and Find Answers
Important:
Ask is now read-only. You can review any existing questions and answers, but not add anything new.
But - don't panic! While ask is no more, we've replaced it with discuss - the new Liferay Discussion Forum! Read more here here or just visit the site here:
discuss.liferay.com
RE: [RESOLVED] com.liferay.portal.NoSuchResourceActionException
Hi all,
I created one jsp portlet in plugin. I got the error in the console like:
even i deleted that particular portlet from plugin and server , as well as I have deleted that portlet entry manually from the database(Preference).
But I am getting that error.
How to resolve it?
Thanks in advance
-Gnaniyar Zubair
I created one jsp portlet in plugin. I got the error in the console like:
com.liferay.portal.NoSuchResourceActionException: <portletName>#CONFIGURATION
even i deleted that particular portlet from plugin and server , as well as I have deleted that portlet entry manually from the database(Preference).
But I am getting that error.
How to resolve it?
Thanks in advance
-Gnaniyar Zubair
Did you add that portlet to any page? When do you get the error?
Hi Khaja,
Thanks for your swift reply.
I have added that portlet in one page. It is working successfully at first time. If i refresh next time, i got that error what i mentioned.
- Gnaniyar Zubair.
Thanks for your swift reply.
I have added that portlet in one page. It is working successfully at first time. If i refresh next time, i got that error what i mentioned.
- Gnaniyar Zubair.
Did you remove the portlet from the page or just deleted the war? Also which version of Liferay are you using. Do you see the exceptions when you access the page where you added the portlet or other pages too? It is recommended not to work with the database directly to make any changes.
-Shagul
-Shagul
Hi,
I removed the portlet from the page and i got the same error. then, I have removed war file from all the places and that portlet bundle from server also. Still I am getting the error.
Error is appearing in console when i visit that page but In UI, i got "Internal serve Error" .
My last trial was, changes in database entry.
- Gnaniyar Zubair
I removed the portlet from the page and i got the same error. then, I have removed war file from all the places and that portlet bundle from server also. Still I am getting the error.
Error is appearing in console when i visit that page but In UI, i got "Internal serve Error" .
My last trial was, changes in database entry.
- Gnaniyar Zubair
Hi there,
May be you can make server down , make resourcecode/resourceaction table empty,and restart server, it will again generate entries in.
let me know if it helps.
-Archi
May be you can make server down , make resourcecode/resourceaction table empty,and restart server, it will again generate entries in.
let me know if it helps.
-Archi
Hi Archi,
Thanks for your reply. I have fixed this issue successfully. Actually, that is liferay 5.2.3 bug. I have done these modification:
Step 1:
Step 2:
Step 3:
Modify that java file as mentioned below:
a) import this class
b) At line no 765 add this code ( blue colored line):
Role role = roleLocalService.getRole(companyId, RoleConstants.OWNER);
resourcePermissionLocalService.setResourcePermissions(
resource.getCompanyId(), resource.getName(), resource.getScope(),
resource.getPrimKey(), role.getRoleId(),
actionIds.toArray(new String[actionIds.size()]));
- Gnaniyar Zubair
Thanks for your reply. I have fixed this issue successfully. Actually, that is liferay 5.2.3 bug. I have done these modification:
Step 1:
Liferay portal source >>>>>>>
Go to /portal-impl/src/com/liferay/portal/service/impl/
copy this java file : ResourceLocalServiceImpl.java
Step 2:
Paste the [b]ResourceLocalServiceImpl.java[/b] file here:
inside ext-impl>src>com>liferay>portal>service>impl>
Step 3:
Modify that java file as mentioned below:
a) import this class
[color=#200EC5]import com.liferay.portal.service.ResourceActionLocalServiceUtil;[/color]
b) At line no 765 add this code ( blue colored line):
Role role = roleLocalService.getRole(companyId, RoleConstants.OWNER);
[color=#200EC5]765. ResourceActionLocalServiceUtil.checkResourceActions(resource.getName(), actionIds);[/color]
resourcePermissionLocalService.setResourcePermissions(
resource.getCompanyId(), resource.getName(), resource.getScope(),
resource.getPrimKey(), role.getRoleId(),
actionIds.toArray(new String[actionIds.size()]));
- Gnaniyar Zubair
Archi Madhu:
Great. I had this problem and this solution worked for me too.
Hi there,
May be you can make server down , make resourcecode/resourceaction table empty,and restart server, it will again generate entries in.
let me know if it helps.
-Archi
Droping the Liferay database resolved the problem for me.
Hi All,
To be more specific on the Archi's Comment, it solved my issue on deleting the entry from the resourceaction table of that particular portlet rather than deleting full table.
Remove that particular portlet from the webapps and once again deploy that portlet.
Your problem will get solved.
Thanks & Regards,
Amit Doshi
To be more specific on the Archi's Comment, it solved my issue on deleting the entry from the resourceaction table of that particular portlet rather than deleting full table.
Remove that particular portlet from the webapps and once again deploy that portlet.
Your problem will get solved.
Thanks & Regards,
Amit Doshi
Hi All,
I have also solved my problem by dropping all the rows of resourceAction table.
Thank you for your contribution..
Regards,
Vishal
I have also solved my problem by dropping all the rows of resourceAction table.
Thank you for your contribution..

Regards,
Vishal
I also having the same problem. When I deleted the entry from ResourceAction it worked but wanted to know how Liferay generate the entries in the table? Are there any foreign key constraint that would affect this table?
Copyright © 2025 Liferay, Inc
• Privacy Policy
Powered by Liferay™