4 Replies Latest reply on Aug 31, 2011 10:10 AM by mwringe

    How tocreate a default Skin for every user in GateIn portal Server

    ashu09

      Edit the  "<your jboss Server >\default\deploy\gatein.ear\02portal.war\WEB-INF\conf\portal\portal\classic\portal.xml" file and add the following tag

       

      <skin>CustomizedSkin</skin>

       

      For e.g.

      ==================================================

      <portal-config

          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

          xsi:schemaLocation="http://www.gatein.org/xml/ns/gatein_objects_1_0 http://www.gatein.org/xml/ns/gatein_objects_1_0"

          xmlns="http://www.gatein.org/xml/ns/gatein_objects_1_0">

        <portal-name>classic</portal-name>

        <locale>en</locale>

        <access-permissions>Everyone</access-permissions>

        <edit-permission>*:/platform/administrators</edit-permission>

        <skin>CustomizedSkin</skin>

        <properties>

          <entry key="sessionAlive">onDemand</entry>

        </properties>

      ============================================

       

      Your  Customized skin will be Default Skin  .  It works fine with the root user and demo user however for other user and newly register user  , the defaukt skin is the jboss default skin from  01eXoResources .

       

      I want the my customized skin should be the default skin for all users.