Re: cgi.remote_user set for / but not for /index.cfm
Thanks for the suggestion. I checked and index.cfm is listed as the top default document. Some additional info:I created a page, test.cfm, that also dumps the CGI variables. It also displays [empty...
View ArticleCFGRID does not show data (CF9.0)
Under development server, CFGRID show data , all is fine , correct. (CF9.0 version dev)Under production server , CFGRID does not show data, only a grey line (like a HR). How to debug this ? Thanks,
View Articleinvalid token
I got following error message The CFML compiler was processing: A cfprocparam tag beginning on line 275, column 7. A cfprocparam tag beginning on line 275, column 7. when I have followignn code...
View ArticleVariable REPORTQUERY is undefined.
<cfstoredproc datasource="MyDSN" procedure = "MySP"> <cfprocparam value = "1" CFSQLTYPE = "cf_sql_numeric"> </cfstoredproc> for my report query using a stored procedure need...
View Articlepass a form parameter to the report stored procedure
<CFSET myVar= "1"><cfquery name = "mydata" datasource = "myDSN"> execute MySP <cfqueryparam value = "#myVar#" CFSQLTYPE = "cf_sql_integer"> </cfquery>...
View ArticleRe: Pass variable in Dateadd() function
gokul1242 wrote: i tried that.... No, you didn't. What you tried is equivalent to: <cfset txt_expiration = ""><cfset yearAhead = DateAdd("d", txt_expiration, now())> You will find that the...
View ArticleCFFORM
I see on the controls tools bar has FORM and CFFORM.I would like to know what are the difference between FORM and CFFORM when I drap drop the control on the form. How I can access the controls value on...
View ArticleI am getting a CF10 Blue Screen of Death on an adobe null pointer?
I am getting a CF10 Blue Screen of Death on an adobe null pointer? I have confirmed an drecreated all my fonts. I cannot find anything wqrong except CF10 doesnt like it for some reason? Below is the...
View ArticleRe: passing data using cffileupload
I read the entire post. I am new to coldfusion. I am using coldfusion-10. I am facing a similar issue. I am trying to upload multiple image files using cffileupload. I am able to upload files as...
View ArticleCffileUpload + cffile.clientDirectory
I am new to coldfusion. I am using coldfusion-10. I am trying to upload multiple image files using cffileupload. I am able to upload files as expected. But I would like to get the metadata before...
View ArticleRe: Pass variable in Dateadd() function
Yes <cfset txt_expiration = 180><cfset yearAhead = DateAdd("d", txt_expiration, now())> This works. But in my case i am calling txt_expiration value from a sql query through js script as...
View ArticleRe: Yet another CFIDE vulnerability!
Hi Plarts , FYI , HotFix is common for both 64-bit and 32-bit Servers . We release Security HotFix to fix any critical security Issue in the product . Please make sure you are updated to latest...
View ArticleRe: Pass variable in Dateadd() function
Javascript runs on the browser, ColdFusion on the server. Hence, Javascript variables are not available to ColdFusion. You are apparently aware of one way of passing the variable to ColdFusion,...
View ArticleRe: Pass variable in Dateadd() function
the scenario is i have a drop down.based on selecting the drop down value it calls the above onchange js function to display the correspondingtxt_expiration value .but txt_expiration values are in...
View ArticleRe: cfcollection action='create' permission denied "read" (what???)
The account that CF runs under has full control of the folders, and in the sandbox security the settings are for Read, Write, Execute for the root collections folder and all sub folders and files. ^_^
View ArticleRe: CffileUpload + cffile.clientDirectory
There are 2 things: the 500 error and the display of 'try'. I suspect the error is caused by the attribute onComplete="previewfile". The Javascript it points to may have an error. Remove the attribute,...
View Articlecfcookie
I would like to use CFCOOKIE to store information from control value and read from other page.Is is possible to do it using CFCOOKIE or I have to use JavaScripts? Your information is great appreciated,...
View Article