4
votes
0answers
39 views

“Range:” http header causes hang in ColdFusion app

Whenever I add the "range" header in a HTTP request for a .cfm or .cfc file on my server, I get a timeout. The server simply does not respond. To debug, I created a blank file called ...
-1
votes
0answers
56 views

JQuery-Validate stopped working

I recently moved from Windows/MS SQL/Adobe ColdFusion to Centos/MySQL/Railo. When I did, my jQuery-Validate scripts stopped working. There are no error messages, the validation simply does not run. ...
0
votes
2answers
52 views

ColdFusion - Collection loop in cfscript

I have some tag based syntax that works in Railo. <cfloop collection="#myArray#" item="j" index="i"></cfloop> The above allows me to access the index 'i' and the item itself, 'j'. I ...
0
votes
0answers
25 views

CFWheels - How to highight which posts a user has commented on?

I have a basic query to get all 'posts' in my database table 'posts'. Users who are logged in can comment on these posts. However, I want to be able to highlight (when viewing all posts) which ones ...
3
votes
1answer
40 views

How do I append to a struct set in CFPROPERTY?

I'm using <cfproperty /> to make use of implicit getters and setters in ColdFusion (Railo). However, for more complex values like structs and arrays, how can I append to these? <cfproperty ...
1
vote
2answers
55 views

jSoup - Is it possible to match elements with a minimum attr() length?

I can match elements in jSoup very easily, but then, after the fact, I need to check these values to see if they are at least longer than 1 character. I was wondering if there was a way to match ...
2
votes
1answer
28 views

Unexpected result in jSoup select() with ColdFusion

