- Run Installation Manager.
- Verify that updates are enabled. Open File > Preferences... > Updates and select Search for Installation Manager update.
- Verify that service repositories are searched. Open File > Preferences... > Repositories and select Search service repositories during installation and updates.
- On the start page of the Installation Manager, click Update.
Thursday, 14 November 2013
Steps to have IBM Installation Manager Updated with the latest Version.
Wednesday, 6 November 2013
Enable / Disable in LOBTools\WebContent\WEB-INF\src\lzx\commerce\shell\ConfigProperties.lzx
More details given below...
<!---
A flag that determines whether users should have read-only access while working on approved content.
Set this value to "true" to prevent business users from making changes while working on approved content.
-->
<attribute name="readOnlyOnApprovedContent" type="boolean" value="false" />
<!---
The maximum number of stores to be displayed in the store selection dropdown,
and the maximum number of store URLs to be displayed in the store preview dialog.
-->
<attribute name="maximumStoresInList" type="number" value="10"/>
Tuesday, 5 November 2013
Overview of Tealeaf
Teafleaf records what customers view on the store pages and its interaction with the store pages.
Enabling of the Tealeaf configuration can be done using the Management Center - Store Management ->Analytics
RealiTea Viewer (RTV) and Browser Based Replay (BBR) can be used to replay the recordings.
Sunday, 3 November 2013
To Refresh Resource Bundles in Websphere Commerce Without Server Re-Start
Given below is the code snippet which will allow you to change your property files and refresh them automatically without restarting your application server.
- Create a JSP 'refreshBundles.jsp' and copy the below code snippet.
- Upon doing the changes in the properties file, build the project(ctrl-b)
- Use the URL below to invoke the JSP -
- http://<domain name>/webapp/wcs/stores/servlet/refreshBundles.jsp
JSP - refreshBundles.jsp
--------------------------------------
<%@ page import="java.util.*, java.lang.reflect.*"%>
<%--
To refresh property files hit the following URL
E:\IBM\WCD\workspace\Stores\WebContent\refreshBundles.jsp
e.g. http://localhost/webapp/wcs/stores/servlet/refreshBundles.jsp
--%>
<%
Class klass = Class.forName("java.util.PropertyResourceBundle").getSuperclass();
Field field = klass.getDeclaredField("cache");
field.setAccessible(true);
WeakHashMap cache = (WeakHashMap)field.get(null);
cache.clear();
field.setAccessible(false);
%>
<body bgcolor="#aabbff">
<table height="500" align="center">
<tr><td valign="middle">
<table align="center" cellpadding="10" cellspacing="1" bgcolor="#ffffff">
<tr><th bgcolor="#bbccff">
Resource Bundles have been RESET!<br/>
<%=new java.util.Date()%><br/>
Go check now!!!
</th></tr>
</table>
</td></tr>
</table>
</body>
--------------------------------------
Subscribe to:
Posts (Atom)