『アドビコミュニティフォーラム』に質問/トピックを投稿する方法
Questions
新着順
To debug I want to see what variables are in the attributes. I can't figure out the instructions for CFDUMP. Any help appreciated.
Need the steps to enable SharePoint 2010 Secure Store Service to authenticate single sign on with a ColdFusion 11 app and display the ColdFusion app in a SharePoint webpart.On this page Adobe - ColdFusion Support Center : More DownloadsColdFusion 11 SharePoint Integration WebpartsThe ColdFusion 11 SharePoint Webparts allows ColdFusion applications to be displayed as a webpart in SharePoint.Download Sharepoint Integration Webparts (ZIP, 13 KB)The Readme in the zip file only provides the steps for SharePoint 2007 and 2003. I'm looking for the steps and needed files for SharePoint 2010 with Secure Store Service since Single Sign On is no longer used. This other page Integrating ColdFusion applications with Microsoft SharePoint using ColdFusion 9 | Adobe Developer Connection is for older SharePoint versions not 2010.Thanks in advance.Doug
I have just decided to set up my site using ColdFusion clustering in the staging environment. I need to find out what code adjustments are required when we move to a cluster environment. I have two machines where Coldfusion server is installed. Till now Steps I followed:On CFServer_1 I have created a instance.(cfinstance_1)On CFServer_2 I have created another instance. (cfinstance_2)On CFServer_1 I have created a Cluster using these two instances.Now on CFServer_1 I have created a IIS site(testsite.com) pointing to my codebase.Now On CFServer_1, Using the Web Configuration Tool I have associated testsite.com with the cluster.Now my question is Do I also need to set up the code base on the second server(CFServer_2), Create a site in IIS with same name(testsite.com) and associate the site with the cfinstance_2?
the university where I work just updated their Oracle test database to a new version and now my clob fields don't display in coldfusion. I have code to add to the query to capture the first 4000 characters, but what do I do about the few records that contain more than 4000 characters? We need to resolve this before we upgrade the production database... Have coldfusion developers addressed this issue with the new Oracle upgrade?
Why does this work?<cfset projectList = Application.Projects.getProjects(CompanyID=request.User.CompanyID)>BUT, this throws an error?(Could not find the ColdFusion component or interface Application.Projects)<cfinvoke component="Application.Projects" method="getProjects" returnvariable="projectList"><cfinvokeargument name="companyID" value="#request.User.CompanyID#"></cfinvoke>I understand that cfinvoke is trying to look for an 'Application' directory, correct? The Projects.cfc is located within a directory names 'sys'. Would it be a better idea to use:<cfinvoke component="sys.Projects" method="getProjects" returnvariable="projectList"><cfinvokeargument name="companyID" value="#request.User.CompanyID#"></cfinvoke>Basically, is the above the same as:<cfset projectList = Application.Projects.getProjects(CompanyID=request.User.CompanyID)>
We have switched to using CFWindows for our modal dialogs in our application. While we have debugging turned on for our IP addresses, and the debugging information shows up just fine on normal pages, nothing appears in cfWindows. Today I went about trying to recreate the debugging information and manually write it out to the window HTML. I began by using the following code in onRequestEnd, which worked fine on pages called normally:<cfset tempFactory = createObject("java", "coldfusion.server.ServiceFactory")><cfset tempCfdebugger = tempFactory.getDebuggingService()><cfset qEvents = tempCfdebugger.getDebugger().getData()>After taking the time to format the output as desired, I finally tried this on a cfWindow. However, I received the following error on the third line of code:Detail Its possible that a method called on a Java object created by CreateObject returned null.ErrNumber 0Message Value must be initialized before use.This implies that it'
Hi! I have a tag called #PubsPageLink# that contains an href link, but I want the #title# tag to use that same variable, as well. Obviously, using... <a href='http://#PubsPageLink#'>#title#</a> ...is too simplistic an approach. But what would be an effective way to grab that href variable and apply it to separate tag?#PubsPageLink# is currently setup to output a text link that reads "Read More..." <cftry><CFQUERY NAME="Pubs" datasource="Library" maxRows="4">SELECT citation, title, journalName, PubsPageLink, Year(FROM_UNIXTIME(Pubs.datePublishedConfirmed)) AS DateFROM PubsORDER Pubs.DatePublishedConfirmed DESC</cfquery><cfoutput query="Pubs"><cfif #citation# is not ""> <strong>#title#</strong> | #PubsPageLink# <em>#journalName#</em> #date#<br><br></cfif></cfoutput><cfcatch></cf
I need to upload multiple files (potentially all images, all PNG) to the server from a mobile device to a CF8 server. Probably as many as 50 small png imagesCould anybody give me some pointers as to the best possible approach to this.ThanksMark
Since this tag is deprecated in CF11, how do I get rid of shading? I need a solid color bar. thanks
I need to convert my minutes in my HH:MM record to decimal.For example if I have 43 hours and 15 minutes (43:15) I need to return the result 43.25 hoursand if i have 10 hours and 30 minutes I need to return 10.50 hours.How do I do this?
Hi - we've just upgraded from cf8 to cf9 and are getting a fair few of these errors - "Error Executing Database Query. Incorrect string value: '\xE2\x80\x8BWe ...' for column" as we try to insert a row in the db.The query is inserting the following string "We are seeking a" - nothing innocuous in the text and certainly no instance of this string '\xE2\x80\x8B' (despite what the error message says).Has anyone else run into this, any ideas what's going on?Thanks very much for any help you can offer as I'm completely stuck.Thank you.Kind regards,Nick
I have just installed CF11 on our dev and QA servers and am getting a strange issue on only one of them. On our QA server, instead of the calandar control showing up when <cfinput type="datefield"> is used, I get the text "Date Picker". I can't find anything on this on any help forums so I was hoping someone has come across this as I can't seem to figure out the issue. What baffles me is that it works fine on one server with the same CF version. Thanks is advance.
I'm trying to use CFFTP to retrieve files from a remote FTP site to download to my local directory. I would see the file in the local directory but with 0 kb. Wondering what was going on, I tried accessing just the directory and got an 'Access is Denied' error. The funny thing is that it was working fine a few weeks ago until we made some server changes. We had some FTP sites set up but closed them. Could closing them have anything to do with it? I'm definitely not an expert when it comes to this stuff.We're using CF9 and IIS7 btw. Can someone explain what's causing this and how do I go about fixing it? Any help would be appreicated.<cfftp action="getFile" connection="objConnection" remotefile="s692605.FRTB0001_RES.DAT238710" localfile="E:\Inetpub\test\s692605.FRTB0001_RES.DAT238710" stoponerror="yes" failIfExists="false" passive="yes" timeout="600" transfermode="auto" /
There are 3 changes from CFB2 to CFB3 that are pretty annoying and I am wondering if anyone has a fix?Word-wrap has seemed to have disappeared. It is no longer in preferences in the same place, nor any other that I can find? I have found an eclipse plugin to take care of this for now, but wondering if there is an official way to do this within CFB3 or was this an Aptana feature that Adobe decided not to implement in their rewrite? I would think word-wrap to be pretty basic functionality in an editor...In Outline View I always set the filter to CFFUNCTION only. When using cfscript based components, the outline view is polluted by any javadoc comments you may have. There is a new toggle button available: "Show Function Only" but it defaults to off and so you continually need to click this button for every cfc you have open to hide the mis-parsed comment detritus. Very annoying. There must be a way to either remove these comments altogether or at least have that toggle feature stick to on
Hello,McAfee Scan Alert is reporting that Tomcat version 7.0.23.0 is not pci compliant.We're on CF10 and just updated to update 12.We've read in another thread that Tomcat is specialized for CF and thatCF should be updating Tomcat as needed.The complete Scan Alert warning is:Scan indicates that you are using a vulnerable version of apache tomcat web server. The version of tomcat deployed on this web server may be outdated and vulnerable to a host of issues (including but not limited to) - denial of service attacks - directory traversal - default admin passwords - execution of code by arbitrary file uploads - bypassing of access restrictions - cross-site scripting - session fixation - bypass of CSRF prevention filterThanks in advance,-Mike
Hi,I have this strange query of queries result that could be a bug in CF11. The result is fine in CF10.Basically, I have 2 queries, qrA and qrB. I do a join of the two in joinQr, after which I do a query of qrA. Since I didn't alter qrA in any way, I would expect newQrA to give me the same result as qrA. However it only gives me one row ("D"). Now, here's the strange thing: If I start off qrA with the letters in ascending order ["A", "B", "C", "D"], then newQrA gives me the right result. <cfset qrA = queryNew("")> <cfset queryAddColumn( qrA, "size", "varchar", [ "D", "A", "B", "C" ] )> <cfset qrB = queryNew("")> <cfset queryAddColumn( qrB, "size", "varchar", [ "A" ] )> <cfset queryAddColumn( qrB, "quantity", "integer", [ 0 ] )> <cfquery name="joinQr" dbtype="query"> select qrA.*, qrB.quantity from qrA, qrB where qrA.size = qrB.size </cfquery> <cf
i can't find the services browser tab in cfbuilder3
I used too use Services Builder a lot to generate my CFINVOKE code. I can no longer find it in Builder 3. Does anyone no where it is?
Hi Guys,How to insert information into a XML file. I explain to you, I have a CFM file with some questions to userWhen the user submit this form the information inside of form are send to a XML file.How can insert this information inside of the XML file?When i dont have a DB?thanksKind regardsFabiano Magno Pechibella
I have several names to report I need to combine data from several records of the same type with different codes. Not all names have the same codes. I want to report the data on one line. Is there a way to save date to be used later in the report?For Example:Name Code Start Date Code Transfer Date Code Promote Date SueSD01/15/2000TD01/15/2005MitchSD01/15/2004SamSD01/15/2003PD01/15/2006
I have a cluster of 2 IIS web servers on Windows Server 2008 R2. They had been running on CF10 for over a year (if not two) with no problems. I upgraded one server to CF11 and now that server is crashing while the CF10 servers is still running fine. In the Windows event log I'm seeing 4 instances of this error:"A process serving application pool '******' suffered a fatal communication error with the Windows Process Activation Service. The process id was '4652'. The data field contains the error number."Then finally:"Application pool '******' is being automatically disabled due to a series of failures in the process(es) serving that application pool.".Looking at the application pool in the IIS admin it is stopped. Restarting will resolve but it will eventually crash. What could be the issue?-Phil
Hi, In CB3 I just noticed that Javascript code assist does not assist locally created parameters and functions! Is there a fix for this or do I download Aptana plugin? Platform:Windows 8.1 x64 EnterpriseColdfusion Builder 3 (Build 290048)Regards Bert.
I'm using a developer install of ColdFusion 11. I set up the following page at http://localhost:8500/test/index.cfm: <cfthrow type="application" message="This is an error"> When I visit that page, the HTTP status code returned is 500, as expected.I then created the following page at http://localhost:8500/error.cfm: <p>Sorry! That was an error.</p> If I set the site-wide error handler in the CF Admin to /error.cfm and visit /test/index.cfm, the HTTP status code returned is 200 OK.This seems weird to me. It looks like I can include the following in the error.cfm file to send an error code instead: <cfheader statuscode="500" statustext="Server Error"> Does anyone see that as problematic? Is there a reason why the site-wide error handler should return 200 OK?
Hello,ColdFusion 10 (Enterprise) and Oracle 11g were configured and was working well. However recently Oracle 11gR2 was upgraded to version 12c, and this broke many things. Mainly, the data source connections that were setup in CF Admin page to query databases on Oracle does not work any more.Is there any action required from our side to update anything so that I can continue querying Oracle databases on 12g, as we used to do earlier on 11gR2? We use JDBC driver to connect.Or does Adobe CF10 not support Oracle 12g at all, and require an update to a new CF version?Thanks,Arun
I installed CF 11 on a Windows 2008 R2 server as a fresh install on IIS7.I used the "The Coldfusion 11 Lockdown Guide" which specifies to use 'Request Filtering' on page 17. It also states:IMPORTANT: As of 4/10/14 in the latest CF11 build request filtering is not working or urls handled by Coldfusion. This needs to be fixed.The the IIS portion of the guide is dependent upon the 'Request Filtering' working. Mine did not work either.So, if you follow the steps your CF sites will not work, (neither will the administrator).When can we expect this to be fixed? Shouldn't the statement above be put on page 1 of the guide! A lot of work to get to the page only to find out it will fail.Has anyone come up with a fix or workaround for this?
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.