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
0
votes
1 answer

How do I add a default text field that any new crafter component will have no matter what component type

I want the ability to include a text field on any of the components my users use in crafter. Just like Intnernal Name is automatically added to every component. So whether I bring up component Type A or component Type B, it will automatically have…
Peter
  • 1
0
votes
1 answer

error while trying to save to databases Call to undefined method stdClass::save()

I am trying to save an api call to my databases. but I am getting an error while saving to the databases I search google and look here. I have tried the code that was offered I have not had much luck. public function…
Semesic
  • 39
  • 1
  • 5
0
votes
1 answer

Running a controller code for all the pages using Content Inheritance

We want to run a common controller(groovy) code on all the pages. Can I set up Content Inheritance by using a controller using level-descriptor?
Paras
  • 804
  • 1
  • 10
  • 25
0
votes
1 answer

CrafterCMS: How to use crafter engine properties in an application-context bean?

I am connecting to an external database with a class that extends JdbcTemplate. My problem is that I can't use the globalProperties of the Groovy API because of the Jdbc. I added these properties I needed in the…
0
votes
1 answer

Crafter CMS 3.0 File Upload Limit

How can I set file upload limit for specific content type in crafter 3.0. Say for example Content type ABC must have file upload limit of 25MB where as Content type XYZ Must have file upload limit of 10MB.
Y Vala
  • 13
  • 2
0
votes
1 answer

How to pick a fallback site in Crafter Studio?

I have an external REST client calling a service in a particular site in Crafter Studio. When the 'crafterSite' cookie is not set, Studio will fail the call and log this in catalina.out: [WARN] 2018-03-15 19:50:50,015 [http-bio-7070-exec-4687] []…
Michael Chen
  • 631
  • 5
  • 12
0
votes
1 answer

Crafter CMS Search Attachment With External Metadata Post Processor in repeating Group

I have the following data model. A Page type with a repeating group names files. Inside the repeating group, there is a node-selector to select files name file Then I need to index the metadata of the page with the metadata of the file in order to…
CL1MB3R
  • 145
  • 9
0
votes
1 answer

Reindex Solr in crafter delivey version 3

I am trying to reindex solr in one of our crafter delivery node with curl command curl "http://{hostname}:{port}/api/1/target/deploy/{environment}/{siteName}" -X POST -H "Content-Type: text/json" -d '{ "reprocess_all_files": true }' And changing…
Y Vala
  • 13
  • 2
0
votes
1 answer

How do I allow a user to send me a email in crafter 3.0?

I am new with crafter 3.0 and right now I am creating a blueprint, one of the sections in my template is the well known "Contact" page where the user writes a message and send it to the site's administrator, I have made all the models,templates and…
0
votes
1 answer

Copy & Paste in RTE Bouncing Page

There is an issue When we copy and paste text into the RTE, we can’t type in the RTE anymore without it bouncing all over the page. It moves you down the page and you have to scroll back up to get to the RTE. While when we again type anything in…
0
votes
1 answer

Preview Sync and Sync From Repository options not available on fresh install

I have set up a fresh Crafter CMS 3.0.2 installation following the instructions here. When I login as admin user I don't get Preview Sync and Sync From Repository options in the Site Config section as show in the page here. How can I add those…
Paras
  • 804
  • 1
  • 10
  • 25
0
votes
1 answer

How to enable publishing in crafter 3.0

We recently get a lot of messages in crafter 3.0 tomcat log saying: Publishing is disabled for site xxxx I was wondering how to enable back this site. Thanks, Nicolas
Nicolas Dufour
  • 203
  • 1
  • 5
0
votes
2 answers

change default color for RTE text in craftercms

How can we change the default color of RTE text color option "A". Please consider attached screen shot for more details. Screen Shot
0
votes
1 answer

controller script running in studio or deployment

Is there a way in a groovy controller script to know is it's running in the studio or in deployment server? I have code that will added data into the model for demo in studio mode while in deployment that data will come from a REST service call.
Tom McGee
  • 15
  • 5
0
votes
1 answer

Crafter CMS - Can the date format be set to a standard ISO format?

I'm using the REST api with Crafter CMS, and the dates are formatted in a US locale specific format like: m/d/y h:m:s This is really surprising and I hope there is a good reason for it, but more importantly, can I change it globally so it uses a…