Questions tagged [crafter-cms]

A content management system from Crafter Software. Not to be confused with Craft CMS

Crafter CMS distinguishes itself by its modern architecture, in turn, this enables:

  • Truly Decoupled CMS (disconnected global delivery)
  • Dynamic / personalized delivery of every request at speed
  • API first CMS (content as a service)
  • Git-based CMS (allows for excellent developer cadence)
  • Share-nothing delivery architecture (extreme scale)
  • Front-end agnostic (bring your favorite UI framework or use as a headless CMS)
  • Equal support for all three CMS stakeholders: content authors, developers, and system administrators

More information can be found at: - http://craftersoftware.com/ - http://docs.craftercms.org/en/3.0

115 questions
3
votes
1 answer

How do I configure crafter profile client and crafter profile admin console with non-default crafter profile URL?

The default configuration of crafter profile is http://localhost:8080/crafter-profile for Crafter Profile Client and Crafter Profile Admin Console. I have installed Crafter Profile on port 7070 and updated the following property in the extension…
3
votes
2 answers

In CrafterCMS, how can I publish a content through an API?

I'm trying to write a bash script that would publish a list of files already present in crafter. Is there an API to do that? And I suppose you need to be logged in first. Thank you
Nicolas Dufour
  • 203
  • 1
  • 5
3
votes
1 answer

Craftercms: How to access Crafter engine properties in groovy controllers?

Is it possible to access the crafter engine properties (defined in server-config.properties) from groovy? As an example: access the property “crafter.engine.site.default.staticAssets.path” ... So far I have tried accessing the "crafter.properties"…
2
votes
2 answers

display fields value in the form of array in groovy

I've a method in groovy inside strategy.groovy file as shown below: strategy.groovy file (snippets of code inside strategy,groovy file): Element strategy = createStrategyElement(rootStrategy, ctx) println("strategy 31:…
flash
  • 1,455
  • 11
  • 61
  • 132
2
votes
1 answer

Not able to use content inheritance in Crafter CMS

Following this documentation, I was trying to implement content inheritance but I could not. My simple use case is: Parent component contains CSS data. Child component inherits from it and populates its template with CSS links. In…
Javed
  • 5,904
  • 4
  • 46
  • 71
2
votes
1 answer

can't Creating a site in Crafter CMS 3.1.0

Unable to Create site getting error notification I followed the instructions given here : https://docs.craftercms.org/en/3.1/getting-started/quick-start-guide.html Steps followed: I cloned Crafter CMS Docker Compose repo from GitHub and then I…
Ramkumar R
  • 33
  • 4
2
votes
1 answer

CrafterCMS: How to output html body indexed by solr?

I used the suffix _html in my RTEs for solr's indexing functionality. However, when I display my search result, I need the html tags rather than the plain text. Is there a work around to do this? Edit: I use a map, matches = [:], to store the…
2
votes
1 answer

Apache 2.4 proxy add request parameter to all requets

I am using Crafter CMS with multi-tenancy. I am trying to setup Apache2.4 on RHEL7 to be a reverse proxy. http://site.example.com -> ajp://localhost:9009/?crafterSite=site Here is my Apache2 virtual host configuration. I have ensured that mod_proxy…
JWilliams
  • 128
  • 6
2
votes
1 answer

Craftercms - Social: Is it possible to specify which user attributes the "create comment" API should retrieve?

Is there a way to specify which user attributes are retrieved in the response of the "create comment" API call? I mean: "user":{ "attributes":{ } } The call I am talking about is documented…
2
votes
1 answer

How to setup authoring env to publish site to remote git repo?

I downloaded and started authoring environment (crafter-cms-authoring.zip) Created site backed by remote git repo as described in: Create site based on a blueprint then push to remote bare git repository Created a content type, new page. Published…
2
votes
1 answer

What does 'Content was saved as DRAFT' mean in Crafter Studio?

What does this message mean while selecting all in-progress content in Crafter Studio? Content was saved as DRAFT. Some required fields may not be populated. This can cause errors when previewed or deployed. The publish button is not available.…
Michael Chen
  • 631
  • 5
  • 12
2
votes
1 answer

What is the underlying database being used by Crafter CMS 3.0 or later?

AFAIK Crafter CMS prior to version 3.0 used Alfresco as the repository which in turn uses RDBMS database as the underlying database for storage of meta data. It says Crafter CMS 3.0 is using git as the repository. My application will involve lot of…
ace
  • 11,526
  • 39
  • 113
  • 193
2
votes
1 answer

How can I implement relative urls (with #) in crafter 3?

I am using viewerjs library in crafter 3 The thing is the library uses a relative url in order to work just like this: the problem is when I do the same in crafter I get this error:…
2
votes
1 answer

NavTreeBuilder in preview mode

I was wondering if Crafter engine in preview mode changes how NavTreeBuilder behaves. I have observed that the exact same call to navTreeBuilder.getNavTree(url, 2, ...) is taking above 5s to respond in preview whereas less than a second in regular…
Nicolas Dufour
  • 203
  • 1
  • 5
2
votes
1 answer

Adding HTML table related controls on RTE toolbar

We want to be able to add and update HTML tables for our rich text using a Rich text editor. We need a button(or buttons) providing us the Ability to add HTML table. On click of the button, user should be able to specify the number of rows and…
Paras
  • 804
  • 1
  • 10
  • 25