RE: [RESOLVED] com.liferay.portal.NoSuchResourceActionException

thumbnail
346576, modified 15 Years ago. Liferay Master Posts: 724 Join Date: 12/19/07 Recent Posts
Hi all,

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
thumbnail
174078, modified 15 Years ago. Liferay Master Posts: 758 Join Date: 9/27/07 Recent Posts
Did you add that portlet to any page? When do you get the error?
thumbnail
346576, modified 15 Years ago. Liferay Master Posts: 724 Join Date: 12/19/07 Recent Posts
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.
thumbnail
174078, modified 15 Years ago. Liferay Master Posts: 758 Join Date: 9/27/07 Recent Posts
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
thumbnail
346576, modified 15 Years ago. Liferay Master Posts: 724 Join Date: 12/19/07 Recent Posts
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
thumbnail
594176, modified 15 Years ago. Regular Member Posts: 237 Join Date: 3/25/08 Recent Posts
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
thumbnail
346576, modified 15 Years ago. Liferay Master Posts: 724 Join Date: 12/19/07 Recent Posts
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:

Liferay portal source &gt;&gt;&gt;&gt;&gt;&gt;&gt;
    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&gt;src&gt;com&gt;liferay&gt;portal&gt;service&gt;impl&gt;


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
thumbnail
Abdollah Esmaeilpour, modified 5 Years ago. Junior Member Posts: 60 Join Date: 8/22/09 Recent Posts
Archi Madhu:

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
Great. I had this problem and this solution worked for me too.
Nitu Saksena, modified 14 Years ago. New Member Posts: 11 Join Date: 2/2/11 Recent Posts
Droping the Liferay database resolved the problem for me.
thumbnail
amit doshi, modified 13 Years ago. Liferay Master Posts: 550 Join Date: 12/29/10 Recent Posts
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
thumbnail
Vishal Panchal, modified 12 Years ago. Expert Posts: 289 Join Date: 5/20/12 Recent Posts
Hi All,

I have also solved my problem by dropping all the rows of resourceAction table.

Thank you for your contribution..emoticon

Regards,
Vishal
thumbnail
Udaya Kumar Velayudam, modified 11 Years ago. New Member Post: 1 Join Date: 1/22/13 Recent Posts
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?