Blog

  1. Home
  2. Blog

Oracle Endeca Commerce DidYouMean

“Did you mean?” functionality allows an application to provide site user with explicit alternative suggestions for a keyword search. For example, if a user searches for “lapto” in sample data, user will get few results. The terms “laptop” and “laptops” however, are much more prevalent. When this feature is enabled, MDEX Engine will respond with the few results for “lapto”, but will also suggest that “laptop”or “laptops” may be […]

Continue Reading

Where is EDeN Content?

  EDeN Content Current Location Product Downloads edelivery.oracle.com Product Documentation (pdfs) docs.oracle.com Forums – New Content OTN: forums.oracle.com Support: communities.oracle.com Forums – legacy Content MOS: communities.oracle.com Support Tech Notes support.oracle.com (knowledge tab) Solution Articles and Whitepapers support.oracle.com (knowledge tab) Release Notes & Release Announcements OTN product landing page Release Announcements & Product Updates LinkedIn Community – Oracle Commerce Community

Continue Reading

untar a tar file or gzip-bz2 tar file

Tar file can come compressed or uncompressed. Generally that are compressed using gzip or bzip2. tar, will uncompress both types and extract the files from archive. We can execute below command – tar xvzf test.tar.gz – to uncompress a gzip tar file (.tgz or .tar.gz) – tar xvjf test.tar.bz2 – to uncompress a bzip2 tar file (.tbz or .tar.bz2) – tar xvf […]

Continue Reading

Getting error when importing site

While performing activity for importing site to XM, sometime we get error like one below. This is because the .xml file that is created from site export process has application name hardcoded throughout exported xml.  When we try to import, there is a conflict with application name on target and site_import fails. [mydemo@localhost control]$ sh import_site.sh DemoStore.xml [04.02.15 12:07:26] INFO: Checking […]

Continue Reading

HWDI Scenario: Getting Coming Soon Products

HWDI [How We Do It] will be series of business queries and there answers using Oracle Commerce. When there are new products [example The New MacBook] which are coming to market and your website need to handle a situation, where you want to allow users to providing their email for future contacts and information as the device becomes available for sale. Also […]

Continue Reading

Oracle Commerce 11.1 CreateProcess error=206

When trying to access the Dyn Admin getting below error. The detailed exception is: java.io.IOException: Cannot run program “javac”: CreateProcess error=206, The filename or extension is too long Simple solution to this is by adding ExtendedJhtmlPageProcessor component at atg\dynamo\servlet\pagecompile\ location and restart sever. Navigate to ATG_HOME\localconfig directory. Create atg\dynamo\servlet\pagecompile directory structure. Create ExtendedJhtmlPageProcessor.properties file and add below content to it      #atg\dynamo\servlet\pagecompile\ExtendedJhtmlPageProcessor.properties      […]

Continue Reading

Running Elastiscsearch as a Service on Windows

Windows users can configure Elasticsearch to run as a service to run in the background or start automatically at startup without any user interaction. Script service.bat” under “C:\elasticsearch-x.x.x\bin” folder which allows one to install, remove, manage or configure the service and potentially start and stop the service, all from the command-line. c:\ELK\elasticsearch-x.x.x\bin>service.bat Usage: service.bat install|remove|start|stop|manager

Continue Reading

Workbench and MDEX Connectivity

Few cartridges (Custom/OOTB) communicate directly with the MDEX engines for performing an operation and also communicate with the EAC applications managed by Workbench. Oracle Endeca Guided Search integration includes a number of components to facilitate both types of communication. AssemblerApplicationConfiguration Component Class “atg.endeca.assembler.configuration.AssemblerApplicationConfiguration” has properties defined for MDEX and Workbench config and many others. (For example baseApplicationName, locales, recordIdName, recordTypeName, recordSourceName, defaultLanguageForApplications, keyToApplicationName). […]

Continue Reading

Endeca application configuration files

Many Endeca projects requires applications customization to enable custom script behavior [For example taking server out/in service using Cisco Application Networking Manager and many others], processing steps,  or even changes to directory structure. The application configuration file AppConfig.xml located at “<app dir>/config/script/” and its associated files define various hosts, components and scripts are one which changes the way application works. Deployment Template provides a single […]

Continue Reading

Scrpit to stop dgraph, archive logs, start dgraph

DgraphCluster has an object’s applyIndex() method from the default “DistributeIndexAndApply” scrpit to create a new script within your Deployment Template. You can see this script in AppConfig.xml for your application. The applyIndex() method will stop the dgraph, archived the log files, then restarted the dgraph. <script id=”RestartDgraphAndArchiveLogs”> <bean-shell-script> [![CDATA[DgraphCluster.applyIndex();]]> </bean-shell-script> </script>

Continue Reading
Show Buttons
Hide Buttons