『アドビコミュニティフォーラム』に質問/トピックを投稿する方法
The official community for ColdFusion.
新着順
In theese days i receive a intrusion trought this directory. my antivirus says the a virus is present in this dir and remove it.i try to lock and disable CFIDE from external ip and domain.how i can lock this type of attack ?all patch are inserted until 8/03 on CF 9.0.1thanks a lot
Hi! I'm new at this, so forgive me if this is a silly question.I have installed ColdFusion 10 and ColdFusion Builder 2 Update 1. I have a whole lot of files residing in various folders that I have copied onto our development server where ColdFusion resides, and need to import them to a project or create a new project with them so I can edit them in the ColdFusion Builder (did I say that right?)The problem is, when I import or start a new project, all the files do not come over. When I add it using a linked folder, and try to run the index.cfm page, I get "Selected file is not in the document root of the server. If the project is not in the document root, created a linked folder to the document root (selecting Project Properties > ColdFusion Project).I believe I have already created a linked folder by going to linked folders for the project. I can see all my files and folders on the left. When I go to this dialog area, I see my linked folder, but I
I need to update my SQL database at the end of each day for certain records.The time needs to be 9:00 PM each day (dont worry about time differences)So for today I need to insert '2013-06-21 21:00:00' into the db.So I wantd to set the time before I inserted it.How do I do that?<CFSET mytime = ?>How do I get 9:00 PM each day?
Hi,I have the query results and try to dump it into csv or txt file but have troubled with data because lot of stuffs from description field. Excel is the only solution but when i click on the excel link and click OK button, i got this message below"the file you are trying to open, excelReport.xls is in a different format than specified by the file extension ......"After clicking on Yes the file opens properly, but i don't want this msg to appear.i have MX Excel 10 and coldusion 7, is there the way to get rid of message?<cfcontent type="application/msexcel"><cfheader name="Content-Disposition" value="filename=BrightIdea.xls"><cfloop query="variables.qReport">....</cfloop>Thanks
Hi All,I am trying to install either ColdFusion 9 (which is where company is using) or 10 (if I can't have 9) on my Mac 10.8.6. When I click on the dmg file, it shows a running bar and once it's completed, i see a standard installation box (the one you click "agree" "nect" etc...) except there is nothing showing on the box. There is a blue "next" button but I can't click on it. This happens to both ColdFusion 9 and 10 installation. With 9 though, I get a centaur_err file. This is very urgent as I cannot work without ColdFusion. I would really appreciate your suggestions.Thank you,Jennfer
Windows workflow foundation is a technology that provides an in-process workflow engine, and a rehostable designer to implement long-running processes as workflows within .NET applications. If there an answer to this in Coldfusion?
I 'm running CF 9.0.2 on a Win 2008 R2 server. I recently installed the hotfix for APSB13-13, which seemed to go fine. The next day I can no longer get into the CF Admin site, though the other pages continue to work. The error message reads:HTTP Error 500.0 - coldfusion.server.SecurityService.removeAuthenticated()VThe page cannot be displayed because an internal server error has occurred.I have tried to back out the hotfix and even recover from backed up CFIDE and CF9 diretories but the error remains. Aside from a full re-install, anyone got any ideas what I shoudl try next?Thanks.
Hi, we are looking to upgrade to ColdFusion 10 soon and would like to know if serving JSP pages is still an Enterprise-only feature or if the Standard edition does so now as well. Thanks!
I'm working on Cold Fusion 8 which is located on local network(Ms Windows Server 2003 R2) on my work place. I am using Dreamweaver CS6 for creating "cfm" files and connected to the local server by creating a new site and mentioning local IP and all other details.My cold fusion files are running fine. I tested it. I have another IP where MS Windows Server 2003 is installed and MySQL 5.5 is installed there. What I'm trying to do ?I'm trying to run some SQL queries using "cfquery" tag of cold fusion. For this I will need to see the list of "datasources" which are present in the "Adobe 8 Coldfusion Administrator". But I'm unale to figure it out how would I be able to see the list of all the data sources in the Database panel of Dreamweaver? I need to have this list otherwise I think I won't be able to retrieve data from the database and run SQL queries. Please let me know if someone knows any way out.Thanks
If I upgrade from 8 to 10, do I need to make the upgrade install of can I just plug in the license key on top of the trial version we are testing?
Hi,I have requirement such that on server there some files for example: text20101231, text20111231, text20121231 and text (Note: Current year file does not have any suffix in its name i.e. text is current year file).Now in UI user can select 2 dates: From Date and To Date.According to the selected date files should read in my code.For ex: if user selects From Date: 6/13/2011 and To Date: 11/31/2012 from the calender then my code should read only text20111231 and text20121231 two files.I will also check if year in To Date is equal to current year it will read the file in which it does not have any suffix in its name.Kindly suggest how to read the concerned files based upon the date selection.Thank you.
I have a file name as below :2009 Master Calendar (4.2.09).xlsNow how to use list funtions ie.listfirst or listlast to display the file name alone without the file ext. ie,.2009 Master Calendar (4.2.09)
Hello;I have a problem with the security issue CVE-2002-0894 and CVE-2000-0681.We use CF 8.01 enterprise under windows server 2003 with IIS 6.0 Webserver.Our internal scans find an issue ServletExec 4.1 / JRUN ISAPI Multiple DoS.Description: By sending an overly long request for a .jsp file, it is possible to crash the remote web server. &#8232;&#8232;This problem is known as the ServletExec / JRun ISAPI DoS. Download patch #9 from ftp://ftp.newatlanta.com/public/4_1/patches/ See Also&#8232;http://www.westpoint.ltd.uk/advisories/wp-02-0006.txt No more infos.-------------------------------------------------------------------------------------------------But I can't find on the Adobe Websites or in in the CVE Database a direct link to Coldfusion or Adobe patches (ApsB xxx). No info, how to fix the finding or install the patch under cold fusion.Has anybody experiences with this topic CVE-2002-0894 and CVE-2000-0681 under coldfusion or could give me an advisory. thank's fran
I want to select "currentrow" as part of my query - I know I can loop over queries and get the "currentRow" variable, but I'm doing a QoQ before I use the rows and I want to keep the original rows, e.g.//Original query 1, Audi 2, BMW 3, Skoda //QoQ 1, Audi 3, SkodaThis is the code I've got:q = new Query( datasource = application.db.comcar ); q.setSQL(' SELECT make, @rownum := @rownum +1 AS `rownumber` FROM cars, ( SELECT @rownum :=0 ) LIMIT 10 '); r = q.execute().getResult();But it's throwing the following error:Parameter '=' not found in the list of parameters specified SQL: SELECT make, @rownum := @rownum + 1 AS `rownumber` FROM cars, ( SELECT @rownum :=0 ) LIMIT 10This will work in "cfquery" but I'd like to use it in CFScript. Is there an alternative to using ":=" or some way of escaping this in the query.- Originally posted on Stack Overlfow: http://stackoverflow.com/questions/17191530/coldfusion-cfscript-query-with-mysql-assignment-operator
This question was posted in response to the following article: http://help.adobe.com/en_US/ColdFusion/10.0/CFMLRef/WSc3ff6d0ea77859461172e0811cbec22c24-7f5c.html
Built-in tomcat to Coldfusion 10 is at version 7.0.23 while the current version of Tomcat is 7.0.41. Is there any current plans on updating the current built-in tomcat or do we need to ditch the built-in for the independent? If I have to switch to independent what exactly breaks?
Hello all!There are an abundance of posts in regards to storing the Client Session data in the Windows Registry. http://forums.adobe.com/message/4302560 being the most related to my issue. (http://www.carehart.org/blog/client/index.cfm/2006/10/4/bots_and_spiders_and_poor_CF_performance has been a handy article as well.) However, none of them seem to behave the way mine does after ColdFusion and the application are told not to store values there. I updated my configurations, restarted the Cold Fusion services, delete the old session data via "reg DELETE HKEY_LOCAL_MACHINE\SOFTWARE\Macromedia\ColdFusion\CurrentVersion\Clients", and confirm that everything is deleted. However, after I restart the server and check that place in my registry, there's still several GB of data in there that references sessions months old. What repopulates this? I deleted all of it, why does it come back? Anyone able to tell me what I'm not doing correctly?T
I have been using Flashbuilder and Coldfusionbuilder for the last few years and it has worked well. Now I am searching for the best software to create simular data centric sites for the iPad. Flashbuilder / Coldfusion Builder have the plumbing built in to attach data to charts, graphs tables etc. So far with all of the Creative Cloud stuff it seems to be for making pretty - no plumbing built in to connnect to backend database (MSSQL).NOW that my blood pressure is coming down from the data plumbing being yanked from Dreamweaver. I am not so sure it was headed for adding data plumbing for Coldfusion Components. Is there any of the Adobe CC software that is designed for database plumbing to MSSQL or should I be updating my Visual Studio????
I added a second CF instance to the CF9 server. It runs fine, but does not 'survive' a server restart. A manual restart via the jRun Launcher does not always work properly; it often takes several attempts to start the 2nd instance/jRun server. A start via the Instance Manager of the primary CFAdmin screen usually works.How do I configure the 2nd instance to automatically restart on server reboot. Is there a way to set the 2nd instance as a Service?THanks...Rick...
Hello,I have the following function:<cffunction name="stripHREFs" access="public" returntype="array" output="no" hint="seperate Links from given HTML string, output as a array"> <cfargument name="html" required="yes"> <cfset local.startpos = 1> <cfset local.list = ArrayNew(1)> <cfloop condition="local.startpos GREATER THAN 0"> <cfset local.linkpos = reFindNoCase('<a\b[^>]*>(.*?)</a>',arguments.html,local.startpos,'true')> <cfif val(local.linkpos.len[1])> <cfset local.startpos = local.linkpos.len[1]+local.linkpos.pos[1]> <cfset local.string = mid(arguments.html,local.linkpos.pos[1],local.linkpos.len[1])> <cfset local.hrefpos
How do I configure my ColdFusion 10 Administrator to use a proxy server to get out to the internet? I am running Ubuntu 12.04 LTS.Thank you!
Can i downgrade CF10 to CF9
Hi,I need to generate a detached PKCS #7 signature of a file using a private key. How can this be done with ColdFusion?ThanksJürgen
Hi,I created one Directory watcher through admin and I found that it is executing more than once. Is there anything that I am missing?The configuration file is as below ## DirectoryWatcherGateway configuration file# # The directory you want to watch. If you are entering a Windows path# either use forward slashes (C:/mydir) or escape the back slashes (C:\\mydir).directory=D:\\Balu\\changes\\9786\\Codeset\\OpportunityDirectoryWatcher\\FTPFolder # Should we watch the directory and all subdirectories too# Default is no. Set to 'yes' to do the recursion.recurse=no # The interval between checks, in miliseconds # Default is 60 seconds# interval=180 # The comma separated list of extensions to match.# Default is * - all filesextensions=* # CFC Function for file Change events# Default is onChange, set to nothing if you don't want to see these eventschangeFunction=onChange # CFC Function for file Add events# Default is onAdd, set to nothing if you don't want to see these eventsaddFunc
I'm using an old version of farcry as a cms. It's been working fine ut now i can't get in to update and i get this message:[Macromedia][SQLServer JDBC Driver][SQLServer]Could not allocate space for object 'DBO.fqAudit' in database 'revelat_reg_farcry3' because the 'PRIMARY' filegroup is full. Create disk space by deleting unneeded files, dropping objects in the filegroup, adding additional files to the filegroup, or setting autogrowth on for existing files in the filegroup. Happy to delete or extend my volume data limit but don't know how...What do i do...i'm desperate...Richard
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.