Questions
Als letztes aktiv
I'm only posting this because it is not coming up when i search on the text in the subject.I'm using CF 11,0,11,301867 on Server 2012 with IIS 8 for both the web service itself and the web service being called.I'm dumping the error structure in a custom error page and getting this:1. The apps are currently housed on the same server, but were not originally. both servers have this error2. The following folders give the following users full control: SYSTEM (the user running CF) and Everyone and a spot check of subfolders and files indicates the setting has been inherited. Essentially these folders are currently world writeable: C:\coldfusion11\cfusion\stubs C:\coldfusion11\cfusion\wwwroot C:\websites\myappfolder (the IIS root folder for the application)3. the service is invoked from a CFC with one function that simply calls the web service and returns the result as follows:<cfinvoke webserv
Hi, I need help on the function REFindNocase. The project is old and still using CF9 so there is a limitation on what can be use. Each student has a different BookSelectList. Example: it can be NULL (which allows them to see all books), or 1 (which allows them to see only Book A) or 1,2,3 (which allows them to see only Book A, B, C) We have the below: <cfif REFindNocase("(1|2|3|4|5|6)",#Selection.BookSelectList#)> <cfinclude template="showbooks.cfm"> </cfif> Which works fine until we hit book 10, since 10 consist of "1". REFindNocase will return 1 and display something they are not meant to see. What can I do to avoid that? Can REFindNOcase compare Numbers instead of String? If so, how it can be done? Thanks in advance!
Hello, all,I've got a page where I'm using CFINCLUDE to include another .cfm page that has a list of groups that a user belongs to, and a form field that will allow an admin to add a group to a user's list. It's a select drop-down with an ADD button. The admin should be able to add a group to the user's list without refreshing the page, so I'm using AJaX to submit the data to a cfc; the cfc query runs (successfully adding the group), and returns either a 1 for success, or anything else for a fail.If a 1 is returned, I'm trying to use jQuery.load() to refresh the data in the div surrounding the CFINCLUDE. But the div becomes empty, and even FireBug is showing that the GET from the .load() is returning nothing.Some sample pseudo-code:Parent page (records.cfm):<div id="rec_adminlist"><cfinclude template="rec_adminlist.cfm" /></div><script type="text/javascript">function reloadDiv(divObj,pg){divObj.load(pg);}</script>Child page (rec_adminlist
I have a Windows 2012R2 server running CF 11. ColdFusion is running as a local service account, and is working properly for all other applications on this web server. I am migrating an old app over from ColdFusion 8 that requires Windows Authentication. When using Anonymous access, the users can access the app and it works properly. When I turn on Windows Authentication, users are getting a 401 error. Event Viewer shows a successful logon (4624). If they access "file.cfm", they get a 401 error. If they access "file.txt", they get the contents of the file successfully. Authentication is successful, apparently, and both files have the same permissions. When the user is made a local Administrator, he is able to access the file. Taking away Administrator privileges, we get the 401. I tried giving that user full control over webroot, over CF.root, over everything I could think of, but no luck. I tried using ProcMon to point m
I have inherited maintenance of a website created in Cold Fusion back in 2007. While I can easily make the typical content edits in Dreamweaver, there has recently been a problem with on of the form pages and I know nothing about coding Cold Fusion.When completing and submitting the form this error message is generated:Variable G is undefined. The error occurred in <generated>: line 1Called from C:/inetpub/vhosts/designerbuilders.com/httpdocs/cfc/clients.cfc: line 121Called from C:/inetpub/vhosts/designerbuilders.com/httpdocs/register.cfm: line 246-1 : Unable to display error's location in a CFML template. Resources:Check the ColdFusion documentation to verify that you are using the correct syntax.Search the Knowledge Base to find a solution to your problem.Browser Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36Remote Address 24.145.40.29Referrer http://www.designerbuilders.com/register.cf
Just like the title asks... is there a simple way to download the hotfixes and updates for CF11?I visited the adobe site, click link after link which led to a broken URL for a blog. Isn't there just a list and a download link available? I have to install these settings on the PC that doesn't have the internet connection
We're looking for a few Cold Fusion 9 license keys, if you have some outstanding and would like to sell them, let me know...Thanks everyone,Ryan
It appears that I am going to have to upgrade my installation.I believe the first step is to get a car file from my current installation. The problem is that I keep getting errors when I try to do it. On the "Archive Information" page and try to "Select All" I get the following error;Element VERITY.COLLECTIONS is undefined in REQUEST.Every time I try to change tabs I get a javascript error as follows;Uncaught ReferenceError: setFormValue is not definedThe buildWizard has the same setFormValue error.Is there any way around those errors?Thanks,Joe Klovance
I am using coldfusion 2016 and I am attempting to create a simple bar chart with an arrow above one of the bars in the chart. I know that coldfusion uses zingcharts for its charting library and I know that zingcharts is able to add arrows (Chart Arrows | ZingChart ). Is there a way to accomplish this using cfchart?To further complicate the issue, I would like these charts to appear in a pdf which is generated using cfdocument. Is this possible?If not, is there an easy way to use a 3rd party charting library (such as d3, chart.js, etc) to generate charts for use in a pdf generated using cfdocument?
Hi , Is there way to end session on server.I tried various ways like1. <cfset StructClear(Session)>2. <cfset getPageContext().getSession().invalidate()>3. <cfset this.sessionTimeout = createTimeSpan( 0, 0, 0, 1 ) /> But None seems to removing entries from Active session list.Am i Missing something?
I am new to ColdFusion server and I have good experience with java.I have a web service client application (war) and it is built on top of java, JSP, ajax, axis 2 and wss4j.I have tested this application tomcat server and it is working as expected.I request please advise standard steps to deploy this war application in jrun4 sever.Thank you very much for your help.JRUN
My existing JRUN4 is using axis 1.1 ,i request please advise how can we upgrade jrun4 libraries to support latest web service client calls(axis 1,2).
We are attempting to deploy a java client in CF to make talking to webservices (specifically, parsing the response) a lot simpler. The problem we appear to be running into is that the server is using the Jersey Jackson provider and Client Builder instead of the RestEasy jars provided with the distribution. Does anyone know how to force CF to use the RestEasy jars? We have deployed the client jar and all required dependency jars (including RestEasy) under their own path. We have confirmed that CF is seeing the client jar by instantiating the java client and calling certain functions. We can get up to the point where it attempts to call out to the server. Unfortunately, the error information we are receiving in CF is not particularly helpful. I believe the last one just simply told us that there was an error but nothing us any use.** Note: I am the Java side of this implementation and do not know CF very well. I built the client jar used the maven assembly plugin to provide a zip f
I need help to hide the CF version information form WSDL. I am using the ColdFusion 9.Example: When I am looking for any WSDL through browser, the below comment get added.<!--WSDL created by ColdFusion version 9,0,1,274733-->I want to hide this information. Please advise, is there any way to hide this information for ColdFusion 9.Thanks in Advance.Message was edited by: Abhijeet Adawale
I have a Windows 2012R2 server(iis 8.5) running Coldfusion 11 Developer edition. I have 6 instances running on the server. They work fine and everything seems to be configured correctly.When I restart the server, the main instance starts up correctly, but the other 6 instances don't autostart. I have to go into instance manager and start each instance.I don't see any errors in any logs and can;t figure out why they won;t start after a server/service restart.
Request www.electionsonline.com using anything other than Safari on a Mac, and all works perfectly. Request www.electionsonline.com/index.cfm using any browser on any OS and all works.But request only www.electionsonline.com using Safari on a Mac and it simply hangs for several minutes until timing out. index.cfm is set in IIS to be the default document.This only started after migrating the site to AWS on a Windows Server 2016 machine running IIS 10. Prior to that (different hosting company, using Windows Server 2008 R2) the site honored the default document, index.cfm, without any problems.
We're using Windows Server 2008 R2 x64 with ColdFusion 10 Update 22. After updating to Update 23, we receive the following error on all of our pages:00:22:05.005 - net.sf.ehcache.config.InvalidConfigurationException - in ....cfm : line ... There is one error in your configuration: * Cache 'QUERY' error: MaxElementsInMemory is not compatible with MaxBytesLocalHeap set on cache managerPlease help!
I've been working on tracking down some funkiness with cfcharts. specifically their memory use. This is what I've noticed about it in CF2016 Update 3. Adobe uses EHcache to cache cfcharts in a Cache Instance called "CF_Chart_CacheManager".The "CF_Chart_CacheManager" doesn't get created until you use the cfchart tag.Previous versions of CF used to have the ability to set Threads in the CFAdmin, CF2016 does not, although this is still available in the adminapi. Not sure if it works. The docs says you can set this from 1 to 5.You can't set a custom Disk cache location. I can't set it in CFAdmin, the neo-graphing.xml, or the adminapi. It always resets back to the default.Changing the settings CFAdmin-> Server Settings -> Charting requires a restart to take affect.The Time-To-Live only appears to work when cache type is set to Disk Cache. This setting appears to be ignored when set to Memory.It doesn't seem to matter if you set it to Disk Cache or Memory Cache, the c
The same code running on 2x different physical servers. Hangs on one and not the other. Servers aren't under load. Are there server or network setup that might create this?No issues creating .csv files or flash output in case that matters.Jason
We just recently installed Coldfusion 11 enterprise. The code for generating pdf files worked before but did not work on the Coldfusion 11 enterprise platform. The code is like this:<cfcontent type="application/pdf" /> <cfheader name="Content-disposition" value="attachment;filename=Report.pdf"> <cfdocument format="pdf"> <cfdocumentsection> <cfinclude template="facultyReports.cfm"> </cfdocumentsection> </cfdocument>I got the following error:coldfusion.document.DocumentProcessor$TimeOutException at coldfusion.document.DocumentProcessor.processContent(DocumentProcessor.java:277)I also tried to use the new tag <cfhtml
Hi good people please help I can't find htdocs on C:\Program Files\Apache Software Foundation\Apache2.2. When I search for it they say it has been moved. This give me hard time because I can't run ColdFusion Builder because of this. Please help
I have used ColdFusion for database interaction (in standard form-submit based apps). Right now I need to attempt something fancier. The plan is to use JQuery to do an Ajax post of variables to a server, and I'm hoping to use ColdFusion to handle these Ajax requests. I have no experience with Ajax, but I'm hoping to learn. Can someone please refer me to some examples so I can figure out how to do this? Sorry to be such a newbie on the topic. I appreciate any help.
Windows server 2003, coldfusion 9I recently dropped AT&T (yeah!) but was assigned a newstatic IP from our new internet service provider (uh oh…).We use a browser-based medical record system (old and nolonger supported) for a small medical practice. Inside the office LAN, it worksfine. I reconfigured our router with the new IP info and we can access theinternet fine. I port-forwarded incoming traffic to the server correctly, butwe can no longer log in to the site from outside the LAN. The login page shouldbe the first page to open (login.cfm).I can reach the server from outside, but receive acoldfusion error page which states “element COMPANYNAME is not defined inAPPLICATION”. “CompanyName” is just a part of the title of the login page – andthe login page is therefore never created.As you can tell from my question, I know next to nothingabout CF (or javascript, or even html for that matter). But I don’t understandwhy the site is no longer happy about a request from the router simply
Hello all, I search the forums and could not find a solution to this..... but I am sure it is an easy fix....I have a site that is storing image info copy etc.... However I have a footer that contains all the disclaimer crap. So I store it in the database record like this: ------You agree to abide by and comply with these terms and conditions by accessing, using or downloading any material from or on your account.<br><br>©#DateFormat(Now(), "yyyy")# ABC LLC. All Rights Reserved-------The <br>'s are being displayed correctly, but you can see that the dateformat tag is being displayed as the coded variable and not "2017"I double checked that all the code is within a cfoutput. Just at a loss so any feedback would be greatly appreciated. Thanks!!!!
Hello, all,We are trying to upgrade from CF10 to CF11, and one thing we've noticed in production (not happening in dev or staging) is that CFQUERY and CFOUTPUT tags are suddenly timing out, quite frequently.Has anyone else upgrading to CF11 experienced this odd issue?V/r,^_^
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.