Re: cfcompile
Hello Again,I did find some well-compiled documents where the code ends up looking like this:* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *...
View ArticleColdfusion not outputting the entire page, cuts off output
http://leaguemanager.playerspace.com/json.cfm?json_type=league_roster& league=73&requesttimeout=99999&return_script=%2Fmanager_pro.cfm%2Fleag...
View ArticleRe: cfcompile
I copied your code literally to a CFM file in a drectory on my server. With one exception: I commented out the line <cfinclude template="includes/_footer.cfm">. I then compiled it exactly as you...
View ArticleRe: cfcompile
Incidentally, wouldn't <a href="##content">, thismonth and <a href="##"> be better than <a href="#content">, "#thismonth#" and <a href="#">, respectively? Though these may have...
View ArticleRe: when will ColdFusion 10 (or higher) support apache 2.4?
Thanks Jonathan, I've succesfully downgraded to Apache 2.2 on Ubuntu 13.10, but this is even better. If anyone is interested here is how to downgrade on Ubuntu 13.10:I've had the same issue. I need...
View ArticleRe: when will ColdFusion 10 (or higher) support apache 2.4?
2.4 is not supported now. News Live http://newslivein.com/
View ArticleRe: binary data in a form field gets changed
@BKBK:Thanks a lot for your support.This is an important project for us and even more so for our customer. The project is already delayed because of this issue. It sheds a bad light on us and...
View ArticleCode being added to my web pages
On two occasions, someone has managed to insert what appears to be malware code into one of my includes. I won't post the actual code, but it consists of a CFHTTP tag that references an IP address,...
View ArticleRe: Code being added to my web pages
Hello Orogeny1, Please make sure that you have applied the lockdown guide and server is fully patched. If still there is a security concern, then please send an email to psirt@adobe.com Regards,Anit Kumar
View ArticleRe: Code being added to my web pages
Thanks, I'm checking with the hosting service now. I'll let you know what they say.
View ArticleRe: When will Coldfusion 10 be updated with a newer version of Tomcat, to...
Ok. I had the conference call and here is what I found out. To the immediate question, CF10 will have an updated Tomcat mid to late this year. They (Adobe people) had some configuration questions about...
View ArticleColdFusion 10 / Splendor Security Lockdown Guide for Windows 2012
ColdFusion 10 Security Lockdown Guide is currently written for Windows 2008. Are there plans to update the document for Windows 2012?Will the new release of ColdFusion Splendor have a Security...
View ArticleRe: When will Coldfusion 10 be updated with a newer version of Tomcat, to...
Yes, Steve, if your site is running on the built-in server (something that Adobe only suggests for development, and never in production), then Tomcat would be directly accessible. If CF is running on...
View ArticleRe: Code being added to my web pages
This sounds like you've been the victim of a sql injection attack, or some other exploit. Make sure that you server is fully patched, that you are running your server in accordance with the Lockdown...
View ArticleRe: when will ColdFusion 10 (or higher) support apache 2.4?
I can run CF 10 on Apache 2.4, but only the 32-bit version of Apache. ColdFusion uses a custom connector (that mod_jk.so), and there isn't one for the 64-bit version of the server.
View ArticleRe: Code being added to my web pages
Yeah. Discovereed that we hadn't done the lockdown guide and we're in the process of doing that right now, Hopefully this will solve the problem.
View ArticleRe: when will ColdFusion 10 (or higher) support apache 2.4?
That is interesting if they support it on 32-bit but not 64-bit... If you follow the steps above, you can compile the connector on a 64-bit box. That is how I did it, and it has been running just fine...
View Articlebreak line
<cfset mystring ="Jonh, Doe"><cfset TheText = replace(mystring, ',', '<br>' , "ALL")><cfdump var="#TheText#"> why the results shows Jonh<br>Doe instead of JohnDo Can...
View ArticleRe: break line
Because you're dumping the object rather than outputting it. Try <cfoutput>#TheText#</cfoutput> Here's the technical. Even though 'John<br>Doe' looks like HTML to you, it is nothing...
View ArticleRe: CFContent and Internet Explorer 8
I tried this and it didn't work. I am using IE 9, however. Probably a different <cfheader tag needed.
View Article