Re: Want to update ColdFusion 8.0.0 to 8.0.1
Could you send me an installer copy for CF8 64-bit to gnemgnis@gmail.com? Thanks,Meng Sing
View ArticleRe: Isolating / finding bug in CF and cflayout
I'm also no (good) JS programmer. I use it when I have to. For mundane things. That's not really an adequate situation to be in if you're a web developer these days. Especially if it means you need...
View ArticleRe: File size cffile upload
Hi,This may help: http://misterdai.yougeezer.co.uk/2010/02/26/upload-size-before-cffile- upload/Best,
View ArticleRe: cfdirectory create diretory
Hi,Check the folder:<cfif Not DirectoryExists(newFolder)> <cfdirectory action = "create" directory="#newFolder#" /></cfif>
View ArticleRe: get attachment directory
I usually manage this in my application.cfc in onApplicationStart function, example:<cfscript> var varAppDrive = listFirst(cgi.path_translated, ":"); application.upload_folder = varAppDrive...
View ArticlePDFDocException after optimization in CF10
I have a page that first generates a PDF using cfdocument: <cfdocument name="doc1" format="PDF" marginbottom="1" > After this, I am merging this with other PDF files: <cfpdf action="merge"...
View ArticleColdfusion 9 syslog setup
What exactly does this setting do in the CF admin configuration under the "Logging Settings" section? "Use operating system logging facilities "
View ArticleRe: Coldfusion 9 CFTransaction/CFQuery Timeouts
Hey kavig99, So after I ran the server monitor and analyzed my script, I realized how much SQL was actually executing. I had over 100K sql statements executing everytime I ran the import. This is why...
View ArticleRe: Coldfusion 9 CFTransaction/CFQuery Timeouts
Good to hear from you Bob! Merging my sql statements together is exactly what I have been doing the last 24 hours, unfortunately without luck. For inserts, I have used this syntax: INSERT INTO table...
View ArticleRe: Coldfusion 9 CFTransaction/CFQuery Timeouts
One thing that helped me to debug this issue was writing all the SQL out to a log file. I tried to run all the SQL in SQL Server Management Studio and it was super slow. That indicated to me that it...
View ArticleRe: ColdFusion 10, IIS 7.5, and custom 404 page
I've got the same issue. Just curious, are you doing any URL redirection? For me, I have IIRF running and catching all 404s so I can do custom "search engine friendly" URLs. The issue with...
View ArticleRe: ColdFusion 10, IIS 7.5, and custom 404 page
I have not found a solution, but Miguel-F pointed me to http://stackoverflow.com/questions/18694932/coldfusion-10-iis-non-exis tant-urls-that-are-cfm-files-retrieving-original-u which has a possible...
View Articleauto sugesstion
Hi there, I need to pass the companyId into the cfc but i keep gettting an error, does any know?- thanks You cannot specify more arguments to a CFC function than it declares. Error parsing bind...
View ArticleRe: get attachment directory
iccsi, I'd strongly recommend not allowing files to be uploaded anywhere inside of your web root (i.e.: inside "\inetpub\wwwroot"). This is a major security hole and attack vector. It would allow...
View ArticleRe: get attachment directory
Thanks for the information,I use accept to only allow pdf, doc, xls files to upload.Can I upload to any physic diretory what I specify using ColdFusion for C:\MyTempDiretory?If so, user still be able...
View ArticleRe: get attachment directory
Depending on the version of CF you are using, the "allow" filtering may not be adequate. It is easy to spoof this by merely changing the extension of a file to appear to be a pdf, doc, xls file. CF10...
View ArticleRe: get attachment directory
Thanks a million for the information and help, regards, iccsi,
View ArticleRe: Invaild CFML construct
Probably because the "new" keyword and script-based queries weren't introduced until ColdFusion 9, so they would be unavailable in ColdFusion 8. -Carl V.
View Article