『アドビコミュニティフォーラム』に質問/トピックを投稿する方法
The official community for ColdFusion.
新着順
Hi,When I click uninstall.app I got the screen like this.Please help.THANKS.
Hey guys, I have a CFGRID that's bound to some form fields:<tr><td align="right"><span class="srch_title">First Name 1</span>:</td><td align="left"><cfinput name="Data_FName1" type="text" class="inputs_nomargin" bind="{SearchResultsGrid.fname1}"></td><td align="right"><span class="srch_title">Last/Bus Name 1</span>:</td><td align="left"><cfinput name="Data_LNameBus1" type="text" class="inputs_nomargin" bind="{SearchResultsGrid.lname_busname1}"></td><td align="right"><span class="srch_title">DOB 1</span>:</td><td align="left"><cfinput name="Data_DOB1" type="text" class="inputs_med_nomargin" bind="{SearchResultsGrid.dob1}"></td><td align="right"><span class="srch_title">DL Number 1</span>:</td><td><cfinput name="Data_DLNum1" type="text" class="inputs_nomargin" bind="{SearchResultsGrid.dlnum1}"></td></tr>When, c
I'm moving from CF8 to CF10 and having some issues. My CF10 install is a clean install on brand new server running Windows Server 2008 R2 64bit IIS 7.5. I've upgraded to CF version 10,0,11,285437. Out of the 50 or so Apps on the server almost everything works, but there are a few pages that just don't render at all. No error, nothing. Viewing the source for the page just shows an empty HTML page. Coldfusion logs are empty and there's 500 null error in the IIS logs.While researching that issue I found many people recommending I rerun wsconfig after patching CF, so I tried that and it looks like my sites aren't configured correctly. During install I configured the sites individually (2 of them run in 32 bit while the cfadmin site runs in 64.) Now when I run the Web Server Configuration Tool as administrator I just get a Configured Web Servers box that is empty. When I click add the next window shows IIS, but the drop down for IIS Web Sites is disabled. Checking the Configure 32 bit we
Is there a ColdFusion Widget that will allow an end user to add or change text to a ColdFusion developed Website contents?If so what is it called and can you lead me to some specific information about it?What versions of ColdFusion has this option?Any other comments you can add to this dicussion, please do so.Thanks,LAH
searchPage.cfm=============<!---<cfparam name="serviceLists" default=""><cfoutput>serviceLists : #serviceLists#</cfoutput><cfscript> serviceLists = application.getServiceListObj.getServiceLists();</cfscript>---><style type="text/css">.mainhead{width:800px;}.outset {border-style:outset;border-color:#FF4000;background-color:#F2F2F2;width : 800px;}.multselect{width:250px;height:150px;}</style><script type="text/javascript">function getServiceList(searchBy) { var xmlhttp; if (searchBy.length==0) { document.getElementById("serviceListBox").innerHTML=""; return; } if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari xmlhttp=new XMLHttpRequest(); } else {// code for IE6, IE5 xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); } xmlhttp.onreadystatechange=function() { 
I was recently forced due to company policy to upgrade from CF8 to CF10. When I did so, a number of things naturally broke.Specifically, I have some cfloop code that is now throwing a "Complex object types cannot be converted to simple values" where it didn't before. This is driving me mad. Must be something simple I'm missing.The gist of it is that I have a multi-select listbox (sorted with some javascript I found online) passing a comma-delimited list of numbers as the "FORM.list" value to the loop. Here is the code: <cfif isDefined("FORM.list")> <cfloop list="#FORM.list#" delimiters="," index="i"> <cfquery name="somename" datasource="#datasource#"> UPDATE STATEMENT (some query code) WHERE some_id = #i#&n
I have not logon to the administrator console for a year. Now I forget wkat I need to do to get it back.
I am using cfmenu and cfmenuitem to create my menus. When I change the font-size using "fontsize" in cfmenu or using "font-size: 12pt;" in css style configuration the menu name buttons display does not change in size. Other things in the style configuration change when display, but not size. Any thoughts are welcome.
I have a database table that stores a destroy date for uploaded files.The files are stored in one directory.I'm a little lost on how to delete the file / files from the directory when the destroy date is due. I will mark them in the database as destroyed.All of the files live in the same directroy and they are all pdf files.The scan_doc table lists the folder they file is stored in and the name of the file is the primary key from the table, so a file I might want to delete looks like this:H:\scanned_files\10\175.pdfIt seems like i should be releatively easy, but for a simple person like me, I'm stumped.I was thinking of a query to select files that are listed as detroyed, that part I can figure out, then I need the logic to delete the file(s).Any help would be appreciated.Thanks
Hi - I have a query with Names and Phone Numbers. I am trying to use <cfselect> statement to provide the list of names in the drop down. Then when the user selects the name and the system passes the phone number associated with that person for processing. I do not want the user to see the phone number but only a name. I have put hours in this and it's not happening. Your help is much appreciated! Thanks!
Hi all. I was reading and trying out Adobe blog posts on CF Websockets and discovered that the code doesn't work on my iPad. My server is CF10 update 11 (IIS7.5) and the iPad is on iOS 6.1.3. All of the tutorials I could find work great with PC browsers including PC Safari, but not my 2nd gen WiFi iPad. I did find the WebSocket.org site and their web page worked great on the iPad and I even took their HTML code, threw it into a .cfm template and put it up on my CF10 server and the iPad had no trouble with that-it also ran great.Did some digging around and found the following information and am wondering about its application to CF: http://jfarcand.wordpress.com/2012/05/16/safaris-websocket-implementation-and-java-problematic/Does anyone know what websocket specification Adobe CF uses?Any ideas why the CF implementations wouldn't work? Thanks for your consideration.-A-
Coldfusion 9.01Windows Server 2003Microsoft Access database (yeah, we know)Before the hotfix was applied, we could add multiple rows (anywhere from 1-100 or more) and now we're limited to 15 rows at a time after applying the hotfix. We've narrowed it down to the hotfix being the culprit as we had to rebuild the server not to long after this hotfix was applied (~ 1 month) and the multiple row inserts were once again working fine until we got to the point of applying this hot fix again.Anyone heard of this happening? Any ideas how to correct? Thanks in advance,fmHelpBelow is code of how we're doing the multiple row insert (it's performed over 3 pages):Page 1<cfform name="form1" method="post" action="handler.cfm?page=update_2"><input type="hidden" name="sProductID" value="<cfoutput>#qProducts.sProductID#</cfoutput>"><table width="100%" border="0" cellspacing="3" cellpadding="3"> <tr> <th scope="row" colspan="2" align="ce
Hi,We added few schedulers which runs on daily basis and after few days we found that schedulers did not run and in scheduler.log file found that all misfired. We tried to set option On Misfire = “Fire now”, but we got error:An error occured scheduling the task.Advance Scheduling support is not available in this edition of ColdFusion server.We are using standard edition of CF10, Is there any solutions to fix it?Thanks in advanceMamun
This question was posted in response to the following article: http://help.adobe.com/en_US/ColdFusion/10.0/Installing/WSc3ff6d0ea77859461172e0811cdec18c28-8000.html
This question was posted in response to the following article: http://help.adobe.com/en_US/ColdFusion/9.0/Installing/WSe9cbe5cf462523a07f098214121c918ef8c-8000.html
Hi,I have setup two Coldfusion clusters from two CF v10 server (latest update). The first one named WWWA, second one WWWB. Both servers have two instances named WLOCAL and WREMOTE.I have registered in both servers with the remote instance (e.g. SERVER_A with SERVER_B_REMOTE, and SERVER_B with SERVER_A_REMOTE). I can also add them to the cluster.Here are the problems I encountered:When I add the remote instance to the cluster, the admin page returned "Service Unavailable" 503 error. I noticed that the server seems to be restarting since I can reaccess the admin page after a few minutes. This happens also when I edit and save the configuration again.In "Instance Manager", when I press "stop" button of the remote instance, it shows the following error message:Although the cluster seems to be running well, I wanted to resolve these problems. Can anyone offers help?Thanks much!Adams
Does anyone know of an online editor that will work within the cflayout/cflayoutarea function. I used ActivEdit for years, but clients are wanting something more cross browser friendly, and ActivEdit works great with IE, but not so well with other browsers. I have tried using CKEditor which comes with ColdFusion which you would think should work with a ColdFusion function, but that's not true. The navigation nor content shows up and CKEditor. If I remove the cflayout elements, CKEditor will work fine, although the image upload and placement function is very clunky.It is frustrating that the only response I get from Adobe's support people is that both CKEditor and the code for cflayout come from third party providers so it's not really their problem. I think that is so wrong as we pay a good amount of money for a product that is supposed to make coding easier and more efficient. Thus, they should fully test these so called 3rd party products to make sure they work and if not either fix
I need to capture an entire URL and send it in the body of an email, using CFMAIL. I'm looking at my CGI variables using CFDUMP, but can't seem to get the entire URL string, including the http:// or https://. Help?
I turned on IIS and reinstalled CF10. Things worked fine, but suddenly yesterday I ran into the problem that the returned pages would not contain jpgs and css file information was not loaded either. Error message: HTTP Error 401.3 - UnauthorizedYou do not have permission to view this directory or page because of the access control list (ACL) configuration or encryption settings for this resource on the Web server.I added a number of users to the file's security page, but nothing worked.Has anyone run into this sort of problem? I want to put this message out there before I uninstall IIS and CF10 and then reinstall.Running CF10, Windows7 Professional 32bit, IIS
How can search for mutiple fields (criterias)? my code below returns nothing?Form.cfm:<form action="search.cfm" method="post">Name:<input type="text" name="name" />Desc:<input type="text" name="desc" /><input type="submit" name="submit" value="Search" /></form>search.cfm<cfset searchTerm = "#form.name#,#form.desc#"><cfsearch name="searchResults" collection="mycollection" criteria="#searchTerm#"> <cfdump var="#searchResults#">thanks
I have a list of names and I want the user to click on the name and it will reveal the DIV and load the appropriate data into it. How can I do this and can I do it withouth the page refreshing?
In production time zone has changed from CST to EST.But after this change some functionalities are not working as expected.I need to make sure that the time zone change has reflected in CF server to check whether functionalities are working. Can any one know how I can verify that the time zone has changed from CST to EST. Through CF admin side or some log files??Your help is well appreciated.
Hello all,I have an area of a website that users log into. Upon logging in, they are given a certain access level based off criteria in the datasource. For regular users, the sessiontimeout in my application.cfm file looks like this: <cfapplication name="MemberSession" sessionmanagement="Yes" sessiontimeout="#CreateTimeSpan(0,0,20,0)#">. Is there a way, based off the criteria in the datasource that assigns access levels (ALevel), to make the sessiontimeout longer for certain "privileged" users? I tried the code below, but CF returned an error.<cfif Session.ALevel neq 'SEC' or Session.ALevel neq 'EXSEC'><cfapplication name="MemberSession" sessionmanagement="Yes" sessiontimeout="#CreateTimeSpan(0,0,20,0)#"><cfelse><cfapplication name="MemberSession" sessionmanagement="Yes" sessiontimeout="#CreateTimeSpan(0,0,90,0)#"></cfif>Thank you!
I have a project where there are about a dozen paper items that have a half dozen fields that will come from a database. The paper document is pretty much a standard word file type document with each page filled with words. Does anyone have suggestions on how to present such a document in an an html table? It will be turned into a PDF document using the <cfdocument>. Thanks!
Hi everybody - kinda new here. I was hired at a web design company last year and have recently taken to learning ColdFusion - so I'm not 100% on the syntax. I always need help with if statements, so I'm hoping you guys will be willing to spread some knowledge.Anyway to put this in context:What I'm working on is a Calendar that allows you to register to attend an event, such as a corporate dinner, holiday party, or some such nonsense. It also processes ticket purchases through a 3rd party such as PayPal, and would look something like this when put on a web-page.Here's the code that creates that display.<table class="registerTablePrices" cellspacing=5> <cfloop query="registration_types"> <cfif registration_types.esl_price gte 0> <tr> <td class="formlabel" nowrap>#registration_types.estName#:</td> &n
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.