How do we add an existing project(not a Liferay) in the form of a URL as a portlet in the Liferay portal.
If you have any existing web application running on somewhere else. You can use Liferay's iframe portlet. Just provide the URL of your application in the portlet.
Ref :
Iframe Portlet
Related
What is the code to configure these configurations from the coding site in liferay java? Without going through the settings in admin's panel?
To configure restrictions using code. At MAIN MENU- CONFIGURATION from the admin site. But how to configure each permission for owner, portal content reviewer, portal user and others for add to page, configuration, view and permissions using code either in controller or xml?
For example to restrict view, certain page, or others.
Thanks.
I work with liferay 5.2
I connected to liferay with this compte test#amazon.en
this compte has the Administrator role so he can show all page in liferay :
I want to display same page by role ,
to do this I create new role having this name : testRole
my goal is to display only link Users that is under Portal to the compte test#amazon.en
Updated :
I try with another way
I create page named pageTest
this page is under Supcom portlet
this is my portlet which is deployed in liferay
this is the Friendly URL of my page : pageTest
http://com.test:8080/group/Supcom/../control_panel/manage?p_p_id=125&p_p_lifecycle=0&p_p_state=maximized&p_p_mode=view&doAsGroupId=11003&refererPlid=18603
I make /../ in order to eliminate Supcom portlet because users portlet is under control_panel portlet
this is the real link of users portlet in liferay :
http://com.tes:8080/group/control_panel/manage?p_p_id=125&p_p_lifecycle=0&p_p_state=maximized&p_p_mode=view&doAsGroupId=11003&refererPlid=18603
my goal as I said is when I click in pageTest I will be forwarded in Users portlet
but I have an error when I try to save the Friendly URL of pageTest
Please enter a friendly url with valid characters.
I want to integrate Alfresco repository to Liferay's document and media portlet and I've configured the same with CMIS Web-Services in control panel.
Custom properties (custom aspects created in Alfresco) are not visible in document details in Liferay while retrieving document details.
I found that to retrieve that information I need to integrate OpenCMIS in Liferay.
Do I need to do custom code implementation for the same? Do I need to write any hook/ext in Liferay to implement the same? Or I can do that with some configuration change in Liferay and Alfresco both.
I have a dotnet implemented site. I want to create same site template in sharepoint. what i have to do. Please if possible tell me detail steps. waiting for reply......its too urgent
Custom Site Template is a big subject on SharePoint . While there is no out of the box way to convert an ASP.NET Site to the SharePoint Custom Site Template.
Steps to do is to dissect the ASP.NET Site to various parts.
User Controls
CSS & JavaScripts
Pages
Custom dlls
Change each of the Parts to Web Parts / Drop the Control in the Control Templates folder.Create a new web part page for the page / Page Layout & Master Pages deployed as the Features.
I wanna how to add a custom web part to a webpart page through code? The custom web part is already deployed to the SharePoint site. It's a MOSS instance.
To place a web part on a page you have to use the SPLimitedWebPartManager which could be retrieved from the actual SPWeb object.
After creating an instance of the web part you want to add to the page, you call the AddWebPart() method of the web part manager and pass the web part instance as a parameter.