The official community for ColdFusion.
Recently active
hello,Is it possible to download Adobe coldFusion as a zip file? Our corporate firewall will not allow for direct download of an executable MIME type.Thanks
I am trying to install Cold Fusion 5 on a Windows 7 platform in a XP Professional Virtual Machine. The software installed with no issues. However, I have run into a problem with configuring the software.It has been 8 years since I last installed the software (on a Winows 2000 Professional platform) as the part of a certificate program, which I completed successfully and with many kudos at the time.When I try to "browse a .cfm from my old class project ", in ColdFusion Studio, it says I need to do Server Development Mapping.I log into the CF Admiistrator and enter the logical name. But when I try to browse to retreive the physical location, I dont see the directory list, but instead the icon for "Not Found".Can this software be loaded in a Virtual Machine environment, and if so, what do I need to do to remedy my problem?
My server was recently hacked and I'm looking for malicious code the hacker may have left behind. I see a number of exe files in the CFIDE folder that were created during the period the server was exposed. Can you help me know which ones I should quarantine by giving me a list of the one that are supposed to be in that folder? I'm using ColdFusion 9. Thanks.
Functionality : * Create around 40 PDF's using CFPDFFORM tag (each document is 2 pages only) * Merge all the files using CFPDFProblem: * CFPDF merges the document but the first (or last) document repeated 40 times ! * Tried flattening and merge later, flattening removes all the data populated using CFPDFFORM( i dont want flatten the file first of all)Any help is appreciated
Error Executing Database Query. You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'OPTION SQL_SELECT_LIMIT=DEFAULT' at line 1 I keep getting this error everytime I try to log into my inventory database I set up. I cn not find it anywhere in order to view or change the syntax. Please help!
I am having a hard time getting my autosuggest to work. I have a cfinput where a person can type in a last name. I then want to return the full name and employee ID of the person and bind them to two different cfinputs. Here is my cfc:<cfcomponent output="false"> <cffunction name="getPerson" access="remote" returntype="array"> <cfargument name="search" type="any" required="false" default=""> <!--- Define variables ---> <cfset var data = ""> <cfset var result = ArrayNew(2)> <cfset var i=0> &n
We are trying to install two hotfixes (APSB12-26) and (APSB11-29) on the server. This server does not have Runtime Java and preferably we do not want to install it. When we attempt to install these hotfixes, it is prompting the below error and document suggest to install JRE / JVM.http://helpx.adobe.com/coldfusion/kb/coldfusion-mx-unable-run-java.htmlWe know that the JRE is available under ColdeFusion folder. But it is not installed as runtime for browser. I want to know if there is another way to deploy these fixes?ThanksAnant
I havent used this component in about 2 months however when I call any function from this component I recieve this error. "Branch target offset too large for short" Ive searched and turned up nothing. I tested a really simple component that just returns the argument sent to it even that threw this error. Im testing with CF7 on OS X using Jrun4. Ill include stack below, any help would be awesome . ------------------------stack------------------------------- Branch target offset too large for short The error occurred in /Applications/JRun4/servers/default/cfusion/BIGBLUE/v09/download/dlEngine.cfm: line 5 3 : <cfif isDefined('ind_#ii#')> 4 : <cfinvoke component="COM.xDownload" method="tester" returnvariable="fixal3Ret"> 5 : <cfinvokeargument name="test" value="1"/> 6 : </cfinvoke> 7 : <cfabort showerror="#fixal3Ret#"> Resources: * Check the ColdFusion documentation to verify that you are using the correct syntax. * Search the Knowledge Base to fin
Hi. I'm teaching myself ColdFushion. I'm creating a page to show a list of news articles. I want to show the first 200 characters of the text. I store my data (article content as text) in mySQL. Everyone works except that it's not displaying the first 200 characters of the text. It displays about 30 characters. I've been looking at my code for a long time and tried the "rereplace" method but it doesn't work. Can someone give me a hint on what's missing? Thanks a lot!<!DOCTYPE html><html> <head> <title>Assessment Project</title> <meta charset="UTF-8"> </head> <body> <!--- Page Title ---> <h3>Article Listings</h3> <!--- Page Content ---> <!---
Hi All,Did all of you have any experience to install Coldufison 10 on Intel Itanium Processors?Need advice from you all.Thanks
I am having problems getting the Search collection I created to display the PDF files. When I perform a search I am able to get the pdf file listing put when I select a PDF file to display it it does nothing. Please help, below is the Search Action page I did<head> <title>Search Results</title></head><body><cfsearch name= "newspaperarchive_results" collection= "newspaperarchive" criteria= "#Form.Criteria#"> ContextHighlightBegin="<b>" ContextHighlightEnd="</b>" ContextPassages="1" ContextBytes="500" maxrows= "100"> <h2>Search Results</h2><cfoutput>Your search returned #newspaperarchive_results.RecordCount# file(s).</cfoutput><cfoutput query="newspaperarchive_results"><p>File: <a href="#url#">#key#</a><br>Document Title (if any): #Title#<br>Summary
Hello. I'm a newbie to ColdFushion. I'm trying to create a page where user can view a list of small pictures. Once he clicks on a picture, its full image will show up in a pop up window. I'm not sure what's missing in my code, but when I click on the small picture, no window nor image will pop up. Can someone give me some suggestions on how to fix this? Thanks a lot!<!--- retrieve the full article as well as its images ---><CFQUERY NAME="myQuery1" Datasource="mydb" > SELECT articles.article_ID, articles.article_title, articles.article_author, articles.article_date, articles.article_content FROM articles INNER JOIN article_image_mapping ON articles.article_ID = article_image_mapping.aim_articleID WHERE articles.article_ID = #URL.ID#
Th error is webpage cannot be found, can someone point me in the right direction?
I have been workig with Coldfusion for a while now. Where I work there is a need for web pages to extract data from data sources. I have been successful at doing this. Typically I use a form that selects multiple criteria, which when submitted loads a target/action page that displays records that are filtered based on the SQL statement contained on that action page. What I do is to conditionally check if criteria is passed using cfif. And if a field parameter is indeed passed it becomes part of the cfquery. This works out well - especially for reporting.But now I am seeing more and more a need to accomplish the same process - but on a single cfm page. So the page I seek will have both the form (select) and the recordset results on the same page. In this exercise I will be caching results od a query and having several queries to further refine what I seek (QOQ). What I am seeking is the best practice to follow, I was thinking that us
Error received is: "Invalid byte 2 of 2-byte UTF-8 sequence". We have confirmed this problem exist with WSDL files that are encoded as UTF-8, delivered as UTF-8 and declared as UTF-8. These webservices run fine under CF9 environments. Is this an issue with the switch to tomcat?
Hi:I have Visual C++ 2008 express edition to compile my custom cfx tag. Here are my steps:1. new project -> Win32 -> Win32 Project, enter project name2. Application Type: DLL, Finish3. Project -> properties -> C/C++ -> General -> Additional Include Directories includes "C:\ColdFusion8\cfx\include"4. #include "cfx.h"4. Finish my codeMy problem is my code surely has the "void ProcessTagRequest(CCFXRequest* pRequest)" function, but after I register my cfx, my cfm keeps giving me an error message: "Native CFX library does not have a ProcessTagRequest entry point."I am guessing it's not a problem in my code, since I could compile my code no any error. I am guessing it's my visual c++ project setting problem, causing coldfusion unable to see my function. Any one has any clue?Thanks.
I would like to geographically locate the position of the customer who logging-in my web application: is it possible? My web application is Coldfusion 8 developed.
Hi all,I am attempting SMTP authentication in my script and the email provider (Office365) is using TLS. When I use the attribute useTLS="yes", CF throws a validation error. I am running MX 6.1 and assuming the useTLS attribute is not supported. Is there another way anyone can recommend sending TLS?I'm not sure if this is related, but when I take out useTLS to get the script to run, the email is immediately moved to CF's Undelivr folder. If Office365 was rejecting the email for lack of TLS, it wouldn't be moved to the Undelivr folder, right?Here's my script, FYI:<cfmail type="plain"to="user@domain.com"from="Webmaster<webmaster@domain.org>"subject="This is a test!"server="smtp.office365.com" port="587"username="myusername"password="mypassword">Test email on #Dateformat(Now(), 'mm/dd/yyyy')#</cfmail>Thank you!
I have SQL query that returns last name of a person and I need to extract the last part of any hyphenated or last names with a space in themIn cases where the person has one last name everything is OKLike Smith. That OK. . I am looking for just SmithThe problem I have is when I have hyphenated last names like Scott-ThomasIn that case I want to extract the last last name or Thomas.Or if I have a last name like Rodham Clinton. In that case I only want to extract the last last name Clinton.How do I do this?
We have been having a problem where the server occasionally running very slow or simply hanging. Performance is uneven sometimes it works fast, sometimes very slow.Environment: ------------ Windows server 2003 STD SP2 (X86) IIS 6 Any pointers/help are greatly appreciated!Thanks!
Hi. I am using CF 9.2.1. I started learning CF yesterday, and I am trying to figure out a way to add a special character (like "?", "!"," & ") to an array row if the first row element (say, element [1][1]) has a specific letter like " t" in the word it is holding. In this case the special character will be added at the end of the last row element (element [1][3]).Example: The take columns are: "Firstname", "Lastname", "Age". If Firstname contains an "s" or "S" (in any order) then add "!" at the end of the row so that :Sam, Rubins, 26 !Nick, Palo, 32Robert, Williams, 28Oscar, Ramirez, 23 !I tried using the ReReplace, Refind and the #findoneof functions. I could probably loop through the array and return a value and store, while storing the value in a separate variable and using an if/Boolean function to compare that value and so on.... But I am sure there's an easier and more efficient way. Thanks in advance.<!--- #1 I will create a three column query named CityInfo--->&
I am using Coldfusion Report Builder. If the value of a feild is zero, how can I hide it or show a blank. Keep in mind this field is a DollarFormat() field.
I am new to CF and I am trying to understand some CFSTOREDPROC code. My question is withing this code there is sometimes a CFIF statement to determine how the CFPROCPARAM is set, whereas with other lines this is not done. <CFPROCPARAM VALUE="#arguments.frmstruct.cutomerIdAutoValueContainer#" cfsqltype="CF_SQL_VARCHAR"vs<cfif isdefined('arguments.frmstruct.SALESPERSON') and len(arguments.frmstruct.SALESPERSON) gt 1><cfelse> <CFPROCPARAM VALUE="" cfsqltype="CF_SQL_VARCHAR"></cfif>Does this make sense to have the code like this and why? Couldn't we just have the CFPROCPARAM without the CFIF to test the value if GT 1? i.e. <CFPROCPARAM VALUE="#arguments.frmstruct.SALESPERSON#" cfsqltype="CF_SQL_VARCHAR"> <CFPROCPARAM VALUE="#arguments.frmstruct.SALESPERSON#" cfsqltype="CF_SQL_VARCHAR">
Hi,I am having problems setting up a datasource for a local sql express 2012 server. Its running as the default instance. Connections are working with ODBC and client told just not Coldfusion.When I try to set up a connection using the sql driver I get this error:Connection verification failed for data source: Leaf java.sql.SQLNonTransientConnectionException: [Macromedia][SQLServer JDBC Driver]Error establishing socket to host and port: 127.0.0.1:1433. Reason: Invalid argument: connect The root cause was that: java.sql.SQLNonTransientConnectionException: [Macromedia][SQLServer JDBC Driver]Error establishing socket to host and port: 127.0.0.1:1433. Reason: Invalid argument: connectWhen I try a Socket connection with an ODBC connection I setup in windows I get this error:Connection verification failed for data source: LeafDB java.sql.SQLException: [Macromedia][SequeLink JDBC Driver]Internal network error, connection closed. The root cause was that: java.sql.SQLException: [Macromedia][Seq
Helloon two CF8 Servers which we are running for several years I could see that recently we have two processes inside the Jrun4 folder cfusion82\cfusion.ear\cfusion.war\CFIDE\m32\m32.exe and cfusion82\cfusion.ear\cfusion.war\CFIDE\m64\m64.exe taking 100% of the CPU. Action appears randomly and occurs on two server without any user interaction. Killing those processes does not seem to have any effect on the functionalty of the system.Also in the coldfusion reactor I am not able to see any request which would be connected to this behaviour.Does anyone know what are these processes? Strange thing is that the files have been created just recently and on each system/instances in different days.Thank you very much for answer!
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.