Questions
Als letztes aktiv
I have inherited a website which I am currently migrating to CF11 from CF8.The issue I am having is with xforms. The website is using NimoiXForms. I have setup all the mappings in ColdFusion Administrator, so it looks to be a code error. I know its old but does anyone know if its compatible with CF11 or can point me in the right direction. Here is the error:Error Occurred While Processing RequestAn error occurred while Transforming an XML document. Cannot create an attribute node (iteration) whose parent is a document node. Most recent element start tag was output at line 127 of module The error occurred in D:/xFormsRoot/xtrasXForms/Questionnaires/XtrasNimoixForms/NimoiXFormsEditor.cfm: line 168166 : <!--- [0<cfdump var="#xFormXML#" expand="no">] --->167 : <cflock timeout="60" throwontimeout="Yes" name="#sThisDir##sUserFilename#Temp" type="READONLY">168 : <CFSET sBoundForm = XmlTransform(xFormXML, XSLTValidationIntoFormMerge)> 169 : </cflock>1
I have a question regarding CF10, CFMAIL and JVM settings.We have dedicate CF server with 16GB memory that acts as a feeder to PowerMTA (SMTP).There is nothing else on the server - CF10 ENT only. We send CFMAIL in a loop to app. 100,000 with content size of app. 25K. We are spooling the mail to memory.I was wondering what the best JVM settings would be for this config.With 16GB - what settings would you recommend?-Xms1024m -Xmx1024m-XX:PermSize=1024m -XX:MaxPermSize=2048mAlso, any garbage collection settings you would add to ensure no Out Of Memory errors?
Use this thread to share your feedback about ColdFusion 11 Update 5 early access build that is being made available for testing. You can find more details in this blog post:ColdFusion 11 Update 5 prerelease build now available — Adobe ColdFusion Blog
Use this thread to share your feedback about ColdFusion 10 Update 16 early access build. Refer the following blog post for more details:http://blogs.coldfusion.com/post.cfm/coldfusion-10-update-16-prerelease-build-available
I have a web service that I have working on our dev and test servers. Now I'm trying to deploy it to production. We have an external prod server in a DMZ that calls the web service on our internal prod server. We only have port 443 open in the firewall between these two servers (not port 80). I am able to do a <cfhttp> call to the WSDL over 443 and get back the xml. I've even able to pass the method and parameters through the <cfhttp> call and get back the result I'm looking for:<cfhttp method="get" url="https://app-int.phs.psu.edu/standard/date_function.cfc?WSDL&method=getNthDayOfMonth&dtMonth=#Now()#&intDayOfWeek=1&intNth=4"><cfdump var="#cfhttp#">However, if I make the web service call using <cfinvoke> I get the following error:<cfinvoke webservice="https://app-int.phs.psu.edu/standard/date_function.cfc?WSDL" method="getNthDayOfMonth" returnvariable="dtMaintenance"> <cfinvoke
Hello All,I wanted to see if someone can help me with an update query. I need to grab a latitude & longitude from a the same user that is in two accounts. therefore i am trying to update lat/long in a users table for one account based off of the same user in another account. I am matching the users up by phone number and last name. I tried a subquery but am having difficulty. I was thinking of something like the following:update usersset lat = getlat, long = getlonginner join (select lat as getlat, long as get long from users where account_id = '1')on phone = phone and last name = lastnamewhere account_id = '2' and lat IS NULL and long IS NULLAm I going in the right direction???Thanks in advance for any assistance!!!!
CF is unable to read CLOB data from 12c. is there some way we can resolve?
Hello,i am running cf9 on a vmware with 4 cores.It seems that it will use only 1 core in standard edition?If i need the enterprise version is there any shop that offer keys fpr cf9 enterprise?Regards
I am currently testing our website with CF11. It is currently working with CF8 however after migrating it to a new server running CF11 I have encountered the following error.The value returned from the load function is not of type numeric. The error occurred inD:/Applications/CFusion/CustomTags/nec/com/objects/address.cfc: line 263Called from D:/Applications/CFusion/CustomTags/nec/com/objects/contact.cfc: line 331Called from D:/Applications/CFusion/CustomTags/nec/com/objects/user.cfc: line 510Called from D:/Applications/CFusion/CustomTags/nec/com/objects/user.cfc: line 1675Called from D:/website/NECPhase2/action.validate.cfm: line 54261 : <cfif isNumeric(get.idCountry)>262 : <cfset rc = this.objCountry.setID(get.idCountry)>263 : <cfset rc = this.objCountry.load()>264 : </cfif>265 : <cfset this.sPostcode = get.sPostcode>Have there been any changes between CF8 and CF11 that could cause this error? Does anyone have ideas?
related to my earlier slow solr post. Running a refresh on the first file then an update on all others. Recurse may not be necessary.cfindexaction=refreshcollection="this_name_solr"key="c:\inetpub\wwwroot\myappname\thefolder\thesubfolder\thefile.ext"type="file"urlpath="http://#application.root#/appname/thefolder/thesubfolder/thefile.ext"extensions=".html, .htm, .xls, .xlsm, .doc, .docx, .pdf, .txt"recurse="yes"status="alldocs"language="English"Does fine until it hits a corrupt PDF File. If I try to open the file manually in PDF reader I get the message that the file may be corrupt.I need it to get past this file and continue indexing the rest. I have tried a request timeout of three minutes but that does not work. I have attempted CFPDF Info extraction but it hangs reading it too. I do not know how to test the doc to see if it is corrupt.Ultimately I would like it to give up on the file after about 3 minutes.Any suggestions
So I am having all sorts of difficulty getting ColdFusion 9 to load the administrator page on IIS 8 in Windows Server 2012 R2. I saw CF 10 has this compatibility but I was unable to find a CF 9 Support Matrix. The Web Configuration Tool can not finish because there is a IIS compatibility issue and when it tries to restart IIS the process fails and indicates that IIS is version 8.x and the config tool is good for 4.x, 5.x, 6.x, and 7.x. Has anyone had to accomplish this yet for a client? Currently I am getting Service Unavailable HTTP Error 503. The service is unavailable.
This is my query i'm doing here: SELECT * FROM DB_NAME WHERE 0=0 <cfif arguments.NAME is not ''> AND NAME_FIELD = <cfqueryparam value="#arguments.NAME#" null='#ListFindNoCase("NULL",arguments.NAME)#'/> </cfif> </cfquery>The resulting query ends up beingSELECT *FROM DB_NAMEWHERE 0=0AND NAME_FIELD = ''instead of beingSELECT *FROM DB_NAMEWHERE 0=0AND NAME_FIELD is NULLI am currently working in Coldfusion 9.
I'm working on updating some apps we currently use for AD user maintenance. i.e. add new users, unlock accounts, reset passwords, etc.)We use cgi.auth_user and then parse that to get the domain and userid of the Windows user accessing the app. We then take the user id portion of that and use that as the filter in a cfldap query. that pulls attributes we use to control access, and timestamp transactions.That cfldap query is included in a number of pages throughout the app and I wanted to move that to either the Application.cfm file, or create a .cfc file (something we're not currently using) and put it there.We're on ColdFusion 11, are there advantages/disadvantages to either of these methods?Mahalo;Charles
Can anybody please help me to understand the cost and process to get ColdFusion 9 extended (paid) support as Adobe ended version 9's support on 31st Dec 2014.
Hello, everyone,I'm curious to know (this does not currently affect anything I'm working on.. I'm just curious) if there is a way to detect if a scoped variable (like "session.username" or "request.dsn") value has been corrupted? Or if the variable, itself, has been corrupted?V/r,^_^
I am having a problem with restarting the ColdFusion 10 Application Server.Normally this happens onze a year and restarting the service resolves it.
I was able to successfully install the CF server. However everything was going fine until I edited a cfm file and then saved it through dreamweaver. Now I am getting a 500 Internal error when I try to pull it up. I am running Windows Server 2008 with IIS 7.5 and CF10 Ent.I have been editing and saving pages for a while with no issue until now. I tried restarting the server, CF Service and resetting the app. Any idea what this could be? thanks!!!!
Hi,In CFlayout if creating tab dynamically using ColdFusion.Layout.createTab function but the tab already created then system generate the error. So I want to know if tab already created, just make the focus on that tab.Please help me how we can solve this problem.many thanks
We are running several instances of CF within our environment, and they all live within their own directory on the web server root. I am trying to create a /global-resources/ directory, also on the main website root, that will be accessible by all of them. I have created the directory and files, added a CF mapping, and set up a virtual directory mapping. The CF mapping is working correctly - I can include a .cfm file from the /global-resources/ directory without any problems. However, when I try to use the virtual directory mapping to call CSS and JS files, I am getting back 404 errors. Looking at the browser console, it is looking for the files inside the individual application I am in, rather than on the web root. Is it possible to do what I'm talking about? Any help would be appreciated, thanks!
I'm using CF10. I have several domains on the same Linux Centos Server.When I call one domain thru http, it is going to another domain on the same server.The first time called, it opens correctly. After that it is going to another folder an picking up the index page.If I rename the index page to indexx.cfm and call it up it works fine.If I restart the server it works for a few minutes then starts opening the wrong domains index.cfm.This is only happening on one domain. Other work fine.Double checked the httpd.confDouble checked the DNSRebooted httpd (several times)Rebooted CF (several times)Rebooted ServerI've had a couple folks look over my shoulder for obvious mistakes.The same file in the same folder with two names the indexx works the index sometimes actually most of the time goes to a different folder and picks up the index.cfm
Hello everyone,Pardon me if I am asking a question that has already been asked, but I searched and found none. So I was wondering if there is any info on 2015's CF Summit such as approximate time frame it'll be held and location? We're trying to plan on which training conference to go to this year and would like to at least find out some tentative info. I also couldn't find any POC's for CF Summit, so I thought I'd turn to this forum.Thanks,Justin
Our not-for-profit is looking to hire a ColdFusion consultant to implement some AJAX features in our web site. Time frame ... project deadline March 15. Many thanks ... if experienced in this area ... please PM me. Robert
Hi,We are using Cold Fusion 9 in the production environment.Also, using McAfee on the server where Cold Fusion 9 is installed. The admin of the server is stating the issue might be with McAfee. As part of my research, it was metioned that McAfee can affect Cold Fusion and that the Cold Fusion jar files should be added to the exclusion list. I have search for the jar files and alot of files have been listed. Which files should be be in the McAfee exclusion list? Thanks, Mike
Hi, we have a server running WebSphere 7.0.0.31 and Coldfusion 10, it was working fine with WebSphere version 7.0.0.23, but since we did the update, the application does not start up, not even the Coldfusion Administrator.We really need help on how to troubleshoot the problem. All we have is this error en the log:"Error","server.startup : 1","01/27/14","14:51:26",,"The algorithm is not supported by the Security Provider you have chosen. Algorithm is:"java.security.NoSuchAlgorithmException: MessageDigest SHA1 implementation not found: java.lang.ClassNotFoundException: SHA1 at java.security.Provider$Service.getImplementation(Provider.java:826) at java.security.Provider$Service.access$000(Provider.java:787) at java.security.Provider$1.getImplementation(Provider.java:109)  
Hi,I installed twice Coldfusion Builder 3 changing the default installation folder name the first time.I did a clean uninstall between.Now It crash on launch (wheel of death) ; It is unable to find the default "GettingStarted index page", because it is looking inside the old installation path.Dou you know in which kind of pref file this path may be recorded ; and where i may find it ?The installer does not seem to delete all the files ...Thanks.
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.