Re: Can anyone explain what is happening in this example?
The only thing I can think is that the file itself is saved with UTF-16 encoding, and the CF compiler is baulking at that. That said, I emulated this on my PC and my CF install (same as Duncan's, we...
View ArticleCVE-2013-0632, Hotfix APSB13-03 for Coldfusion 8 ???
Hello; I have a question regarding the Coldfusion Security Bulletin APSB13-03 for ColdFusion 10, 9.0.2, 9.0.1 and 9.0. Is this hotfix also availablefor Coldfusion 8.01? We use the Coldfusion 8.01...
View ArticleRe: Mail being sent by CFMAIL blocked by some ISPs
It's most likely due to the sending domain being blacklisted by some spamlist authority. If this is the case, it's usually returned with a message explaining why. Check to see if there are any return...
View ArticleGet text of documents stored as BLOB
Hello, everyone. I'm working on a Solr collection of documents that are stored as BLOB in an Oracle database. Documents can be .pdf, .txt, .doc(x), or .xls(x). Is there a way of getting the text of...
View ArticleRe: Error in Scheduled Task in CF 10 Standard Edi.
Hi Priyank. We ran the utility with the "All" option, but the error is still there when I create a recurring schedule. Also, the server version has not changed. It is same as the one I provided above....
View Articledynamic check boxes validation
Hi all, I have the query is displayed the check boxes. I'd to validate and make sure at least one check box needs to be checked. The code i have below is not working. Can you please help. Thanks KT...
View ArticleRe: dynamic check boxes validation
ID elements on a page have to be unique. As you're looping over a query, I'm guessing you're ending up with multiple checkboxes, all of them with ID=category. So document.getElementById("category")...
View ArticleRe: dynamic check boxes validation
Avoid using reserved words for id/name ("form"). ^_^
View ArticleRe: dynamic check boxes validation
ok, i got the check box working, but it not checking for other fields on the page. Can you pls advice this? <script type="text/javascript"> function validateForm(oForm) { //checkboxes...
View ArticleRe: dynamic check boxes validation
The problem is you are returning true/false before you try to validate the comments field. Assuming you don't want to do alerts for both the checkbox and the comments field at the same time, then...
View ArticleRe: dynamic check boxes validation
Thanks for your repond. The validate seems working with displayed message, but even i checked the checkbox, enter the comments, hit submit button,but it didn't go any where. submit button seems...
View ArticleRe: dynamic check boxes validation
the very last statement in your validateForm function should be "return true;" Also you have a mistake in the code. You've got: if (document.getElementById ("comments").value.length == 0) alert...
View ArticleColdFusion.Ajax.submitForm no longer works in IE10? any solutions
I have the following code, it works fine in IE8 & IE9 but stopped working in IE10, does anyone know why? the alert is displayed and it re-loads the page...it just doens't call the Ajax call..any...
View ArticleRe: Get text of documents stored as BLOB
Per advice received from Raymond Camden, I'm getting the BLOB, saving the file on the server filesystem, reading it, and storing the data. However, this isn't working for DOC(x) and PPT(x) files. Any...
View ArticleRe: dynamic check boxes validation
thank you very much. i dont know much about the javascript, but unfortunately my form needs javascript validation. i have another quuestion. i have the form with several fields, but i only need to...
View ArticleProblems installing CF 10 with Apache 2.2.24 (or 2.4) on RHEL 6.4
Built Apache using openssl 1.0.1e (updated LD_LIBRARY_PATH to reflect the correct openssl libs) and pcre. Configure for build was:configure --enable-ssl=shared --with-ssl=/usr/local/ssl --enable-so...
View ArticleRe: CFContent open file with # in filename
In the URL: #URLEncodedFormat(qryGetFileNames.ServerFile)# did the trick!
View ArticleRe: Problems installing CF 10 with Apache 2.2.24 (or 2.4) on RHEL 6.4
Hi, RHEL 6.4 is not the supported version of RHEL, Supported version are 5.6 and 6.1. We published an article you can try if that helps....
View ArticleRe: Operating System Support for Cold Fusion 10
Hi, Yes, as per the support matrix it is not the supported version of RHEL with ColdFusion 10. The problem that you will come across when you will configure the connector with RHEL 6.3 and CF 10 with...
View ArticleRe: ColdFusion.Ajax.submitForm no longer works in IE10? any solutions
I have seen a similar and possibly related issue with IE10. I don't use ColdFusion's ajax routines and instead use jquery but I have found that using ajax with a POST fails on some IE10 users whereas...
View Article