『アドビコミュニティフォーラム』に質問/トピックを投稿する方法
Questions
新着順
Hi,I am trying to bind the selectedNode in a cftree to cfinput<cfform name="form1" method="post"> <cftree name="mytree" format="html"> <cftreeitem display="cust_name" value="cust_name" query="entries" queryasroot="no" expand="no"> </cftree><cfinput type="text" name="display" bind="{mytree.selectedNode.getProperty('cust_name').value}"> </cfform>I get an error:Error parsing bind expression at character 0:{ in {mytree.selectedNode.getProperty('cust_name').value}Is there anything I am missing ?Thanks
I am not an Ajax / JSON guy (yet). I am trying to find a solution for a problem I walked into (new client) and they are upgrading from 8 to 10. the cfgrid works okay in cf8, but fails to update in cf10.Right now, about all I have to go on is the console output, to whit:Exception: ColdFusion.Grid is undefined File: http://localhost:8500/billing/index.cfm?do=c.maintTable Line: 100 Column: 0Warning: Selector expected. Ruleset ignored due to bad selector. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 10 Column: 2Warning: Selector expected. Ruleset ignored due to bad selector. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 12 Column: 2Warning: Unknown property '-moz-opacity'. Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 21 Column: 18Warning: Error in parsing value for 'filter'. Declaration dropped. File: http://localhost:8500
I know Coldfusion doesn't officially support Apache 2.4 yet or at least I haven't found any documentation saying it does, but was wondering if it can. Has anyone successfully gotten CF8 or any other version successfully working with Apache 2.4 using the connector? Currently I'm having to support an app where we have linux Apache 2.2 servers sending traffic to CF8 servers on Win2K3. Since we're using mod_jrun22 for the connector I doubt it would work with 2.4. Security is requesting we upgrade to the latest version of Apache if possible so I'm investigating the feasibility of this since CF8 is so old. Push come to shove we'll go to the latest of 2.2, but they really want 2.4. Any info is appreciated.
Ideally I would like to download ColdFusion 8 Developer, but I'd settle for 10 if that's all we can get. But all of the links to download ColdFusion give a 404 page. Help?
I installed CF10 Server onto a VPS. it only has 2 GB RAM and I intend to upgrade that tomorrow, but nevertheless, CF10 is acting very strange -- or maybe it's just my programs. These programs have been running for many years, but I just moved them to this new server, so that could be half the problem.Anyway, the problems. I can visit the site and get error "A". Hit Ctrl-R and I'll get error "B". Or maybe error "A" again. Or maybe this time the site will come up. I can click the menus and move around, and then I'll get error "A again. Or "B". No rhyme or reason. Sometimes the query will time out. All over the board.I Have Not Applied Any Updates. I just bought this -- do you need to apply updates to a new purchase (downloaded from Adobe, applied license)? While I have run CF servers since 1996, they've always been on managed platforms where I didn't have to worry about updates, or they've been local dev copies where the usage was minimal a
I am a ColdFusion user since version 3 (building web site with cfml).I do not know anything about the ColdFusion product itself.I am now wondering why new tags needs to access CFIDE directorywhich is the CF administrator directory ?I feel that engine and administration have been mixed up in same directory.Is there a reason ?I think about last CF vulnerability and hacking, afraid this mixup grows the vulnerability ?My question may be totally out, as I do not know about CF product architecture.Thanks for any clarification.Pierre.
Hi,I recently did an upgrade from a perfectly working 9.0.0 installation of enterprise edition ColdFusion, to version 9.0.2 with CHF1. And with this, some cfm pages that used to work earlier in 9.0.0 are broken. I realised that it is breaking on pages that have cflayout type = "tab", so assume its something to do with tabs in the pages.The error displayed when visiting such pages:36 : <cflayout type="tab" name="mytabs" tabHeight="650">37 : <cflayoutarea title="someName" name="Tab1" >38 : <cfinclude template="someFile.cfm" />39 : </cflayoutarea>Please let me know what is causing the issue, and where I can look at to have my tabbed pages display properly in version 9.0.2. Note - 1. these used to be perfectly fine in 9.0.02. pages without tabs are all working fine. no issues here. even graphs are loading fine.Thanks!
Security vulnerablity exists within CF administrator log in page (/CFIDE/administrator/login.cfm) HTML form. Does anyone know how to apply a solution or work-around? Web site security scanning reports the CF adminstrator log in page uses <input> password field autocomplete=on (default). Solution is to edit web page form appending attribute "autocomplete=off". But since the entire CFIDE directory uses ColdFusion's encryption, page is not editable. A week ago (1/8/14), at Adobe's telephone customer support direction, I submitted a request for help to Adobe's support site (bugbase.adobe.com). Requests to this site go into the ether ("not externally visible"). No response whatever has been provided. The basic fix is for Adobe to send or provide an updated web page. Problem is a site security issue.
Has anyone ever been able to use the CFLDAP tag to connect to a secure LDAP Service without putting the username and password in clear text in the source code? For example:<cfldap action = "query" server = "myserver.com" attributes = "*" start = "dc=myserver,dc=com" name = "results" secure = "CFSSL_BASIC" username = "MyUserName" password = "MyPa$$w0rD">I was wondering if using a Web Service Account (which would be granted access to the LDAP Service) would be able to run the code without putting the username and password in clear text as shown above? Has anyone tested this out before or have any further information on it?Thanks for any insights you can give.
I used the cftextarea to get the FCK editor, like :<cftextarea name="txt_h_1" message="Insérer le texte d'Accueil !" height="400" width="700" disabled="No" required="Yes" toolbaronfocus="No" bindonload="No" html="No" enabled="Yes" visible="Yes" richtext="Yes" toolbar="Basic" skin="silver">#get_param.txt_home_1#</cftextarea>So the name of the element is : TXT_H_1Ans when I want to save the content via an update query, it says that :Element TXT_H_1 is undefined in FORMAll other FORM elements are well returned.then how to get the value of the cftextarea ?(I used a CFFORM with <input> inside instead of <cfinput>)thanks for answer.Pierre.
Does Adobe support installing Coldfusion 10 on a Virtual Server(VMWare) ???I check the documentation and could not find any statment that mention that they support it.
Alright, serializeJSON isn't creating pretty enough JSON for me to use with jQuery.So I decided to build it myself.Here is my code:<cffunction name="getActions" output="false" access="remote" returnformat="JSON"> <cfquery name="Actions"> SELECT * FROM Actions </cfquery> <cfset ActionsList = '{"success" : "true"}, {"Actions" : ['> <cfloop query="Actions"> <cfset ActionsList = ActionsList & '{ "ID" : "' & ID & '", "Name" : "' & Name & '"},'> </cfloop> <cfset ActionsList = ActionsList & ']}'> <cfreturn ActionsList> </cffunction>So basically I send an AJAX Asynchronous call with jQuery to the cfc that contains this code.jQuery kept telling me the JSON was bad.So I output what Coldfusion was sending back to the browser.
Has ant one experienced cftextarea not displaying tool bar in ie 10. Thanks in advance.
Hello,I'm trying to invoke the adminapi component, but when I do it overwrites my getauthuser() and logs me out of my application.How can i invoke the .login and user my existing cflogin credentials?I was hoping something as follows would work, but no luck.adminObj = createObject("component","cfide.adminapi.administrator").login(getauthuser());Does this mean I can only use this component outside of an application?Any help is appreciated.Thanks
Hi,I am trying to install the CF 10 Mandatory Update on my Mac OS X (Mountain Lion). I've tried it in standard mode, and GUI mode. It simply doesn't work. The install application launches, and in GUI mode the splash screen pops up, but the progress bar does not move.The commands I've tried:java -jar /Applications/ColdFusion10/cfusion/hf-updates/cf10_mdt_updt.jarjava -jar /Applications/ColdFusion10/cfusion/hf-updates/cf10_mdt_updt.jar -i GUIAny ideas?Thanks.
I am a newer programmer and I am not sure I would translate this into code..If the time is between 21-30 days, the cost is $50. If it is more than 30 days, there is an additional charge of $34 for each additional month. 31-60 days would calculate at 84, 61-90 days would calculate at 118 and so on. Thanks!
I have been running CF8. I stopped all CF8-related services, set them to manual, then installed CF10 with Developer option.Slow as molasses. Even getting the Administrator screen up takes 5 minutes or better. The pictures are X's, apps won't run as either port 80 or port 8500 ("The connection was refused when attempting to contact localhost:8500"), windows 7, reasonably new hardware.This is on my desktop. What odd is I did this exact same thing on a client laptop I use when I work on their project, and it all works wonderfully well.Going to uninstall/reinstall to see if I did something wrong during the first install.Suggestions welcomed.
Hi all,I'm at about my wits end on this...I can submit a row from a query set in cfgrid if I set it to format=html and it works just fine. However, with that format, I cannot sort columns which is necessary. So, I set format=flash and the formatting works great, but I cannot submit a row for processing. I've searched Google, Google Groups, Adobe, everyplace to no avail. Plenty of "Working" solutions, but none work for me. Below is the latest attempt:<cfform name="logForm"> <cfgrid name="propOppGrid" height="500" selectmode="row" autowidth="true" format="flash" query = "session.allDefects" onchange="getUrl('cqStatus_s1.cfm?CFGRIDKEY='+propOppGrid.selectedItem.id, '_blank'); ">The query does indeed have a row called "ID" and it does display properly in the grid itself. When I submit the form (which does indeed open up a new window ('_blank'), I get the following on my url and a blank page is displayed."cqStatus_s1.cf
I had a site on one server that I am moving to a new server. I copied the files and database and created a new DSN. I ran a simple query on a test page prior to moving the site, it was a one page site at that time. I was able to connect to the database.Now I have a relatively simple application file. I changed the name of the data souce in the file, but prior to that I made the mistake of opening a page on the site. The old data souce is A, the new data source is B. The application.cfc clearly (now) says B, but I get an error on every page saying it can't find A. I did a search of the entire site and nowhere in any file does it list data source A.Here is the application file.<cfcomponent output="false"> <!--- Name the application. ---> <cfset this.name="SomeName"> <!--- Turn on session management. ---> <cfset this.sessionManagement=true> <cffunction name="onApplicationS
java.lang.NullPointerException at java.util.Hashtable.put(Unknown Source) at coldfusion.runtime.SecurityScopeTracker.setSecurity(SecurityScopeTracker.java:235) at coldfusion.runtime.SecurityScopeTracker.getSecurity(SecurityScopeTracker.java:124) at coldfusion.runtime.SecurityScopeTracker.getSecurityTableFromSession(SecurityScopeTracker.java:349) at coldfusion.security.UserUtils.getAuthMap(UserUtils.java:164) at coldfusion.security.UserUtils.cflogin_GetAuthUser(UserUtils.java:146) at coldfusion.security.UserUtils.getAuthUser(UserUtils.java:37) at coldfusion.runtime.CFPage.GetAuthUser(CFPage.java:1053) at coldfusion.runtime.CFPage.IsUserLoggedIn(CFPage.java:1011) at I get random errors saying isuserloggedin null as you can see? what is causing this i didn't know that could be null? is it like a bug? i have used this code for about 3 years now and only since we move dup to coldfusion 10 have i seen this but all it does is this <cfif IsUserLoggedIn()><cfelse>
So, this is an issue we've been dealing with indefinitely. CF10 on a Win2008 environment just stops working. I remote into the server, the ColdFusion services are using 0% CPU, usually eating about 600-850MB of memory, and no pages are being delivered. Simply a white page. Browser (Chrome 30) times out eventually reporting an 'ERR_UNEXPECTED' error.Restarting World Wide Web Service has no effect. Restarting IIS sites/server (nodes) has no effect. ONLY restarting the ColdFusion Application Server service results in services getting restored. And it takes normal amount of time to STOP the service, but starting it up takes a long time (though it eventually starts, and ColdFusion is rendered again)I don't have troubleshooting skills necessary to know what log files to watch or a background in networking know-how, but I'd really love to start taking steps to finding out what the heck is doing this. So if you guys can suggest any steps, I'll gl
HiI have some problem with cfcookie.No where CFCOOKIE tag or javascript fns are used to create a cookie from the code. But cookies are created and stored in the local system once logged into appln. By default expire value displayed for the cookie file is 30yrs from now I.e., 1/5/2044.please suggest me some solution to delete the cookie file from client machine on session time out or browser close.Q : How can we delete CFID and CFTOKEN values from cookie file stored on client machine?Please let me know ASAP. Detaiils of my cfapplication tag<cfapplication name="xxxxxx" clientmanagement="yes" setclientcookies="yes" scriptprotect="all" clientstorage="Cookie">Thanks in advancekalyani.
Hello,I installed CF 9.0.2 and installed cumulative hotfix 1. This took the update level to "chf9020001". Is this the latest possible revision of CF 9.x series, or does ColdFusion have any update over CF9.0.2 and CF1 update level? Also, I believe after CF9.0.2, the next version is CF10.x - correct me if I am wrong. Thanks!-- arun
I would like to insert the firstname of a client within paragrapgFormat(). ie: paragraphFormat(Hi #firstname#, your info......) When I output this the firstname just shows as #firstname#. Is there a way to get his to work?
Hello,I am currently running ColdFusion 9.0.1 enterprise edition, and plan to upgrade to 9.0.2 version. I understand that this requires uninstallation of existing 9.0.1 and performing a fresh install of 9.0.2 version. My concerns are below:1. For installing 9.0.2, the 9.0.2 installer (demo/ trial version) needs to be downloaded and the existing serial number (used in 9.0.1) can be given during installation to convert this into the fully registered mode - Please correct me if my understanding is incorrect here. My question is will the existing serial key (as displayed in the CF Admin page of 9.0.1 version) work with the 9.0.2 version as well?2. There are lots of configurations that are present in the existing 9.0.1 version - for instance the data sources configured in CF Admin page. Is there a way I can save such configurations from the existing version, and migrate the settings over to the new 9.0.2 install, or do I need to do the entire configuration manually after doing the new insta
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.