Foren

Deploying theme and portlets in Liferay running on non root context

thumbnail
Tina Agrawal, geändert vor 11 Jahren.

Deploying theme and portlets in Liferay running on non root context

Expert Beiträge: 297 Beitrittsdatum: 03.01.08 Neueste Beiträge
Hi All,

Our Liferay Server is setup on a non-root context. The portal context is setup as -
portal.ctx=/lportal

As a result of this the theme that we developed doesn’t work. The images css are not loading in the non root context.
Also, the custom css that the portlets have those are also not loading.

Any clues on how to fix this.

Regards,
Tina
thumbnail
Gaurav Jain, geändert vor 11 Jahren.

RE: Deploying theme and portlets in Liferay running on non root context

Regular Member Beiträge: 145 Beitrittsdatum: 31.01.11 Neueste Beiträge
The problem shouldn't be due to non ROOT context.
Liferay is not just for ROOT context; this can be deployed on variety of envs independently.

Plese check your exact problem regarding why those are not getting loaded. Check your console logs if there are any errors in portal startup or theme deployment.
Also check browser console if there are any resource errors shown
thumbnail
Tina Agrawal, geändert vor 11 Jahren.

RE: Deploying theme and portlets in Liferay running on non root context

Expert Beiträge: 297 Beitrittsdatum: 03.01.08 Neueste Beiträge
I get 404 not found errors for all the css, js -

http://<my-server>/my-theme/js/jquery-1.6.2.min.js?browserId=firefox&minifierType=js&languageId=en_US&b=6120&t=1351681594000)

No errors on the tomcat console.


Tina
Deepjyoti Nath, geändert vor 9 Jahren.

RE: Deploying theme and portlets in Liferay running on non root context

New Member Beiträge: 2 Beitrittsdatum: 03.03.14 Neueste Beiträge
Hi,
Did you get any solution on this?

Thanks,
Deep
Sharad Sinha, geändert vor 9 Jahren.

RE: Deploying theme and portlets in Liferay running on non root context

Junior Member Beiträge: 44 Beitrittsdatum: 08.03.13 Neueste Beiträge
Hi Tina,

Check all files are present in your custom theme folder or not. Clear your browser cache and open your portal in a Private window?

Because i am running my portal on non-root context and i am not facing any kind of issue, so just recheck your theme files.
thumbnail
Olaf Kock, geändert vor 9 Jahren.

RE: Deploying theme and portlets in Liferay running on non root context

Liferay Legend Beiträge: 6396 Beitrittsdatum: 23.09.08 Neueste Beiträge
If you have, for example, an Apache in front of your tomcat, you'll need to forward *all* contexts that you want to be visible to the outside. Assuming you're using mod_jk, you'll have some configuration like the following:

JkMount /lportal/ my-tomcat
JkMount /lportal/* my-tomcat
JkMount /my-theme/* my-tomcat
JkMount /chat-portlet/* my-tomcat


This is easier when Liferay is running in the root context, as then

JkMount /* my-tomcat
JkMount / my-tomcat


is sufficient and will include all other contexts automagically.