For some reason, I am always getting an odd result from my select() calls to the jSoup object. Here is my code (I am trying to get simple title and meta tag values and insert them into my object ...
1
vote
2answers
40 views

How do I use WordPress alongside CFWheels?

Anyone with a bit of experience with CFWheels will know how awesome it is, but also how fiddly it is with its placement in the web root / sub-folders etc. I have a CFWheels website, that I would now ...
2
votes
1answer
57 views

NULL POINTER error when using ObjectLoad(ObjectSave())

Update this has been filed as a bug in ColdFusion, https://bugbase.adobe.com/index.cfm?event=bug&id=3546237 I've been having a problem with CF9 and NULL POINTER errors that do not appear to be ...
1
vote
0answers
45 views

Stack size too large error when compiling site from the Web Administrator

I am attempting to compile our site from the Railo Web Administrator on a new build server we have just configured. It has the latest installation of Railo 3 that was installed using the Helicon Zoo ...
1
vote
1answer
78 views

Extend ORM persistent CFCs in parent/sub application

I'm working on a parent/sub application structure in CFML (Railo) and I'm struggling with extending my persistent (ORM) CFCs. What I'd like is for my persistent CFCs to live in the parent ...
2
votes
3answers
53 views

ColdFusion (Railo) QoQ - Nulls Last

My understanding is that nulls last is not possible with QoQ. How do I trick coldfusion into sorting null values last whether i'm sorting the row ascending or descending? I've tried using case in the ...
3
votes
2answers
87 views

ColdFusion - Enabling ORM stops onApplicationStart from running

Can anyone explain this behaviour to me? I have set up a bunch of application scoped settings in onApplicationStart, and some of them are referred to in onSessionStart. However, when I enable ORM, it ...
8
votes
1answer
127 views

Extending ColdFusion with application wide UDFs

I've been exploring different methods of structuring my ColdFusion applications and I'm looking for some opinions on the best way to provide application wide UDFs. For each of my apps, I generally ...
0
votes
0answers
73 views

FireBase connect to server (Not NodeJS)

So I've seen this answer Using NodeJs with Firebase - Security that talks about syncing NodeJS with the Firebase data structure. I don't use NodeJS (being a Railo/Coldfusion developer) and was ...
1
vote
2answers
92 views

How to detect if a script is running via a scheduled task

Is there a way to detect if a script is runned by a scheduled task. I have a script which gives throws a ClientAbortException because I am using cfflush. I need to detect if the script is running ...
4
votes
2answers
104 views

CFWheels - Should I be locally scoping my Wheels actions?

Say I have a very simple controller like so: <cfcomponent extends="Controller"> <cffunction name="hello"> <cfset time = Now()> </cffunction> ...
2
votes
2answers
154 views

How to catch “coldfusion.runtime.MissingArgumentException” equivilant in Railo?

The following is done comparing Coldfusion 9.0.1 against Railo 4.0.2.002 I have the following (truncated) as the init for a cfc component { public myComponent function init( required ...
1
vote
3answers
83 views

ColdFusion - How to get only the URL's in this block of text?

How can I extract only the URL's from the given block of text? background(http://w1.sndcdn.com/f15ikDS9X_m.png) background-image(http://w1.sndcdn.com/5ikDIlS9X_m.png) ...
0
votes
1answer
140 views

Can you create a Solr collection in Railo with script?

ColdFusion 10 now supports this syntax for creating a Solr collection: cfcollection supports script style syntax: new collection().CREATE(collection="<collection_name>", engine="solr", ...
0
votes
1answer
108 views

How to reference global function library in CFML?

Dependency injection allows you to avoid referencing objects and scopes that are external to the object directly. You instead reference the injected dependency. I want to know the best practice in ...
1
vote
3answers
244 views

Looping over update query using script

Trying to figure out how to do this loop with script. <cfquery> <cfloop from="1" to="#arrayLen(myData)#" index="i"> <!--- update query with different paramaters ---> </cfloop> ...
2
votes
3answers
258 views

How do you capture errors for an entire Application in ColdFusion?

I am currently trying to capture all errors in my application by including the following code in Application.cfc: <cffunction name="onError"> <!--- The onError method gets two arguments: ...
0
votes
1answer
48 views

How to get my blog to properly list the OG information on FaceBook

I wonder if anyone could help me out here. I've been debugging and debugging. I tried putting aborts on the page in several places within the framework, both on the controller and view levels. But I ...
4
votes
1answer
71 views

What's the best way to set and store your Application and THIS parameters in ColdFusion?

I've got parameters I'm currently setting in ApplicationSettings.cfm and ThisSettings.cfm that I'm including into the Application.cfc. I want to keep these settings separate from the source code, ...
3
votes
2answers
167 views

column not found in query, but it is in column list

I'm trying to parse a CSV using the CFCSV custom tag. Here's my CFML code: <cfset data = fileRead( "inputtest.csv", "utf-8" ) /> <cfcsv action="parse" data="#data#" variable="csv" ...
1
vote
1answer
131 views

CFWheels - Multi-step form?

I am wondering how one would setup a multi-step form in CFWheels. Clearly I would need to store form data in the session etc as I go, but I would like to know the best approach from a wheels ...
1
vote
2answers
91 views

Can I debug a Railo CFML app with JDebugTool?

Can anyone attest to debugging a CFML application on Railo with JDebugTool? I'm stuck with CF8 and Eclipse plugin for dev setup. So all debug gets done with dumps and aborts and there are times when I ...
0
votes
3answers
108 views

How to duplicate a file?

How can I duplicate a file on my server? I can read it with <cffile action="read"> but I want to duplicate it under a new name. I found <cffile action="copy"> but I can only duplicate it ...
4
votes
2answers
343 views

Components mapping in Railo

I would like to put all of my CFC into /components folder and be able to call them from different places in application eg. from /forums/index.cfm. How would I go about setting the mappings?
0
votes
1answer
458 views

Why is SocialAuth saying “facebook is not a provider or valid OpenId URL”?

Using SocialAuth: v2.3 via Railo CFML Engine, I am getting the following exception thrown: Railo 3.3.4.003 Error (org.brickred.socialauth.exception.SocialAuthException) Message facebook is not a ...
1
vote
2answers
124 views

ColdFusion - Reading in lots of images

What is the most efficient way of reading in lots of images in CF / Railo and checking their width and height? In my app, I need to typically read in about 20 images + and at the moment this takes up ...
0
votes
1answer
98 views

ImageScaleToFit - how to implement?

I'm new to Railo, moving away from ColdFusion 8 where my site used to used to use cfx_imagecr3. I believe Railo has ImageScaleToFit but I'm not sure if I'm using it correctly or if I need to add some ...
0
votes
1answer
184 views

ColdFusion - Regex to match SRC with single quotes

I have a simple regex line to extract the src="" value from an image tag: <cfset variables.attrSrc = REMatch("(?i)src\s*=\s*""[^""]+", variables.myImageTag) /> <!--- ...
1
vote
1answer
257 views

adding index.cfm to url seems to ignore .htaccess

I'm trying to disallow access to certain folders in my webApp, but there seems to be some exception to the use of index.cfm somewhere... for this example I'm using just the folllowing mod_rewrite ...
0
votes
0answers
55 views

Calculated property is being completely ignored

I post a similar question recently, but got no responses, so hopefully this one will be more straightforward and easier to understand. In CFWheels, I have a "link" model with a basic calculated ...
0
votes
1answer
61 views

CFWheels - Why is allErrors() returning an empty array?

Yep... (me...again!) I am trying to troubleshoot some errors and when I go to dump allErrors() in my controller, it is simply an empty array, when I know for a fact it shouldn't be. link.cfc (model) ...
2
votes
3answers
192 views

CFWheels - Calculated property generates column error in query

Ok, so this is really confusing me now, because I had this working a while back and something has changed which has caused my calculated properties to not work. I have a "page" controller that does a ...
4
votes
1answer
215 views

ColdFusion - How to limit data retrieved via CFHTTP?

I am using cfhttp to get documents and parse the content like so: <cfhttp method="GET" url="#url.strURL#" resolveurl="true" useragent="#CGI.http_user_agent#" ...
5
votes
3answers
187 views

Multi-CFML engine test environment

Does anyone have a good way to set up multiple CFML engines, and versions of them, together in a suitable environment for cross testing a CFML based application. Ideally, I'd like this to be Ubuntu ...
0
votes
2answers
239 views

Using CFHTTP with HTTPS domain in Railo

I keep getting Connection Failed when trying to request data from a page that is on an https:// domain. I did install the ssl cert using the built-in section of the railo admin at ...
1
vote
1answer
43 views

CFWheels - DeObfuscate ID on query paging?

I am obfuscating URL's in my app (which is great), but I'd like to disable this for pagination URL's because I'd like the user to be able to enter whatever number they like. Settings.cfm: <cfset ...
1
vote
2answers
87 views

CFWheels - How do I increment a number in a database column?

Just wondering, with CFWheels ORM, how I go about incrementing a number in a column? In straight up SQL I would do something like: UPDATE table SET field = field + 1 WHERE ... I'd like to avoid ...
3
votes
1answer
441 views

Railo PDF generation issues

I am relatively new on Railo. Trying to set up an application on “Railo” I had encountered a problem with PDF generation. Notice I run the app on Adobe CFML Server with no problem. The problem: ...
0
votes
2answers
603 views

CFWheels - Error inserting record with save() method

I get the following error on Railo with CFWheels when using save(): Cannot execute statement: impossible to write to binary log since BINLOG_FORMAT = STATEMENT and at least one table uses a ...
0
votes
2answers
57 views

CFWheels - Plugins get deleted for no apparent reason

I had issues with plugins earlier, but it turned out to be a glitch with my host 'Hostek'. Okay I thought, I'll setup a local Railo / Tomcat environment and work locally. All works well...except ...
0
votes
1answer
90 views

update() and save() methods result in “no matching method/function” in railo

I'm trying to run a very quick update query to record that a user's email address is confirmed (setting the confirmed [bit] column in my users table to 1 after they click a link sent via email). ...
0
votes
0answers
86 views

CFWheels - Strange fatal error when installing plugin

I have never used plugins with CFWheels before, but I decided I'd use one that handles file uploads: https://github.com/liferealized/cfwheels-attachments When I upload this and reload my app, I get ...
1
vote
3answers
261 views

Railo, remove some double quotes from SerializeJSON result

Let's say I have: <cfscript> arrButtons = [ { "name" = "Add", "bclass" = "add", "onpress" = "addItem" }, { "name" = "Edit", "bclass" = ...
0
votes
2answers
252 views

Coldfusion ajax html submit

I am using railo and attempting to submit a tinymce text area via ajax. My problem is upon submission it seems that the html is stripped and the sql isn't actually updated. here is my code: ...

1 2 3