The official community for ColdFusion.
Recently active
I am trying to set up coldfusion to handle payPal IPN but I cant find any tutorials that explain how to get it to work, anything I find is out of date or I just cant get it to work. I've tried using the code on paypal developer site here:https://cms.paypal.com/cms_content/CA/en_US/files/developer/IPN_COLDFUSION.txtand I have enabled IPN on my paypal account but I'm not sure I've set it up correctly. Is there a way to check if paypal is even sending data back to my site?Been having a look and it seems the ipn I set up isnt even running. when I test the payment (i set up a basic ipn.cfm file that writes to a text file) it still doesnt work. Could there be a reason why paypal isnt running the ipn? If I go to the ipn.cfm file in a browser then the test txt file is created.Cheers!
hii'm trying to use multiple expressions in a cfif ex:<cfif (Evaluate(test.itemcode) is not "HDMI") OR (Evaluate(itemcode) is not "DVI")>this should result in returning everything that 's not with hdmi or dvi , right? it doesn't , it returns everything including thembut when I do:<cfif (Evaluate(test.itemcode) is not "HDMI")>it excludes the hdmi from the list...what am I doing wrong?
I have installed the CF 10 on my windows server 2008 R2. Now problem is that when I open site page it's take almost 30 second to load the page. My system is good and I think it's not an issue of my system performance. I think it's an issue of ColdFusion 10.
I am trying to use a jdbc/mysql connector. The issue is that the connector is compiled in a later version that what is installed in Coldfusion MX 6.1. I have downloaded and installed the Java 6 SE JDK and installed it. Here is my JVM config file.## VM configuration## Where to find JVM, if {java.home}/jre exists then that JVM is used# if not then it must be the path to the JRE itself#java.home=C:/Program Files (x86)/Java/jdk1.6.0_45/jre#java.home=C:\\Program Files (x86)\\Java\\jdk1.6.0_45\\jre#java.home=C:/Program Files (x86)/Java/jdk1.6.0_45#java.home=C:\\Program Files (x86)\\Java\\jdk1.6.0_45java.home=C:/CFusionMX/runtime/jre## If no java.home is specified a VM is located by looking in these places in this# order:## 1) bin directory for java.dll (windows) or lib/<ARCH>/libjava.so (unix)# 2) ../jre# 3) registry (windows only)# 4) JAVA_HOME env var plus jre (ie $JAVA_HOME/jre)## Arguments to VMjava.args=-server -DJINTEGRA_NATIVE_MODE -DJINTEGRA_PREFETCH_ENU
Hello, I will try to be brief. I've been trying for days to install ColdFusion 10 64bit on Ubuntu 12.04 64bit, but I get this error http://xx.xxx.xxx.xxx:8500/CFIDE/administrator/index.cfm:/opt/coldfusion10/cfusion/logs/coldfusion-out.logOct 3, 2013 22:50:23 PM Information [pool-2-thread-1] - Starting logging...Oct 3, 2013 22:50:23 PM Information [pool-2-thread-1] - Starting license...Oct 3, 2013 22:50:26 PM Information [pool-2-thread-1] - Developer Edition enabledOct 3, 2013 22:50:26 PM Fatal [pool-2-thread-1] -Oct 3, 2013 22:50:26 PM Error [pool-2-thread-1] - Unable to initialise License service: coldfusion.server.ServiceExceptionOct 3, 2013 22:50:26 PM Information [pool-2-thread-1] - Starting crypto...Oct 3, 2013 22:50:26 PM Error [pool-2-thread-1] - Unable to initialise Cryptograpic service: java.lang.NullPointerExceptionOct 3, 2013 22:50:26 PM Information [pool-2-thread-1] - Starting security...Oct 3, 2013 22:50:26 PM Error [pool-2-thread-1] - Unable to initialise Security s
Hi All,I am accessing a web service of a web site using ColdFusion.Each time I am calling the web service I am getting the message "Web service operation ... with parameters {} cannot be found".The wsdl file showing the parameter as complex type .So I have passed value to the particular method using structure and xml type each time I gets that error message.I can not post here the wsdl for security reason.When I am calling this Web service from .net it is working without any problem. .NET directly creating the objects of the parameter which the method is needed from the wsdl but I don't know whether it is possible in ColdFusion or not.Also I don't know whether the web service in .net or in other language.Please suggest something.ThanksUpen
Coldfusion 10Flex 3Existing Flash Application works with Coldfusion 8Flex Integration is turned on.Running latest update 12Linux MachineWhen I bring up the application I get the following error:mx.messaging.channels::AMFChannel)#3 initialDestinationId = (null) messageAgents = (Array)#8 [0] (mx.rpc::AsyncRequest)#9 authenticated = false autoConnect = true channelSet = (mx.messaging::ChannelSet)#5 clientId = (null) connected = false&n
I get the above message on start up of CFAdmin on a system that used to work. Had recently applied APSB13-27, but cfadmin worked after that install. There are two instances of CF9.01 on the server, the second instance works, the primary does not. On WIndows Server 2008, fully patched, IIS7. CF pages work properly. I have re-done the wsconfig for the cfadmin site. Other CF sites are on separate IIS instances on the server. Have applied the CF9 lockdown stuff. This is on a server that has been working for a while.JRUN Luancher shows that the 'cfusion' server is running properly. CF 9 version 9,0,2,282541 , Enterprise version . Java version 1.6.How to fix? THanks...RIck...
GreetingsI contsructed a form that allows the user to search up to five criteria:Date range, appraiser, order status, clientpriorityI've attempted to set the action page:<cfquery name="search_flexible_criteria" datasource="#Request.BaseDSN#">SELECT order_ID, order_number, order_client_ID, order_rush_status_ID, main_orders.order_status_ID, order_appraiser_ID, order_create_date, order_property_street, order_property_city, client_ID, client_company, appraiser_ID, appraiser_fname, appraiser_lname, lookup_order_status.order_status_ID, order_status, rush_status_ID, rush_statusFROM main_orders MO, lookup_clients LC, lookup_appraisers LA, lookup_order_status LS, lookup_rush_status LRWHERE 1 = 1<cfif IsDefined("Form.StartDate")><cfset Session.StartDate = "#CreateODBCDate(FORM.StartDate)#"><cfset Session.EndDate = "#CreateODBCDate(FORM.EndDate)#">AND (order_create_date BETWEEN #Session.StartDate# AND #Session.EndDate#)</cfif><cfif IsDefined("Form.order_clie
I have a database table with image paths and image details. I want to use ColdFusion to auto generate a PDF with this information. It's kind of like a yearbook. I've used <cfpdf> in the past to populate Acrobat forms, but since I need to display images, I can't use Acrobat. I then discovered LiveCycle Forms, but I soon realized that you can't merge/flatten LiveCycle PDF's due to the XML. Which, if the user generates an extract more than 1 page long, i'd have to merge the files.I can use <cfdocument> to write a PDF file, but this isn't ideal. Reason being, is that when you import the generated PDF into Adobe Illustrator, it views it as one big image. The designers working with these PDF's are used to opening up hand made PDF's, selecting the image they need from the document, and dragging the image and details to their canvas. Unfortunatly, <cfdocument> just mashes everything together as one image.Is there any way to accomplish this task? I'm so beat trying to find a s
Hello, I am a web developer, but I do not use Cold Fusion, so I come to the experts on this one. I have a client that wanted me to review a website and I cannot get the page to even attempt a load. It literally has nothing but a blank page and refreshing resolves too quick to actually be fetching the site. I saw the site load in his browser on the smart phone, so I know it loads for him. I used a webpage analyzer on it, so that is the only way I know it is in CF. It was able to fetch pages and URLS. Has anyone seen this sort of behavior? If so, what causes it? I have used FF, Chrome and IE. One time, out of all the times it gave me a cert warning, but when proceeding again.. blank page. Thanks for your help.
So I have a URL as a string in a variable and I'm trying the following:<cfimage action="read" name="myImage" source"#myUrlString#">And I get the following error:faultCode:Server.Processing faultString:'Unable to invoke CFC - An exception occurred while trying to read the image.' faultDetail:'File C:\Inetpub\wwwroot\my\cfc\path\"https:\my.domain.com\imagefile.jpg" does not exist.'Clearly it's prepending the path to the .cfc file onto the URL String. How do I get cfimage to just load the image from the URL without it trying to prepend the .cfc file's path onto it?(I've also tried ImageRead and ImageNew with exactly the same results).Thanks,Laurence MacNeillMableton, Georgia, USA
I can't seem to get .net integration working with cf8 or cf9 on a windows server 2008 standard box. It installs without any errors in the logs but things tend to go down hill from there.When I have cf8 installed it can find a dll and get dump the properties but when I try to instantiate the object I get an error. So this works: <cfobject type=".NET" name="sidiClass" class="System.IO.DriveInfo"> <cfdump var="#sidiClass#" />but this gives an error: <cfset drives = sidiClass.GetDrives() />specifically:Object Instantiation Exception.An exception occurred while instantiating a Java object. The class must not be an interface or an abstract class. If the class has a constructor t
On a new WIndows 2012 server (64bit), IIS 8.x installed, CF10 installed (to latest patches), CF10 hardening done. Ran WS-Config on individual IIS sites (not the "All" site). Jakarta virtual directory in place in the IIS site, and pointing to the correct wsconfig file for the IIS site : {CF-Home}\config\wsconfig\{iis-site-number} Default document setting in IIS set to defaults; have also tried setting index.htm as first default document. Browsing to http://mydomain.com/ returns a 404. Browsing to http://mydomain.com/index.htm returns correct content. Problem happens with any subfolder on the site. Have verified that index.htm exists in all tested folders. (Browsing done on the local server console.)Have deleted site web.config, then re-enabled index.htm as default document in IIS manager. Have checked permissions to the file; they are proper (and beside, going to http://mydomain.com/index.htm works fine, so don't think it is a permissions problem). No URL rewriting at server
I am using a cfspreadsheet tag to read excel file. Since, I am using QoQ, the file import errors out since the header row has spaces in it?How do we read the header row specifically and replace spaces and save the file before moving forward? Thanks<cfspreadsheet action="read" src="c:\WellRecords.xls" query="qryRecords" headerrow="1" sheetname="1">
So about a month and a half ago we switched from CF9 to CF10, and we were excited about what new features we would find in the revamped Scheduled Tasks section. As it turns out, our optimism and faith was severely misplaced. In every single aspect of the scheduler product, Adobe fails to deliver a usable product, and in most cases takes severe steps backward.Did you copy over your old neo-cron file so that you wouldn't have to set up 50+ tasks by hand?Well lucky for you that all the tasks will now be in CAPS for some reason, and every one of them is labeled as "paused" even though they are currently running.Did you like how nicely CF9 grouped the tasks by type, sorting hourly, daily, and weekly tasks into groups?For your convenience, that's now gone.Would you like to change the name of your task?Sorry! Error Message: It is unable to store the job because one already exists with that designation.Would you like to change what URL is called on the task?Sorry! Error
I'm using cfgrid type=html. I am creating a dropdown box in the cfgrid, however in the dropdown box it is showing the Values, instead of the ValueDisplay in the dropdown box. <cfgrid name = "SecondGrid" height="200" width="700" font="arial" fontsize="12" query = "getsecurity" SORT="Yes" selectmode="edit" format="html" insert="yes" delete = "#deletevalue#" ><CFGRIDCOLUMN NAME="userrole" HEADER="User Role" HEADERALIGN="LEFT" DATAALIGN="LEFT" BOLD="Yes" ITALIC="No" &n
I am unable to import just the dsn's and cf9 mappings from a cf9 server into cf10.
Running CF10-Enterprise, 10,0,9,284568 with Update 9. This is running under JDK 1.7.0_21, and is fronted by Apache 2.2.x and all runs under RHEL6.x. It seems to work fine In short - is it possible to create a new instance, and have that new instance run as a different user than the "main" instance? If so, what trouble does it cause?In more detail...The main reason we'd like to have a separate Instance is for "complete" isolation, to prevent one CF process or instance from affecting another, vs having one CF instance and just a lot of websites under it. Service isolation is a policy.I spin up a new Instance (CF Admin -> Enterprise Manager -> Instance Manager), and start it. It runs as the user "cfusion", which is the same user that the main instance runs as. I'd prefer it to run as another user, namely the user that owns the site this instance is for. So if I have site www.site1.com owned by user site1, I'd like the CF java process t
I am unable to find coldfusion7 anywhere .Found this link http://www.adobe.com/cfusion/tdrc/index.cfm?product=coldfusion7 But its taking me to coldfusion 8 , 9, 10 dowload.
I haven't touched cold fusion in 10 years so I'm a bit out of practice. I have a request from a user to save the form data on a form she submitted. I looked at the code and even made it just a simple form with no cf tags at all. And it still deletes the form data, is there a way to save it when the user clicks submit? I've tried adding the preservedata = "true" and that doens't help either. Any thoughts would be great.ThanksLaura
CF10 on Windows 2008R2, IIS 7.5Trying to implement application isolation as per CF10 Lockdown guide.I am asigning dedicated user account for each individual instance.However, the cfadmin Administrator console will start any other instance using cfadmin's account instead of the instance account.PLEASE let me know if there is a way to have the Adminuistrator console to strat each instance with it's onw account.I tried using windows service as well, but because the account is not member neither of Users, and of course not Administrators group, the service will not start. Please advise
We have a scheduled task that runs every 15 minutes and looks in the 'ColdFusion9\Mail\Undelivr' folder for any undelivered emails. If it finds any it moves them to the 'Spool' folder. It has been running fine for almost a year. Last week we applied Hotfix APSB13-27 and the next day we started seeing emails in the 'Undelivr' folder for hours. I manually ran the task that moves the emails to the 'Spool' folder, and the email was then sent fine. That makes me think the Scheduled Task is not running as we think.Is there anyone who has heard anything about the Hotfix APSB13-27 causing problems with Scheduled Tasks?We are running CF version 9,0,1,274733, use JRun4 as the App server, on a server running Windows Server 2008 R2.Any help is most appreciated.
Hi,I am running CF10 on Windows 2008 R2 server.Today, I applied update hotfix 12 to my Coldfusion10 server installation and now Coldfusion 10 Application Server does not start anymore. After install I ran Web server configuration as recommended. Now, when I start it from server manager concole I get an error Windows could not start the Coldfusion 10 Application Server...When I start Coldfusion Administrator I get page with:Service Temporary Unavailable!The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.Jakarta/ISAPI/isapi_redirector/1.2.32 ()I downloaded hotfix directly from this page http://helpx.adobe.com/coldfusion/kb/coldfusion-10-update-12.html after running Update from Administrator and download failed few times.I restarted the server box but, it did not help.Any ideas?Thanks
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.