Hi,
I'm trying to setup site and admin base on BLC 5.1.3 CE components. I have a problem with CMS/Page in admin interface, I can create or view defined page but in admin details form only meta data are shown (sections: basic, general, misc) and I cannot force platform to show content editor.
My DB setup:
INSERT INTO BLC_PAGE_TMPLT (PAGE_TMPLT_ID, TMPLT_NAME, TMPLT_DESCR, TMPLT_PATH) VALUES (-1, 'Article template', 'This template provides a basic layout with title and content.', '/pageTemplates/article') ;
INSERT INTO BLC_FLD_GROUP(FLD_GROUP_ID, NAME, INIT_COLLAPSED_FLAG) VALUES (-1, 'Content', FALSE);
INSERT INTO BLC_FLD_DEF(FLD_DEF_ID, NAME, FRIENDLY_NAME, FLD_TYPE, SECURITY_LEVEL, HIDDEN_FLAG, VLDTN_REGEX, VLDTN_ERROR_MSSG_KEY, MAX_LENGTH, COLUMN_WIDTH, TEXT_AREA_FLAG, ENUM_ID, ALLOW_MULTIPLES, FLD_GROUP_ID, FLD_ORDER) VALUES (-1, 'content', 'Content', 'HTML', NULL, FALSE, null, null, null, '*', FALSE, NULL, FALSE, -1, 0);
INSERT INTO BLC_PGTMPLT_FLDGRP_XREF(PG_TMPLT_FLD_GRP_ID, PAGE_TMPLT_ID, FLD_GROUP_ID, GROUP_ORDER) VALUES (-1,-1,-1,0);
INSERT INTO BLC_PAGE (PAGE_ID, DESCRIPTION, PAGE_TMPLT_ID, FULL_URL) VALUES (-1, 'FAQ', -1, '/faq');
INSERT INTO BLC_PAGE_FLD(PAGE_FLD_ID, FLD_KEY, LOB_VALUE, PAGE_ID) VALUES (-1, 'content', '<p>TESTTESTTESTTESTTEST', -1);
I defined permissions for following cms objects:
org.broadleafcommerce.cms.page.domain.Page
org.broadleafcommerce.cms.field.domain.FieldDefinition
org.broadleafcommerce.cms.page.domain.PageField
org.broadleafcommerce.cms.page.domain.PageAttribute
org.broadleafcommerce.cms.page.domain.PageItemCriteria
org.broadleafcommerce.cms.field.domain.FieldGroup
org.broadleafcommerce.cms.page.domain.PageRule
context configuration,
default, in web.xml loading
<context-param>
<param-name>patchConfigLocation</param-name>
<param-value>
classpath:/bl-open-admin-contentClient-applicationContext.xml
classpath:/bl-open-admin-contentCreator-applicationContext.xml
classpath:/bl-admin-applicationContext.xml
classpath:/bl-cms-contentClient-applicationContext.xml
classpath:/bl-cms-contentCreator-applicationContext.xml
classpath*:/blc-config/admin/bl-*-applicationContext.xml
classpath:/applicationContext.xml
classpath:/applicationContext-email.xml
classpath:/applicationContext-dataSource.xml
/WEB-INF/applicationContext-datasource.xml
/WEB-INF/applicationContext-admin-security.xml
/WEB-INF/applicationContext-admin-filter.xml
/WEB-INF/applicationContext-admin.xml
</param-value>
</context-param>
most probably I missing something something in configuration or DB but after two days of searching I have no idea what...
This forum is in readonly mode and serves as an archive of old information. All posting, registration and commenting abilities have been turned off. To get help, the Broadleaf team reguarly monitors the broadleaf-commerce tag on Stack Overflow so please ask your questions there.