ColdBox is an object-oriented, event-driven framework for ColdFusion that includes tools to help developers with bug reporting, logging, enterprise caching, debugging, i18n, URL rewriting, ORM integration, testing, and mocking.
Questions tagged [coldbox]
137 questions
0
votes
1 answer
Login to coldbox application when login to core project
I have following project structure..
WWW
core project files and folders
ticketSystem (coldbox project)
Ticket system built on framework coldbox 3.0.0. I want user automatically get logged in to ticket system as soon as they login to our core…

Pritesh Patel
- 1,969
- 1
- 18
- 32
0
votes
1 answer
To use interceptors or not interceptors in MVC application framework?
Does using interceptors for controlling the flow of events in a MVC framework == business logic coupled with, or leaked to, the framework?
Is that something one should even worry about? Doesn't seem likely that someone would change the MVC /…

Henry
- 32,689
- 19
- 120
- 221
0
votes
0 answers
lucee error says Entity does not exist, even if the component exists
I am newbie in Lucee administration, I am trying to set up coldbox application but every time I am getting this error:
entity [ABC] with cfc name [model.abc.ABC] does not exist, existing entities are [def,qwe,xyz,dws,dgd]
I could not found anything…

Ritu
- 1,047
- 4
- 12
- 22
0
votes
1 answer
Names of all rendered views in ColdBox (coldfusion)
I have a handler with a whole bunch of views. I am seeking a lot for some small changes sometimes.
Does there exist a function so I can put a border around each view with a label where it's…

Proto
- 249
- 1
- 3
- 21
0
votes
1 answer
ColdBox view Query output error "can not cast complex object type query :string"
I'm getting my query output in modal and handler but when it comes to view it is saying
can't cast complex object type query :string
in my coldbox

SREERAM
- 1
- 4
0
votes
1 answer
Error on renaming application when trying to share session between ColdFusion / ColdBox applications
I wish to share session data between some apps that reside on different subdomains (same server). In the past I would make sure each application had the same name in their respective application.cfc. That's been working fine for a while -- people…

daltec
- 447
- 1
- 5
- 15
0
votes
0 answers
ColdBox's ApplicationHelper.cfm filepath being found in PCI scan
I have an application that is undergoing a PCI scan. The scan is tripping up on a ColdBox route that has values appended afterwards that don't make sense. As an example, it is…

Chester
- 1,081
- 9
- 18
0
votes
1 answer
ColdFusion 2016 / Coldbox 4.3 - Running multiple applications on a single server
We are using ColdBox 4.3 and are deploying multiple ColdBox applications.
Each application is developed separately with its own Coldbox.cfc config file and its own handlers, models, and views. While they do share some common features, they can not…

Stephen F Roberts
- 259
- 1
- 8
0
votes
2 answers
Data does not make it into Coldbox handler from AJAX call
I have a page that is making an $.ajax call to a handler method in Coldbox. I've done this many times, but in this current project, more than once, if I dump the rc scope at the start of the handler, there's nothing in it other than my usual stuff…

RobG
- 576
- 2
- 9
- 21
0
votes
1 answer
Convert mariaDB query to ColdBox Criteria
i'm having a problem in converting a mariaDB query to coldbox criteriaBuilder. i not quite understand how to join multi table using criteriaBuilder in coldbox. this is my mariaDB query :
select TerminalInst.* from TerminalInst
inner join Terminal…

Sudarsono Sung
- 83
- 1
- 11
0
votes
1 answer
How to set entity as unique Key in ColdBox
I'm creating a model entity in ColdBox.
component persistent="true" {
property name="id" type="int" fieldType="id" generator="increment";
property name="stamptime" type="timestamp";
property name="type" type="string" length="1"…

Sudarsono Sung
- 83
- 1
- 11
0
votes
1 answer
ColdBox module interface support?
Is there a way to create an interface for a module that any host application can be expected to implement?
We've got a couple apps that have a lot of code that is common that we'd like to refactor into modules, but sometimes the module may need to…

jinglesthula
- 4,446
- 4
- 45
- 79
0
votes
2 answers
Reference includes files in ColdBox module
I've created a module foo that has an includes directory, which in turn contains a js directory, which has a file in it named edit.js.
I've tried the following in a view of the module:
But I…

jinglesthula
- 4,446
- 4
- 45
- 79
0
votes
0 answers
ColdFusion TestBox Ant error
My goal is to run TestBox scripts on Jenkins. But using the Ant script from
https://testbox.ortusbooks.com/content/running_tests/ant_runner.html
as a template, I get this error
BUILD FAILED
…

SC_Adams
- 156
- 1
- 1
- 13
0
votes
1 answer
Submitting Coldbox RC scope on form input change via AJAX and returning string to display on page
I need to pass in form variables via AJAX every time a select box value is changed, and get a returned string from the AJAX call to display on the page. Here's the situation:
I built a form which is dynamically built by the user for a set of…

D PEN
- 1
- 2