『アドビコミュニティフォーラム』に質問/トピックを投稿する方法
The official community for ColdFusion.
新着順
I've search the forum but have not found a way to get the missing template handler to work properly on my site. I'm running CFMX 7 on Windows 2003 and using IIS as my webserver. I have tried placing my missing template handler 404.cfm in both my IIS root and CF webserver root as other posts in this forum suggest. I also followed the instructions on the following kb to configure IIS to handle the missing templates. If I complete this final step the missing template handler works but some of my flash forms that go along with code to upload files no longer work. If you are configuring IIS 6.0 for the Missing Template Handler, along with the above you also need to configure the following: 1. Under the properties setting for the web site, go to the Home Directory tab. 2. Click the Configuration button. Under the "Wildcard application maps (order of implementation)", select the jrun_iis6_wildcard dll. 3. Click Edit. 4. Click the "Verify that file exists" checkbox to enable it. 5. C
I have 1 CF 10 server 64 bit running on IIS 7.5 on a Win 2008 R2 VM w/ 4 Gig Ram on 4Ghz of processing. The box hosts 5 websites with not too much traffic. I've been experiencing Service unavailable errors about once per day and only on certain websites. I restart the CF App Service and all is well again. All 4 of the websites have the same code with just a few variables difference to get different data.I've made some adjustments in the server. For example I set min and max JVM Heap size to 2048.Any ideas what I can do to get things running with more stability?
Dear reader,I work with Coldfusion 8 and have a form that is type XML . When I create this code:<cfinput label="Sox" name="Sox" type="checkbox" checked="#YesNoFormat(qCompanyControl.Sox)#"><cfinput label="Tax" name="Sox" type="checkbox" checked="#YesNoFormat(qCompanyControl.Tax)#"> <cfinput label="Iso" name="Sox" type="checkbox" checked="#YesNoFormat(qCompanyControl.Iso)#">3 checkboxes with THE SAME NAME.the result on screen is what I want, but the problem is now that I cannot access all 3 seperate...When I change my code to the code is should be:<cfinput label="Sox" name="Sox" type="checkbox" checked="#YesNoFormat(qCompanyControl.Sox)#"><cfinput label="Tax" name="Tax" type="checkbox" checked="#YesNoFormat(qCompanyControl.Tax)#"> <cfinput label="Iso" name="Iso" type="checkbox" checked="#YesNoFormat(qCompanyControl.Iso)#">the result is this:The labels are gone...What is causing this prolem?? (I tried a lot of things, but apparently not the corre
I have seen a few discussions regarding the ColdFusion 10 admin password not being recognized. I installed ColdFusion 10 twice thinking I did not remember the password, but I do know what the password was when I installed the software. I was able to get around not being able to open the console, by modifying the neo-security.xml file and now since I am using SSL/windows authentication, it prompts me only for my network username and password. The problem is when I go into the administrator console not all of my icons display correctly. It is as if I do not have rights. I have used the password reset tool and then changed my password within the administrator console, since the password reset tool at least gives me a default password, and I still get invalid password when I try to logon as admin. I have stopped and restarted the services whenever I change the neo-security.xml file.Has anyone solved this issue? I would still like to have the added
Does anybody have any idea if there is a hotfix or way to resolve the problem with CFMAIL constantly dumping perfectly good emails into the undelivered folder, with the logged message Exception reading response?I put them back in the spool and they work fine, even test emails to myself sometimes end up in thereBTw This is CF8.01ThanksMark
Hello,I have a ColdFusion web application that, by client request, creates a copy of a PDF (which has about 100 empty form fields), then fills the fields with data via FDF like so:<cfpdfform action="populate" ...> <cfpdfformparam ...> <cfpdfformparam ...> ...</cfpdfform> This PDF then sits on the server and is offered as an HTTP download to the requesting client.I had a client tell me that she downloaded a PDF created this way, and some of the fields had a their ASCII values incremented by 1. For example, what should have been "599465-GU" in one field was displayed as "6::576.HV". According to her it was a sporatic problem that appeared throughout some of the PDF's form fields. I have never heard of this problem before from clients.I looked on the server at the PDF that was sent to her (that was created by the server, sent to her as an HTTP download, and still sat on the server) and it appea
This web service has been working correctly for five months but began to fail intermittenly with this error, requiring a restart of the JRun server instance hosting ColdFusion 8. Any ideas? "Error","jrpp-4","06/10/08","11:54:44","MCTDmasterEntryJ2EE", "Cannot perform web service invocation getOrder.The fault returned when invoking the web service operation is:<br> <pre> AxisFault faultCode: { http://schemas.xmlsoap.org/soap/envelope/}Server.userException faultSubcode: faultString: coldfusion.xml.rpc.CFCInvocationException: [java.lang.ClassCastException : cf.egov.EXTWSsSSL.EgovOrder] faultActor: faultNode: faultDetail: {}coldfusion.xml.rpc.CFCInvocationException:null { http://xml.apache.org/axis/}stackTrace:coldfusion.xml.rpc.CFCInvocationException: [java.lang.ClassCastException : cf.egov.EXTWSsSSL.EgovOrder] at coldfusion.xml.rpc.CFComponentSkeleton.__createCFCInvocationException(CFComponentSkeleton.java:723) at coldfusion.xml.rpc.CFComponentSkeleton.__cast(CFComponent
I have two cfdvs on my page. One has a list and another has a form in it:<cfdiv name="w1"> <cfinclude template="list.cfm"></cfdiv<cfdiv name="w2"> <cfinclude template="form.cfm"></cfdivWhen I submit my form, the result is loaded inside div w2. Now I want to refresh the div with the list too. So I tried this at the end of the page that processes the form: <script> Coldfusion.navigate('list.cfm','w1');</script>This didn't work. I get an error: "... element not found: w1 ...".Does anyone know how to refresh the list after processing the submitted form data?
I've got a set of radio buttons bound to a cfdiv. None of them are initially selected. As expected, once you click one, the cfdiv shows the value of the radio button that was selected. The problem is if I reset the form that contains the radio buttons. The radio buttons clear, but the cfdiv still shows the value of the last radio button that was selected. How can I clear the cfdiv value when the form is reset?
When I select a row and try to delete it, I get "Error invoking CFC _admin_cfc_contacts.cfc : OK [Enable debugging by adding 'cfdebug' to your URL parameters to see more information]"Here is my cfgrid code...<cfset args = structNew()><cfset args.name = "contact_grid"><cfset args.format = "html"><cfset args.query = "biz_contacts"><cfset args.stripeRows = "yes"><cfset args.bgcolor = "FFFFFF"><cfset args.colheaderalign = "left"><cfset args.colheaderbold = "yes"><cfset args.delete = "yes"><cfset args.griddataalign = "left"><cfset args.multirowselect = "yes"><cfset args.insert = "yes"><cfset args.selectcolor = "FF6633"><cfset args.height = "500"><cfset args.selectmode = "edit"><cfset args.autowidth = "yes"><cfset args.onchange = "cfc:_admin_cfc_contacts.edit_grid({cfgridaction},{cfgridrow},{cfgridchanged})"><div style="padding-top: 20px; padding-left: 20px; padding-right: 20px;"> 
Last week I started to install hotfix APSB 12-26. I downloaded the files, unzipped them and followed the instructions on this page. I got as far as going into the console, clicking the "i", adding the hf900-00009.jar file and clicking the "submit changes" button.I restarted all services.For various reasons, which I won't bore you with here, I wasn't able to go any further with the installation of the hotfix, so I did not change anything else about our installation of CF9.Since this we have had some odd problems with our websites which might have been caused by this partial installation of the hotfix. I would like to uninstall whatever it was that adding the .jar file did, but I can't find any information about how to do it.I checked our backups from the day before I attempted the update and the folder than now contains the hf900-00009.jar file and a file called empty.txt has just the empty.txt file in it. Should I simply delete the .jar file and then click the "submit changes" button,
We have server running CF10 Standard which basically a one trick pony - doing one only thing - handling flash and AIR romote object requests from browsers and devices.I'd expect this to go smoothly but we're seeing a number of errors popping up when the server is under load ( we're talking pretty small loads - maybe 100 concurrent users across browsers / devices )The errors are often duplicate http session or recently Error deserializing client message and they don't seem related to the code / device just distributed randomly.What I'd like to know is simply:Is CF10 Standard throttled for Flash Remoting in some way ?Was this introduced in CF10 ( and was not in CF9, 8 ) ?Aside from upgrading what can be done in CF Admin to optimise Flash Remoting in CF10 Standard ?Thank you.
I'm trying to build a module to utilize the eBay large merchant services API and I've hit a major road block.I decided to start out by implementing a request for active listings. I've got the basic functions working to start the export job and get a file ID to download. I can make the download request just fine but the filecontent comes back as an object of java.io.ByteArrayOutputStream and I'm not exactly sure what to do with it.It's supposed to be XML content with a zip file attached.The toString result shows that it's Content-Type: application/xop+xml. and it looks like it's delimited bya mime boundary. This encoding is a little new to me but I gather it's a more optimized way of packaging thebinary data with an XML response.The problem is separating out the binary attachment from the XML part. I found this Blog Post where he ended up suggesting using the underlying java getByteArray function but that still doesn't seperate the XML from the attachment and after that i don't know wha
I am trying to get ColdFusion 10 Standard 64-bit to install and run on 64-bit RHEL 6.3 Workstation (Apache). After disabling selinux, all segments of the installation run to completion flawlessly. There are no indications of any kind of error. The ColdFusion administrator appears to be functioning normally. The mod_jk.conf file is included in the httpd.conf file as required. In spite of this, any attempt to use Flash remoting results in a "Send Failed" message. In fact, any attempt to access flex2gateway results in a 404 page not found message (including http://localhost/flex2gateway/).Other details that may or may not be relevent are as follows: I am new to Tomcat (I'm a long time ColdFusion 8 and 9 user) and I am not sure where to go to try to fix this problem. I am trying to migrate a web-site that features/contains LOTS of Flex 4.51 compiled controls from a 32-bit RHEL5.8 machine that is running 32-bit ColdFusion 8 Standard to the new 64-bit platform. The Flash/Flex controls were r
cftextarea richtext does not appear to be functioning in the lastest RC of IE 9.This code:<cftextarea name="message" bindonload="no" height="450" width="650" toolbaronfocus="no" richtext="yes" toolbar="default" fontsizes="1em" skin="silver"> </cftextarea>Works fine in FF and Chrome as well as IE8 - but not in IE 9. Is this an issue with FCKEditor or just IE (as usual?)
Having an issue with pictures that is uploaded to the site. On a page I have a div tag set to a certain size, but if someone uploads an image that is bigger than the size of the div it ignores the div size. The size of the div is 500px by 500px. I even tried a table with a set dimension and still no go. I did think of using the cfimage resize function, but thought to myself that if someone uploads an image that isn't bigger then500px X 500px it will extend the size i set and might blur the image, so i guess that's a no go.Is there a way to force the image to not extend past the size I set in the div?
This question was posted in response to the following article: http://help.adobe.com/en_US/ColdFusion/10.0/CFMLRef/WSc3ff6d0ea77859461172e0811cbec22c24-7f11.html
This question was posted in response to the following article: http://help.adobe.com/en_US/ColdFusion/10.0/CFMLRef/WSc3ff6d0ea77859461172e0811cbec22c24-7d68.html
This question was posted in response to the following article: http://help.adobe.com/en_US/ColdFusion/9.0/CFMLRef/WSc3ff6d0ea77859461172e0811cbec22c24-7d68.html
So I just purchased my entire team of developers windows 8 machines, and I have found that CF does not install on Windows 8. How is it possible that Adobe does not have a Windows 8 release yet? I have been an avid CF supporter for over a decade but this could be the last straw. Does anyone know of any possible workarounds for this issue? I am in a bind here so any help will be greatly appreciated.
Hey everyone, I'm hoping I can get some advice from others who may have had similar struggles as me in this regard. I am running a Windows Server 2008 R2 with IIS 7.5, along with a 32-Bit CF10 installation. I have followed all instructions in setting up CF10 32-bit, and have successfully connected to a Microsoft Access data source. Everything appears to run fine.My issue has to do with a particular report that we are creating where we have to do a lot of data mining to gather information from the Access DSN into a simplified results table for formatting into a report. It is admittedly a rather heavy process, which requires digging up recordset totals from the DSN thousands of times. I understand the disadvantages of using Access in this way, but there are other requirements on the data that have us hemmed into using Access as the backend in the near future. Running this report on CF9 we have success. Its a slow process, but it does complete the
Hello, everyone.Just curious: Is there a Windows equivalent of SSI for ColdFusion 9 built-in webserver?Thank you,^_^
Trying to install CF10 with the web server connector to Apache 2.4.3 Win32 and get "Adobe ColdFusion 10 does not support this version of Apache. The earliest supported Apache versions are 1.3.12 or later for Apache 1.x and 2.0.43 or later for Apache 2.x". Does CF10 support Apache HTTPd 2.4.x?
Need some help, please. I have two identical CF10 enterprise servers set up with IIS7 on Win2008. Each has 4 CF instances running. I decided to experiment with clustering as I''ve run previous version of CF as J2EE instance with much success.So, on server 1 I registered a remote instance on server 2. No problem. I then went into the Cluster Manager and added this remote instance to my existing cluster. Upon clicking Submit I was greeted by a plain white screen that said only: 503 Server unavailable. Several refreshes predictably yielded the same thing.I restarted the CF instance. Now I get IIS error 500, IsapiFilterModule when trying to access CF AdminI re-ran my web server connector tool.I've tried falling back to older server.xml files.I'm sure something got screwed up when trying add to my cluster but without a CF Admin I'm not sure how to undo this.All other instances and all remote instance on server 2 are fine. I can access th
Windows 2008 R1, IIS 7.5, CF10We just upgraded our development standalone CF9 server to CF10. Had a few issues along the way, but got it installed (other forum entries refernce the issue with having to add individual sites in IIS via wsconfig). What happens is that our default page (default.cfm) gets an error 310, redirect loop. If I can get a cookie session set, I can get into the website, just not on the default page. I have completely removed and re-installed IIS, whci helped soem of our issues, but not the basic one of the loop. Any thoughts? BTW, I am a sys admin, not a CF expert by any means.And just to verify, this was workign fine in CF9 on the same box.This webpage has a redirect loopThe webpage at https://<SERVER-NAME-REMOVED>/<DIR-NAME-REMOVED>/default.cfm has resulted in too many redirects. Clearing your cookies for this site or allowing third-party cookies may fix the problem. If not, it is possibly a server configuration issue and not a problem with your compu
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
すでにアカウントをお持ちですか?ログイン
アカウントをお持ちではありませんか? アカウントを作成
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.