cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Hybris commerce backoffice url redirecting to hac

Former Member
0 Likes
4,027

Hi there,

after recipe installation on version 1811 (sap_commerce_1905-b2c_b2b_acc_oms) i dont have access to the backoffice only to the hac and frontend.

I looked into the localextensions.xml and the yacceleratorbackoffice is listed in.

during the build and initializatian was no error so far.

What is missing ?

Accepted Solutions (0)

Answers (6)

Answers (6)

former_member684987
Discoverer
0 Likes

is this resolved?

Former Member
0 Likes

in the meantime i have installed another recipe with the same result. backoffice not reachable or better

404 - Page does not exist

but the frontend and hac is still available. also under the extension show up that backoffice is installed.

Former Member
0 Likes

yes still facing this issue. it´s installed and under extension also named.hac.png

extensions.png

hosts.png

so what the .. is missing ?

i dont now how to search within the build log or the initialization log ?

Former Member
0 Likes

i added the mentioned extensions like you suggested a.e.dubey and run "ant clean initialize" afterwards without any affect ??

a_e_dubey
Active Participant
0 Likes

Still you facing issue? Then try to look hac->platform->extesnion and look for backoffice. Also ake sure you do not have any build error and error while starting server.

Former Member
0 Likes

Hi Abhishek Dubey,

thx for the quick answer !

it seems those are missing in:

-adaptivesearchwebservices

-solrfacetsearchbackoffice

-pcmbackoffice (instead thats included: pcmbackofficesamplesaddon)

-backofficesolrsearch

-cmsbackoffice

Should i add all of the missing?

is the order of including equal ?

are recipies uncomplete in generell ?

can i add as much extension i like if the version is matching?

Here is my localextension.xml:

<hybrisconfig xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:noNamespaceSchemaLocation='../bin/platform/resources/schemas/extensions.xsd'>
  <extensions>
    <path dir='${HYBRIS_BIN_DIR}' autoload='false' />
    <extension name='ordermanagementaddon' />
    <extension name='orderselfserviceaddon' />
    <extension name='ordermanagementwebservices' />
    <extension name='b2bordermanagementwebservices' />
    <extension name='warehousing' />
    <extension name='warehousingbackoffice' />
    <extension name='warehousingwebservices' />
    <extension name='adaptivesearchsolr' />
    <extension name='adaptivesearchbackoffice' />
    <extension name='adaptivesearchsamplesaddon' />
    <extension name='b2bcommercebackoffice' />
    <extension name='commerceservicesbackoffice' />
    <extension name='yacceleratorbackoffice' />
    <extension name='yacceleratorinitialdata' />
    <extension name='yacceleratorordermanagement' />
    <extension name='yacceleratorstorefront' />
    <extension name='yb2bacceleratorstorefront' />
    <extension name='yaddon' />
    <extension name='ycommercewebservices' />
    <extension name='cmsoccaddon' />
    <extension name='apparelstore' />
    <extension name='electronicsstore' />
    <extension name='powertoolsstore' />
    <extension name='solrserver' />
    <extension name='acceleratorwebservicesaddon' />
    <extension name='b2bacceleratoraddon' />
    <extension name='commerceorgaddon' />
    <extension name='commerceorgsamplesaddon' />
    <extension name='assistedservicestorefront' />
    <extension name='assistedservicewebservices' />
    <extension name='customerticketingaddon' />
    <extension name='customersupportbackoffice' />
    <extension name='ticketsystembackoffice' />
    <extension name='consignmenttrackingbackoffice' />
    <extension name='rulebuilderbackoffice' />
    <extension name='couponbackoffice' />
    <extension name='droolsruleengineservices' />
    <extension name='couponfacades' />
    <extension name='promotionenginesamplesaddon' />
    <extension name='consignmenttrackingaddon' />
    <extension name='pcmbackofficesamplesaddon' />
    <extension name='consignmenttrackingoccaddon' />
    <extension name='outboundservices' />
    <extension name='odata2webservices' />
    <extension name='odata2webservicesfeaturetests' />
    <extension name='kymaintegrationbackoffice' />
    <extension name='kymaintegrationsampledata' />
  </extensions>
</hybrisconfig>
a_e_dubey
Active Participant

Yes you are free to add as much you want to add new extensions. Recipe is nothing but a kind of automated process which generate extensions list and add it to localextensions.xml. So localextensions.xml must have all required extensions name that are required to enable specific set of functionality so recipe does that as simple as that. Also there is no specific sequence of extensions so add these extensions that are required to enable backoffice.

a_e_dubey
Active Participant
0 Likes

Hi ennulat1 ,

You have to add additional extesnions in your localextension.xml given below.

	<extension name='adaptivesearchbackoffice' />
    <extension name='adaptivesearchwebservices' />
    <extension name='commerceservicesbackoffice' />
    <extension name='solrfacetsearchbackoffice' />
	<extension name='b2bcommercebackoffice' />
	<extension name='pcmbackoffice' />
	<extension name='backofficesolrsearch' />
	<extension name='cmsbackoffice' />

This will help you.