Query outputting all rows, I just want one.
On a form, when submited contains a few variables in hidden form controls. There is a loop in the form that outputs <li> items from a database, and a button with each list item, you click the...
View ArticleRe: Query outputting all rows, I just want one.
You have a <button> element that, when clicked, changes your form's 'action' attribute to 'delaction.cfm', but nothing more. This in no way flags the item as being intended for deletion as you...
View ArticleRe: Coldfusion 9.01 no longer recognizes virtual directories
Sean, Thanks for your reply - in regards to the "FileExists()" - I had set that up as a quick test and received the same error (essentially) as my primary code that is generating the eror. Below is the...
View ArticleRe: How do you get https (ssl) to work with CF10 on Windows server 2012?
ROFL one of the devlopers had put this code into the the root directory index page <cfif CGI.HTTPS EQ 'ON'><cflocation url="http://#CGI.SERVER_NAME#/index.cfm?1" /></cfif> No wonder...
View ArticleRe: Send data complext to Net Webservice
Any hint of this kind of object to send a NET webservice?
View ArticleHow Can I get CF CAL to advance the month in IE9
I am at my wits end. I have built a portal around the CF Calendar only to discover that in IE 9 the CF_Cal will not advance the months. Below is the tag that shows a popup calendar to select the date....
View ArticleRe: How Can I get CF CAL to advance the month in IE9
Rick, Have you tried loading the page using "Compatibility Mode"? If so, does the control work properly then? Keep in mind that the ColdFusion UI tags are based on 3rd party JavaScript libraries (most...
View ArticleRe: Send data complext to Net Webservice
With the understanding that array means an associative array in this case, then the variable param.emissionRequest.agente is a struct of a struct of a struct. That is, an array of an array of an array....
View ArticleRe: How Can I get CF CAL to advance the month in IE9
rickclark54 wrote: <cfif parameterexists(attributes.target) EQ 0><cfthrow message="NoTarget"><cfelseif parameterexists(attributes.formname) EQ 0><cfthrow...
View ArticleRe: Send data complext to Net Webservice
Thanks so much BkBK for your support. I found the solution in another discussion where you participated too. I have to send an Struct - Array - Struct. This is the solution: <cfscript>...
View ArticleRe: Cfstat Coldfusion 10 isn't working properly
Have the exact same problem.So apparently Adobe won't fix CFSTAT?
View ArticleRe: How Can I get CF CAL to advance the month in IE9
Thanks gentleman for your help.I decided to look for a newer javascript cal and it appears to be working fine.
View ArticleThe SHA-256 algorithm is not supported by the Security Provider you have chosen.
Hi, when I try to open the coldfusion administrator (CFIDE/administrator/index.cfm) the login is showin ok, I enter the password, and it redirects to the CFIDE/administrator/enter.cfm with this...
View ArticleIs it just me or are this.mappings acting funny?
Let me preface this: The following code is in the pseudo-constructor of my application.cfc (outside all functions) and this is the FIRST run of the application (so the application has not yet...
View ArticleRe: Is it just me or are this.mappings acting funny?
I think I've seen others express problems with trying to use a mapping elsewhere within the pseudo-constructor, so you might want to try avoiding that. I'm guessing this is related to a previous thread...
View ArticleRe: Is it just me or are this.mappings acting funny?
*** UPDATE *** Well, one of those funny things happened. I came to realize that my understanding of expandPath() is wrong. After having used it in a manner that was not as the function intended (but...
View ArticleRe: Is it just me or are this.mappings acting funny?
@Carl- I guess in the desire to build an automated application (cause let's be honest, how cool is it when you have a config file that controls how the application inits, am I right?), it seems you are...
View ArticleRe: Is it just me or are this.mappings acting funny?
<cfdump var="#fileExists( expandPath( '/path/to/models/utils/Config.cfc' ) )#" /> <!--- This dumps YES. ---> <cfset this.mappings[ '/model' ] = expandPath( '/path/to/models/' ) />...
View ArticleRe: Is it just me or are this.mappings acting funny?
I could be wrong, but I don't think fileExists() works with mappings. It'll work with relative paths, or with paths stored in variables, but not mappings. AFAIK, use of mappings is limited to object...
View ArticleRe: Is it just me or are this.mappings acting funny?
I applaud Sean and his "Convention over Configuration" approach on FW/1. And I know that FW/1 has been touted as a very simple and straight forward Framework. There was a time a while back that I...
View Article