Questions
Als letztes aktiv
Hi,Is is possible to stamp a PDF document with an outlined text, such as:If yes, what would be the arguments in the <cfpdf action="addwatermark" instruction ?Thanks,jma1338
I am currently working for a contractor for the DoD. We are maintaining a project that uses CF installed as an application through WebSphere. We are currently going through a security checklist and being asked to provide evidence that the CF application has a digital signature. From what we can gather they are looking to see that the jar file installed into WebSphere is digitally signed. We have reached out to IBM, and have received a response that digital signatures are recognized by WebSphere.Unfortunately, it seems that those that are looking for the evidence do not know much more than what the checklist requirement states. They cannot provide more details or expand on what they need. Any assistance or advice in this matter would be appreciated.Thanks,
I am a newbie at coldfusion. I need some help. My database has records that are company names as such: abc, Inc. For now I am using this query:SELECT DISTINCT COMPANY FROM ComapanyTable WHERE (Company IN (#ListQualify(form.cCompanyList2, "'", ",")#))This problem with this is that it separates the abc, Inc.SELECT DISTINCT Company FROM CompanyTableWHERE (Company IN ('abc',' Inc.','xyz','Inc.'))I need to get the list as it is, i.e. as: 'abc, Inc.', 'xyz, Inc' So that I can later insert these values into a new table.Insert code:<cfquery name="insertPair" datasource="#DSN#" dbtype="ODBC"> INSERT INTO tblChildCompanyToParent (Parent_Account_ID, Child_Account_ID) SELECT DISTINCT <cfqueryparam value = "#form.pCompanyList#" CFSQLType = "CF_SQL_VARCHAR">, Company FROM CompanyTable WHERE Company IN (<cfqueryparam value="#ValueList(insertSelect.Company,';' )#" CFSQLType = "CF_SQL_VARCHAR" list="true" separator=";">) </cfquery>Select list code<select multiple name="cCompa
I have a CF server, needs to connect to Exchange Cloud,Apparently there is no more existing IP adress.What is the way to connect the CF mail spooler to a Cloud mail.I do not have any knowledge on this matter.Thanks for help.Pierre.
I am using CF 11, IIS 7.5 and windows 7 pro. when I create a sample application using websockets I get the following results:{"msg":"ok","code":0,"clientid":40495741,"ns":"coldfusion.websocket.channels","reqType":"welcome","type":"response"}{"msg":"Channel 'stocks' doesn't exist or is not running.","code":-1,"clientid":40495741,"ns":"coldfusion.websocket.channels","reqType":"subscribe","type":"response"}can someone help me understand why I am getting the second error message.Thanks
Anyone able to edit a cfgrid in html format? It works fine if it's a java applet, but it quits working when I change the format to html. I submitted the bug to Adobe a few months ago, but I've received no response from them.The submitted cfgrid form field is corrupt
I have installed CF10 on a Windows 2012 R2 server running IIS 8.5. IIS default page displays properly but I cannot get the CF Admin page to display. I'm getting HTTP Error 500.0. I am new to this technology so the suggestions offered have not worked for me.
I am looking into moving an Oracle database to a cloud server in Microsoft Azure, Amazon Web Services or Google Clouyd Services. Are there any considerations to be aware of if I am using ColdFusion 9 or 10?
I made some changes to an cf file but they are ignored in all my browsers. I have even deleted the file from the path and that is ignored in any browser and it still shows the original file. I have tried this on 2 different cold fusion servers 9 and 10 with the same results.
This is my second day learning ColdFusion. I am able to display .cfm pages. However, when I tried to browse/load the .cfc file, I kept getting this error.Unsupported Operation. Check application log for more details.These are my simple testing codes.<cfcomponent hint="A first CFC"> <cffunction name="getValue" returntype="String" access="public"> <cfreturn "Hellow World"> </cffunction></cfcomponent>Where is the "application log" so I can check for more details?
Coldfusion flash form failed loading data. The error we got is “[Flash Remoting MX]->Request received was not Flash-based (not of the binary AMF protocol)." Please advise! Thanks!
My configuration:Coldfusion Enterprise 9.0.1 32 bit on Windows Server 2008 Web Edition 64 bit, 4Gb Ram, 2 Xeon processorsThe sites using Microsoft Access Database, randomlly, go in timeout. This is due to the fact that "ODBC Server" lock the database (in the db folder there are the .ldb file). If I restart the "ODBC Server" service, the database is released and the site works. Do you have any idea how to resolve this issue?
If I buy CF 11 Enterprise, can i set up separate instances for development, testing and production on different servers? Is there limit on the number of instances? If I wanted ot do the set up three servers with CF 11 standard I would have to buy 3 licenses, correct?
We're running ColdFusion 10 Update 2. It was running on Java 1.6 and we'd like to upgrade to 1.7. The server is Windows 2003 32-bit.I installed the Java 1.7 JRE and pointed the JVM path to the default folder in the CF Admin, but the services would not restart. Editing the jvm.config to point back to the original folder location (x:\coldfusion10\jre) enabled me to restart the service. So, I re-installed the JRE to x:\coldfusion10\jre2 and pointed the JVM path there, but had the same issue.I did some reading and saw some posts that stated that the full JDK is needed and not just the JRE, so I installed that to the same path. Same result.Any thoughts on what I can do next?
Hi, Running Windows server 2008 and CF 9.I'm trying to update CF9 Standard to CF 11 standard.I've downloaded the trail version.I run the installer and then the migration wizard runs.But after that, the site is still running under CF 9. I know this because if I stop the CF9 process, the site goes down.There must be some other files I am supposed to modify or move but I can't figure out what they are.I do notice when I go into IIS 7, there are handlers set up for both CF9 and CF11 -- I can tell this by looking at the file paths to the various handlers.Where is the 'hook' that ties CF into my web pages? That is what seems to not be working. The 'hook' is tying my web pages into CF9 and not CF11I've been trying this for about a week now and still no luck. Very frustrating.Help would be much appreciated.ThanksMike
Hello, everyone,I have a form (NOT a CFFORM - those are evil) that I am attempting to submit the data to a CFC.Right now, all the CFC is supposed to do (for testing purposes) is to display the form data in a DIV on the same page as the form.Every time I submit the data, I get a 500 error message stating that the page cannot be displayed.Here is pseudo-code for what I've got, now. <form name="subOpp" id="subOpp" enctype="application/x-www-form-urlencoded"> <!--- a couple of inputs, shortened for brevity ---> <input type="text" name="company_name" id="company_name" /> <input type="text" name="company_address" id="company_address" /> ... <input type="button" name="submitBtn" id="submitBtn" value="Submit" onclick="submitForm(this.form,'so');" /> </form> <script type="text/javascript"> function submitForm(formObj,whichForm){ XHR = new XMLHttpRequest(); XHR.open("post","../../
Hi All,I need to run a query inside a loop; and the query will be running for more than 100 times.Is there anyway to do other than this.Based on the value, the query will be running; I cannot do queries of queries.Thanks in advance!
I just finished a new CF10 install (Standard Edition, 64 bit, Windows 2008R2). Everything seems to work ok (Admin screens, etc). Except that when I go to Server Updates > Updates to do the updates to the fresh install, and click on Check for Updates, it comes back and says "No updates were found." I have 2 other CF10 systems, and each of them has no problem seeing that there is an update waiting. Not seen this before - in the past a fresh install would immediately have the full list of Available Updates waiting to be installed.Any ideas?thanksReed
Hi,At my facility we have access to drives that are up to a TB in size. We have a lot of documents we plan to scan and save "online". Currently our web servers are relatively small, the on I am on now is only 20GB and it's almost full.Can I upload documents through a web page to a drive that is not on the web server, and also build a page that links to those documents so that users can open them?Thanks
getting the following error when using this statement:The value returned from the onApplicationStart function is not of type boolean. If the component name is specified as a return type, it is possible that either a definition file for the component cannot be found or is not accessible. component this.name = "customoptionexample1"; this.wschannels = [{name="bidchannel", cfclistener="bidListener"}]; boolean function onApplicationStart() application.bidvalue = 1;
I cannot find the exe file to open my new CF 11 Developer software. It's unzipped, but the exe file cannot be found in a folder search. I have Win 7 Ultimate on my PC. It's not a server. I understand the developer edition can be used on Win 7. Please help.
Recently we changed ISPs and I need to access the CF admin to update the external IP to relay email properly. This has never been a problem in the past, we've done it many times. Now, it will not accept our password. I've tried to reset the password as everywhere suggests by editing the neo-security.xml file to admin.security.enabled, value=false, but no improvement. I've also attempted to modify the password.properties file manually, but every time I restart the CF App server, the file reverts back to encrypted=true and appears to generate a new password. How can I force a reset to go through?
Is it possible to return the page on a presentation/PDF or any file for that matter of where a search term is e.g. Your search for 'Foo' are on pages 3 & 4 of file.pdf.Thanks,
I am looking for Coldfusion classes in Springfield, Massachusetts. Any help?
Adobe,I need to alter a ColdFusion installation's ISAPI connector configuration to use a standalone, non-ColdFusion 64-bit Tomcat 7.0.59 installation, running a Grails application, as a second worker responding to a very specific URI.A standard configration - changing uriworkermap.properties and workers.properties - is all I thought I'd need. This returned nothing but a 500 from the standalone Tomcat.Knowing that 64-bit Tomcat requires the 64-bit DLL, I overwrote the stock ISAPI_redirect from the ColdFusion installation with the latest 64-bit ISAPI_redirect.dll from Apache.Now my Tomcat application works fine, but ColdFusion serves nothing but a blank, white page. isapi_redirect.log says this when it tries to access the ColdFusion worker:[Mon Mar 09 15:08:09.945 2015] [4604:3228] [debug] wc_get_worker_for_name::jk_worker.c (115): did not find a worker ajp13[Mon Mar 09 15:08:09.946 2015] [4604:3228] [error] HttpExtensionProc::jk_isapi_plugin.c (2289): could not get a worker for name ajp
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.