Creating an extended site store in a migrated environment

Create an extended site store in a migrated environment as a local store.To understand the difference between a local and a remote store, see Migrating a legacy WebSphere Commerce store.

Procedure

  1. Create an extended site store with the Store Creation wizard within HCL Commerce Accelerator.
  2. Update your STORECONF table to indicate that the store is a local store.
    1. Find the store IDs for the store you created.
      Run the following SQL select query.
      select store_id from store where directory in ('store_name');

      Where store_name is the base name of your store.

    2. For each extended site store ID that is returned, insert a corresponding record into your STORECONF table.
      For each STOREENT_ID value, run the following SQL insert query.
      Insert into storeconf values(STOREENT_ID, 'wc.store.isRemote','0',0);

      Where STOREENT_ID is the ID of the store that you retrieved from the previous SQL query.

  3. Start or restart your Transaction server, and Transaction web server.
  4. Build the search index.

Results

The extended site store is created, and updated in the database as a migrated local store. It can now be managed in the Store Management Tool within the Management Center for HCL Commerce.