Questions
Als letztes aktiv
I setup ColdFusion 10 update 16 RedHat 6.5 64 bit.If i use wrong link I am getiing 500 Internal Server Error for web client from Suse Enterprise server 9.Local client displays "file not found" cf page.How to get cf normal error page instead of 500 error.
As of yesterday, I noticed our scheduled task was not running, so I paused and started the task again in efforts to do a soft reset and it still did not run. I checked every single error log possible in ColdFusion applications directory and windows server log and still did not see anything that would explain why it just stopped running all of the sudden. I ended up having to do a restart on all CF services on the server and it started to work again. I check the server again this morning and see that it stopped exactly at 11:59 PM last night and it was just a few hours before that when I restarted CF services.Does anyone have any clue as to why or where I can look into to determine cause of our scheduled task just stopping on its own? The interval is set to 1 minute and its set to run infinitely. I looked in the CF scheduler logs and there was nothing in there that indicated any errors.Disk space seems to be fine and everything seems to be working as far as I've been checking. This is a
After applying CF 11 Update 5 on an update 4 web serverThe following code Throws an error that validateMessage is undefined at the cf return lineI rebuilt the connector and then the code throws a 500 errorThen I reverted the back to CF 11 update 4 and all is goodDoes anyone know what happened here?
Hello, I have a Windows 2008 development server that has ColdFusion 11 Admin, PhPMyAdmin, Joomla, IIS, MySqL 5.6 and PhP installed on it. The problem is that when we try to install the J connector for MYSQL, ColdFusion services will not start after a server reboot. The version of the J connector we are trying to use is 5.1.35. Has anyone experienced this? Thanks
A production site was moved to a CF10 server recently, and the Captcha part of a form stopped working. When viewing the source, there is no img tag at all.The original code (below) has worked for years, is pretty simple, and outputs to the browser.I can get the form to work, by using cfimage with the destination parameter so that the Captcha image is written to the specified folder, and then use a regular <img> tag to show it. But I'm not sure how that will work in production if multiple people use the form simultaneously.Other posts about captcha not working don't seem on point to my situation. There are no URL rewrite modules on the server, etc..<cfimage name="Cval" action="captcha" fontsize="15" width="400" height="150" text="#CvalText#" fonts="Courier New,Arial,Verdana" difficulty="medium">Edited to actually ask a question!: Has anyone encountered (and overcome) this problem? If I have to stick with the workaround, any thoughts as to how many people can activate the Cap
Hi All,How many concurrent users can be supported by coldfusion 11 standard and enterprise. Infrastructure wise we have coldfusion 2012 server with 16gb ram on IIS 8 server. Your quick help suggest me to right path to buying the license. As adobe does not have any pre salses support to provide these information and document also based on 19's theme . ThanksNiyaz
Hi All,I've a problem with our cf11 instances.I've 8 instances and I'd like to pass a variable to all them.I can't use the applications scope, sessions scope and so on... and I can't use DB or files system.How can I do it ?thanks in advancesbest regardsStefano
I am having a problem with all my pages that include Cfwindow after upgrading to CF11. There is a long delay (15seconds) and then the message - Unresponsive ScriptA script on this page may be busy, or it may have stopped responding. You can stop the script now, open the script in the debugger, or let the script continue.Script: http://sbs/CFIDE/scripts/ajax/ext/ext-all.js:18This happens also on the test page from CF11 documents cfwindow - ColdFusion, English documentation - Adobe Learning ResourcesApart from the delay, the page loads and works fine.Is this a problem with with my installation following upgrade or a more general issue?RegardsRichard
I have one CF server that has a range of 20 IP addresses. Our SQL Server is behind a firewall and we need to give it an IP address to allow access from the CF server to the SQL server. CF is not picking the first IP or the last, it seems to have just picked one random IP address.How do we configure or setup ONE IP for CF to use when communicating with our SQL SERVER? Please advise on any help & suggestions.Thank you!Ernie
We're getting messages from PayPal about the need to update to a VeriSign G5 root certificate if we access their API. We call the API with CFHTTP using ColdFusion 10. Does anyone know if the G5 certificate is in the CF10 keystore? Or, is this something that needs installed on the OS (Win 2008)?
Hello,we try to deploy Coldfusion11 on IBM Websphere ND 8.5.5 following document: https://wikidocs.adobe.com/wiki/display/coldfusionen/Installing+the+JEE+Configuration#InstallingtheJEEConfiguration-DeployColdFusion11onWebSphere7or8ASDeploy fine, it's seems, but when we try to access Coldfusion administator we received this error: Error 500: javax.servlet.ServletException: Filter [CFClickJackFilterSameOrigin]: coldfusion.bootstrap.BootstrapFilter was found, but is corrupt:Somebody know where is the problem? Thanks for avanced.José Antonio Chao.
After installing CF11 Update 5 I noticed I'm get an error in the server.log file.Prior to installing Update 5, I was running Update 3 without any issues.The server is W2012R2 with CF11 64 bit Standard Edition."Error","Thread-12","05/13/15","04:31:46",,"Registration error for service manager : .http://127.0.0.1:8987/PDFgServlet/.Reason: JAVA.UTIL.CONCURRENTMODIFICATIONEXCEPTION""Error","ajp-bio-8014-exec-1","05/13/15","15:32:03",,"java.util.ConcurrentModificationException""Error","ajp-bio-8014-exec-1","05/13/15","15:32:03",,"Connection verification failed. http://127.0.0.1:8987/PDFgServlet/verify"Any suggestions as to where to look, to fix this?Thanks,--Evan
I have two issues with cfgrid after upgrading from ColdFusion 8 to ColdFusion 9.1. 1)There is now an extra column showing up on the far right and I cannot figure out why or how to remove it. 2) The column headers do not show up until you mouse over them or refresh with F5We considered scrapping cf grid and populating an html table but we need to maintain the sorting functionality without a lot of rework.
What is the phone # for ColdFusion pay per incident support? Your website says to call 800-642-3623 http://www.adobe.com/support/programs/developer/sdk_server.html but there is NO OPTION for COLDFUSION! ** HELP **
After adjusting the MaxPermSize in the jvm.config file, is it just a matter of saving the file or are there any additional steps such as rebooting the server etc? Thanks.-BH
Hello, all,I've got a CFC (let's call it test.cfc) that is supposed to handle a lot of internal calls to other CFFUNCTIONs. I had read that using "this.functionName(args);" should work. However, for some reason it isn't. I still have to use "components.compName().functionName(args);" for it to work. Pseudo-code: <cffunction name="functionA" access="private" output="no" returntype="any"> <cfquery name="getThese" datasource="#application.thisDSN#"> SELECT * FROM tableA ORDER BY ID </cfquery> <cfreturn getThese /> </cffunction> and <cffunction name="functionB" access="private" output="yes" returntype="void"> <cfset tmp = this.functionA() /><cfoutput>#tmp#</cfoutput> </cffunction> This produces the error: Ensure that the name is correct and that the component or interface exists.But the following works just
I am using coldfusion 8 with macromedia oracle driver 10g on RHEL. I wanted to know if Oracle 12c driver will be compatible and what is the best way to upgrade it ?
Hi all,On our Windows 2003 (32-bit) test server, I had CF10 with the Mandatory Update installed on it. I patched CF to Hotfix 16, and then suddenly we saw problems where people couldn't log into the site - they kept on getting redirected back to the login page. Tweaking browser settings and clearing browser cache seemed to alleviate the problems but I'm wondering if this is a common problem for this update, or if there was a simple step that I missed. Any help is appreciated!
hello, I need the cold fusion 8 download
What is the best route to determine why the coldfusion application service is hanging periodically? When this 'freeze' occurs I have to shutdown all the coldfusion services to get the application service to restart. Sometimes it even requires restarting IIS, For other java applications that hang, I can do a 'kill -3 (or quit)' and it generates a heap dump. Some vendors will take this heap dump and analyze it and be able to tell you exactly what froze and likely why. Is that something that adobe can do if we purchase a higher level support contract? Or in your experience is it better to find a third party consultant? Several of us have 'googled' this issue to death, so its time to find some expert help:) Unless something has changed or become well known about Coldfusion 9 on Windows 8 in terms of hangs? We are pretty sure that it has something to do with Coldfusion not being able to reach data sources consistently (network issues), b
We host several ColdFusion 10 sites and right around the same time I started seeing Adobe Marketing Cloud commercials on TV, a few of these sites (3-4 so far) started reporting sporadic errors, all similar to this:"TELMGMT","151.245.172.182Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 1.1.4322; .NET4.0C; .NET4.0E; Tablet PC 2.0; InfoPath.3; ATT)40AdobeOrg, on line 1, column 31, is not a valid identifer name. <p>The CFML compiler was processing:<ul><li>An expression beginning with AMCV_55633F7A534535110A490D44, on line 1, column 1.This message is usually caused by a problem in the expressions structure.</ul> <br>The error occurred on line 26./sbc45000/srf55000_order_process.cfm"Based on some Googling, I think that the AMCV_55633F7A534535110A490D44%40AdobeOrg is a cookie that is somehow related to Adobe Marketing Cloud.None of these sites report
Hi,I am working in a coldfusion application which is hosted in 2 windows servers with IIS versions 6.0 and 7.5. The problem is that nowadays the users are getting the IE error page 'Internet Explorer cannot display this webpage'. This issue is not bounded to a single page. Users are getting this issue in different pages when they click links or click the submit button. And this issue is replicated in two different servers. I thought of being this as a cache issue and tried with the nocache. But it didnt work. I am clueless about this now. Please help me out. Thanks.
Hi,My issue is that when ever user is clicking link or submit a form, sometimes instead of directing to a new page, it will show the internet explorer error page 'Internet explorer cannot display this webpage'. I didnt find any error message in the log in cf admin as well as IIS admin. Then I checked with a simple HTML page which refreshes in every 3 minutes. I found that this page is also showing the same issue. So I think the issue is not related to Coldfusion. Still the issue persists. So does anybody have any idea about this? Please advice. Thanks in advance.The details are: And also the application is hosted in virtual machine.Server Product ColdFusion Version 9,0,0,251028 Edition Standard Serial Number Operating System Windows 2003 OS Version 5.2 Adobe Driver Version 4.0 (Build 0005) JVM Details Java Version 1.6.0_17 Java Vendor Sun Microsystems Inc. Java Vendor URL http://java.sun.com/ Java Home
The whole pop up error message isjava.sql.SQLException:[Macromedia][SQLServer JDBC Driver][SQLServer] Error ....I am using CF10 Report Builder. Here is my query:SELECT name.first_name, name.last_name, name.soc_sec, name.name_le1, name.camp_cod, LEFT(MMTemp.term_int, 6) AS Term, MMTemp.st_addr, MMTemp.add_addr, MMTemp.city, MMTemp.state, MMTemp.zip, transact.sch_yr AS SchYr, transact.ref_id AS AwardDesc, transact.offered AS AwdAmt, nmact.act_memo, MMTemp.Operator, rpt_schy.token, nmbudget.nmbudget_tuition AS Tuition, nmbudget_RM_BRD AS RoomBoard, CASE WHEN finaideurekaawdcat.finaidawdcat_cod like 'E%' OR finaideurekaawdcat.finaidawdcat_cod like 'OT' THEN 'Gift aid & schlorships' WHEN finaideurekaawdcat.finaidawdcat_cod = 'FG' THEN 'Need based aid' WHEN finaideurekaawdcat.finaidawdcat_cod = 'FL' THEN 'Federal Direct Loans' ELSE 'Work Study' END AS CatType/*CASE WHEN name.camp_cod = 'AdultLearn' THEN '17911' ELS
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.