Questions
Als letztes aktiv
Hi fellows,Anyone know where I find the CF10 tags extension to Dreamweaver CS 5.5?I saw in the forum the guys talking about the cf10dreamweaverextensions.mxp to make the download, but I dont found.Where I make the download for this extensions?ThanksFabiano Magno Pechibella
Greetings,Recently, I heard that ColdFusion 9's projected End-of-Life is the end of this calendar year.http://www.adobe.com/support/products/enterprise/eol/eol_matrix.htmlProduct nameVersionBuildGeneral availabilityEnd of core supportEnd of extended supportAdobe ColdFusion9.x 10/5/200912/31/201412/31/2016Since ColdFusion 11 Enterprise became available this week, are there any plans to begin offering the ACE certification for ColdFusion in a higher version than 9?I don't see the point in getting certified for CF9 since it's in the process of being sunset.
I am runing the follow code in CF9 without any issue; I have issue runing the same code in CF10<cftry> <cfinvoke webservice="http://www.webservicex.net/CurrencyConvertor.asmx?WSDL" method="ConversionRate" returnVariable="ToCurrencyValue" > <cfinvokeargument name="FromCurrency" value="USD" /> <cfinvokeargument name="ToCurrency" value="EUR" /> </cfinvoke> <cfcatch type="any"> <cfset UpdateExchangeRate = "NOINTERNET"> </cfcatch></cftry>I added the following code - and it is working in one of my CF10 environment but I get WSDL access error when trying in a new CF10.<cfset args = {refreshWSDL=true, wsversion=1}><cfset local.service = createObject("webservice" , "http://www.webservicex.net/CurrencyConvertor.asmx?WSDL"  
I have installed CF10 on an Amazon AWS Windows 2012 instance. No matter what I use for the admin console password during setup, the password is not recognized when setup is complete and I try to log into the admin console. I've uninstalled and reinstalled four times trying simple as well as complex password with no luck.
Has anyone had any memory or security issues when using cfpdfform and cfpdfformparam?
Hi guys,I am coding a web application using ColdFusion 8.The situation is as follow:- I type https://mypage.com/aaa/bbb.html on web browser where aaa and bbb.html does not exist in my web folder.- And this will drive the error 404 PageNotFound occurred, in the code that processing error 404, I tried to get URL aaa/bbb.html by using GetPageContext().getRequest().getRequestURI() but the result of this command is my created 404 error page.- I also tried to get URL by using CGI, but also couldn't get it. Can you guys show me the way to get URL when no page is found error occurred?Thank you very much in advanced!
I have connected directly to my network with the Ethernet cable and still lose connection. What do I need to do at this point?
Are Linux servers also vulnerable to apsb 11-14? Only Windows, Mac's, and UNIX systems are listed in the alert. We are running CF 9.0
How can I subscribe to *ONLY* coldfusion security bulletins. Preferably CF9 only.thanks,jbee
Hi,Has anybody implemented/worked with FedEx web services in CF? I'm looking for sample CF code consuming FedEx web services (v 7), such as get rates info, get rate services, etc.Many thanks in advance.
I have an application that I have built that scans in a drivers license and OCR's the data, archives the image etc. I have the coldfusion page set up so it refreshes every couple of seconds. When the ID is scanned with the scanner and the query row is generated I output all of the scanned data and image to the page. Everything is working great with all that. I have a small little issue though.Since the initial page is refreshing every few seconds waiting for the scan to happen that means that the drop down nav links in the header are refreshing too. There is a reports menu in the navigation that has around 10 links in a drop down for different types of reports. If someone drops it down and is taking time looking at the report names the page will refresh and the menu closes. Once the ID is scanned it no longer refreshes every couple of seconds, I disable it. So its only an issue until the ID is scanned.Any ideas for a way to refresh the page looking for a query recordcount to be >= 1
Hi, Our server recently had a migration. The previous server contained cf7 and new one has cf10. After the migration, one of our application using cfform format flash is not working now. A 'mxml.cfswf' file seems to be not rendering correctly while inspecting the console. Is there any prerequisite for the cfform flash to get worked in cf 10?Any help is appreciated.
Thanks in advance ... if anyone could point me in the right direction for this issue I would appreciate it....I set up the CFIDE virtual directory as per the lockdown guide for CF 9.0.2. Every website works except I have a path issue with one file... see below.... it throws a 404 error:in administrator I have the default ScriptSrc dir set to /cf-scripts/I have a virtual directory in the websites in IIS 7.5 named cf-scripts mapped to /CFIDE/scripts/All the scripts come up correctly except mapiconmaker.js .... somehow the path to this file is drawing out incorrectly and causing the 404.error<script type="text/javascript" src="/cf-scripts/ajax/messages/cfmessage.js"></script><script type="text/javascript" src="/cf-scripts/ajax/package/cfajax.js"></script><script type="text/javascript" src="/cf-scripts/ajax/yui/animation/animation-min.js"></script><script type="text/javascript" src="/cf-scripts/ajax/ext/adapter/yui/ext-yui-adapter.js"></script&g
I've been storing all the required CFCs for a site in the application scope. During onApplicationStart I do something like this application.objSomeCfc =CreateObject('component', 'com.someCfc').init(). Here is my reasoning. Get the CFCs initialized once and stored in memory for better performance. Using CreateObject several times on each page load can have a negative impact on performance. Having one place to create application scoped CFCs makes it easier to manage code. So is my thinking flawed? Are there any additional pros or cons for dealing with CFCs? Is there any docs, articles, blogs, videos, frameworks, ...... that I should check that may change my perspective on how I'm doing this?Thanks
I have a table that display some question,But some may have 4 or 5 question.Here is my code. <cfloop index="i" from="1" to="5"> <cfset question = GetEmployeeCSEDepts["csedept_question" & i][GetEmployeeCSEDepts.CurrentRow]> <tr> <td valign="top"> <select name="sltRating#i#" size="1">  
In previous versions of CF(Solaris and now Linux) we have been using an odbc-jdbc bridge to talk to ODBC data sources on Windows. This is no longer working with our EasySoft jdbc-odbc bridge on CF10. I am looking for solutions that dont involved dumping the data into something other than MSAccess. Direct access to the Access db file on Linux? a different odbc-jdbc driver that can connect remotely. Anything!!! Has anyone out there been able to do this???-Keith Alston
I've been googling about how to work with Application.cfc since last week but I still have some questions and I can't find the answers.My application is under the root (in unix) and there are many subfolders underneath it. Each sub-folder is hosting a different web application.From what I read, I can create 1 root Application.cfc and then on subsequent sub-folder, when I need to have another Application.cfc on that level, I can create ProxyApplication (see below) and then create a sub-folder level Applicatin.cfcSo, when I set an application.DSN on my root Application.cfc, using proxyApplication I don't have to reset this dsn again in my sub folder level Application.cfcSince my loginform.cfm and loginaction.cfm is right under root directory too, I also set OnsessionStart in the root Application.cfc to handle user login. Then this means, I don't have to reset session variable again anywhere because session.username, etc has been set on the highest level.Is this correct?In addition,
I could very well be blind but looking across the docs and the internet I'm not seeing much spoken on trying to include foreign key fields in an ormSearch() query.For example what if I was searching for people within a company and I knew their companyID? How would I best go about doing this?My best guess is the following but doesn't seem to return the results I wanted. Yes, the foreign key field in my cfc is set to indexable=true.<cfset result = ormSearch('lastname:#lastname#' AND companyID:#companyID#','Person') />Any help is appreciated!
I am getting the below error message while registring the CFX tags. I am using Windows 2008 R2 datacenter With Service Pack1. After clicking on REgister C++ tags button I am getting below error message."You must configure your application server to enable native CFX support. For instructions, see "Configuring ColdFusion" in the "Configuring and Administering ColdFusion" book for your application server. "
Hi, I have been programming in CF for 10 years. I set up my umteenth database (copied an exsiting one) and connected the datasource. I received this error: coldfusion.sql.DataSourcePermission right off the bat. All permissions are IDENTICAL to ones running to other data sources and this datasource is connected and verfied in the CF admin. I'm frustrated because there is virtually nothing on the web (apparently nobody likes this language) and there is no apparent reason for this. I'm running Win 2008R2 64 bit on a Rackspace cloud server. I have 4 datasources that work. I don't see any connection limits in SQL Mgr....Running CF 9.0.0 HELP!!!Michael
Hi there,Does anyone know if I will need extra coldfusion licenses if I were to setup a hot-standby backup for my servers ?The servers are virtual machines, built on vmware platform, and we are setting up redundant environment off-site which will act as a backup should the primary environment goes down catasthropically.What I am considering for is hot-standbys, which means the backup environment is running, almost fully configured and it is almost identical with the original because there will be data sync continuously running. So I am not currently looking at uninstalling / downgrading the CF licenses in the backup environment since not sure if that is even possible / won't mess the data sync up.Thanksoxotpr
Hi,I'm getting a list of areas, a city and a state thru binding when type the zip code. These data I get from a remote websevice and I have problems when do the binding because is simultaneously in cfselect areas, cfselect city and cfselect state. The error is time out some times and it could be happen in only one field or two.I inserted diferent delays (sleep(5000)) before execute every bind and it works better but not to 100%. It ocationaly displays too the time out.I don't know if there are an option to execute the binding secuentially and not simultaneously.This is my code:Zip code <cfinput type="text" name="zipcode" message="Capture el código postal a 5 digitos" validate="integer" required="yes" class="textbox" id="zipcode" tabindex="7" value="" size="7" maxlength="5" typeahead="no">Area <cfselect enabled="No" name="Colonia" class="textbox" tabindex="11" required="yes" multiple="no" selected="12"  
Hello, everyone.I'm sure this is going to be super-easy for someone to answer. I think I've seen the correct answer, before, and I am just not recalling it.I've tried Googling it; finding a lot of stuff, but not the answer to my question.In application.cfc, for this.mapping[], how do I indicate a directory one level "up" from current using GetDirectoryFromPath(GetTemplatePath())?I've got a project in a main folder that contains an admin folder, each with their own application.cfc. But admin is using components in the main folder, not it's own.Components are in C:\ColdFusion10\cfusion\wwwroot\project\components\ and the admin is in C:\ColdFusion10\cfusion\wwwroot\project\admin\ V/r,^_^
I've installed CF9 (because it matches what my host uses) on my ubuntu14.04 machine, along with Apache web server and MySQL.I know Apache works because HTML (and PHP) pages get served up fine. MySQL and phpmyadmin both come up fine.ColdFusion starts and runs:Starting ColdFusion 9...The ColdFusion 9 server is starting up and will be available shortly.======================================================================ColdFusion 9 has been started.ColdFusion 9 will write logs to /var/www/html/cfusion/logs/cfserver.log======================================================================But when I view a CFM page I just see raw code.What have I done wrong?
Hi , I want to map ORM CFC with 1-m and m-1, i have 3 table like:blogPost [blogpostid] ,[title] ,[summary] ,[body] ,[dateposted] ,[createdDateTime] ,[modifiedDateTime] ,[deleted]blogCategory [blogCategoryid] ,[name]BlogPostCategory [blogpostid] ,[blogCategoryid]blogPost ->BlogPostCategoryy (1-m)blogCategory->BlogPostCategory (1-m)BlogPostCategory->blogPost , BlogPostCategory->blogCategory(m-1)Please tell me the step to craete it (By directly using this 3 tables)When i try to create it i got the error like i attach snapshot:Code could not be generated structDetailIf the component
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
Sie haben bereits einen Account? Anmelden
Noch kein Konto? Konto erstellen
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.