1
vote
3answers
45 views

Two portlets with same database

I am developing Liferay portal and I have one portlet which handles the administrator side of the portal and one the client side. The thing is that the clients cannot see the administrator page ...
0
votes
1answer
15 views

CSS to Liferay theme

I have a css web design and I want to converted in Liferay theme. Is this possible? I am using Liferay 6.1 Ga2 with Tomcat 7 and Liferay SDK for java. Any advice will be appreciated! Thanks in ...
1
vote
3answers
39 views

Hide Liferay control panel options form users

I am developing a liferay portlet using liferay6.1 and SDK for Java. When user logs in and they click on control panel they can see all kind of options. Is there a way to hide this options? I am ...
6
votes
4answers
135 views

Liferay With Multiple Server Instances

I'm working with multiple Liferay Projects (different Portal, plugins, user and usergroups etc ) in the same time, and often have to switch between them. This switch requires lots of steps like ...
0
votes
0answers
13 views

Create own customized Web Content List

I'm looking to create my own Web Content List portlet. I exactly want to display the web content of my portal applying some filters. I'm a little bit lost... I tried to create a hook but I dont ...
0
votes
0answers
28 views

Error in deploying liferay maven project

I have created a simple liferay portlet using maven. But later I found out a problem in my pom.xml file. How can I overcome this problem. Because of it I could not be able to deploy the portlet. Any ...
0
votes
1answer
51 views

Liferay: Error opening portlet.xml from eclipse

I'm working with Eclipse Helios nd using Liferay Portal version 6. I have already installed the Liferay IDE plugins and I installed the required software for working on this platform. But I am still ...
1
vote
2answers
169 views

Creating a build job for liferay portlet in jenkins

I want to develope a simple liferay portlet, deploy it using maven and build job in CI (Jenkins). But I come to know that Liferay doesn't support Maven and they are still working on it. Can anyone ...
0
votes
1answer
67 views

Liferay, ServiceBuilder, what's the scope for attributes userId, companyId, userId

Although I've developed some services with Liferay ServiceBuilder, I'm not quite sure I understand the point of using the attributes: userId companyId groupId Note that these attributes are ...
1
vote
1answer
37 views

How to remove Configuration option from WIKI for Power User?

In my Liferay site, Power Users are getting permission for changing Configuration options like; Look and Feel, Configuration and Export/Import options. I don't know how this is coming. Guessing that ...
0
votes
2answers
90 views

How to hide “User Information” options from “My Account” in Liferay 6.1?

I am trying to hide some options in "User Information" from My Account by using hook. I just want to hide it using CSS (style="display:none"). User Information is present in the right side of My ...
0
votes
0answers
65 views

How to give “Add New” permission of Asset Publisher for a custom role?

I just created one custom regular role and gave some permissions... Now "Add New" button is visible in Asset Publisher portlet, but the user belongs to that custom role is not able to add any ...
0
votes
2answers
187 views

How to encrypt password while saving Users in Liferay 6.1?

I am trying to consume Liferay's User entity to add users by writing code. The password is not encrypting, so log in is failing. The code is pasting below. int countOfUsr = ...
0
votes
2answers
123 views

How i convert spring project to liferay?

I developped an application (spring, hibernate) and i must convert it to liferay Project how i can do it? please could you help me thank you.
0
votes
0answers
84 views

How to add some more roles in “Viewable by” option of calendar portlet?

At present there are only three options in "Viewable by" option of Calendar portlet. "Guest, Site Members and Owner". How can I add a new existing or custom role here? So that the event should be ...
1
vote
1answer
75 views

How to create a new Column in CalEvent table corresponding to the newly created field in “Add Event” page of Calendar portlet?

<aui:select name="Event for"> <% for (User usr : UserLocalServiceUtil.getRoleUsers(10163)) { %> <aui:option label="<%=usr.getFullName()%>" ...
1
vote
0answers
60 views

How to disable selected permissions of administrator role from liferay?

I just want to hide some options from control panel of administrator role from liferay. Options like "Monitoring, Mobile Device Rules, Portal settings, Plug in installation, Update Manager...etc." . ...
0
votes
0answers
54 views

persistent class method not generating in util class class while using custom query in liferay

package emenu.advertise.database.service.persistence; import java.util.ArrayList; import java.util.List; import com.liferay.portal.SystemException; import ...
0
votes
0answers
580 views

How to use custom mysql query from my liferay custom portlet?

I am using Liferay and developing my custom portlet, now I want to use custom query to retrieve some data from multiple table with joins etc. I have googled the things for my problem but can't find ...
1
vote
4answers
566 views

How to deploy a portlet to Liferay from Eclipse

I've made a portlet in Eclipse and now I'd like to deploy it to a running Liferay-6.1 instance and debug it. I guess this should be described in documentation, but I was only able to found how to ...
0
votes
3answers
666 views

How to create our own portlet in liferay

Please describe me in brief how to create portlets using eclipse ide and to add these in liferay.
0
votes
2answers
525 views

Problem making a Liferay Hook with Eclipse Liferay IDE - getting only empty project

I am using Eclipse Liferay IDE for making a hook to a Liferay native portlet. I mean a porlet that comes with default installation, eg. blogs, content management or similar. I have done the steps ...