Questions
Als letztes aktiv
Hi there,I installed ColdfusionMX 7 on WIndows 2008 R2 Standard server. When I try to open the admin page , I Get the error:Server Error in '/' Application.--------------------------------------------------------------------------------Could not load type 'C:\CFusionMX7\runtime\lib\wsconfig\jrun_iis6.dll'.Description: An unhandled exception occurred during the execution of t@he current web request. Please review the stack trace for more information about the error and where it originated in the code.Exception Details: System.Web.HttpException: Could not load type 'C:\CFusionMX7\runtime\lib\wsconfig\jrun_iis6.dll'.Source Error: An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. Stack Trace: [HttpException (0x80004005): Could not load type 'C:\CFusionMX7\runtime\lib\wsconfig\jrun_iis6.dll'.] System.Web.Compilation.Bui
I migrated to Coldfusion 11 and there is a problem with the cfgrid and bind.<cfgrid name="theGrid" target="pbdetail" pagesize="3000" format="html" onload="load" bind="cfc:internal/p/_com/pblock.pblockData({cfgridpage},{cfgridpagesize},{cfgridsortcolumn},{cfgridsortdirection},'#trim(url.varpblocknumber)#','#trim(url.varrefno)#')" bindonload="true" striperows="true" selectcolor="lightyellow" height="200">This works on Coldfusion 10 but no longer works on Coldfusion 11. The loading spinner just spins and the grid never appears. Will this be patched anytime soon?Thanks.
Hello CFBuilders,I encountered what I believe is a bug within CFBuilder 3 (standalone and Eclipse plugin) where code coloring breaks after you insert a comment in a function with named arguments. To replicate the issue copy/paste the following code in CF Builder: <!--- Sample Bug: Code Coloring ---><cfset myFunction( argument1 = "strawberries", argument2 = "bananas", <!--- these are my favorite ---> argument3 = "blueberries", argument4 = "pineapples") /><cfset test = "test" />You should see argument3,argument4, and the closing bracket are colored incorrectly. If you encounter the same issue and you'd like to see this fixed please feel free to vote for this bug here:Bug#3831825 - Code Coloring Breaks When Comments Used Within Function with Named ArgumentsIt should be noted that Dreamweaver can handle this type of code coloring
We have Licensed ColdFusion 10 Enterprise applications on our server .When Java client is upgraded to Java 7.51, we are getting following error while working with our functionality."missing required permissions manifest attribute in main jar"This problem is occurring when we use cftree. we try to find solutions for this but didnt got any break through. When checked on Java site we see that this error occurs if the applets are not signed or self signed.
Recent updates to CFGrid are now signed Java applets that no longer expire, however Oracle has updated the security model for Java again. The recent Java 7 update 45 now displays this warning dialog, indicating that future Java 7 updates (Java 7u51 Jan 14 2014) will not allow the application to run:Does this need to be fixed by Adobe, since I assume end users cannot fix the applet with the information in the links provided by OracleEnhancing Security with Manifest AttributesModifying a Manifest FileIf Adobe doesn't update the CFGrid applet, does anyone know if the new Java 7u40 deployment rule set feature can be used to avoid this warning?
I'm executing a CFEXECUTE statement in a CFScheduler job that is supposed to C:D a file from one Windows Server to another Windows server.I've built the C:D batch job correctly and can run it successfully from the CMD prompt (by double clicking on the .bat file name).Here is my statement:<cfexecute name="C:\Windows\system32\cmd.exe" arguments="/c E:\inetpub\WWWROOT\Tips\ScheduledJobs\tips_to_tws.bat"The job ends without any errors, but I get a C:D error - LAPP010I - Submit file open failure. CCODE=8 FDBK=0So my thought process is this: when I go and execute the C:D command by double clicking on it alone - it is taking my id/password as the submitter. This is evident by looking at the C:D logs.And when I execute the CFScheduler job, that runs the CFEXECUTE command, it uses XXXXXX id to run the C:D command. So my question is - what is the XXXXXX id? I don't have ColdCusion running on a special service account, so I'm not familar with what id it would be associa
I have a database table entitled meetings. In the meetings table it has the columns named "meeid", "meedate" and "meememberIDs". by using ColdFusion 9 I am able to submit a Standard date in the "meedate" and a comma-delineated list in memberID's who was present from a series of checkboxes from a form. It looks like this :meeid = 2meedate= '2014-06-15"meememberIDs= '3,5,67,78,354, 2345'Now that I have a record of the date and a comma-delineate list of membersID's that came to a meeting, is there a way using stand SQL to extract the memberID's and match numbers to the primary key to another table entitled "personnel" wherein each number of the comma-delineated meememberIDs column would match the full name and email to the member of personnel table? example:3 = michael jones - mjones@ptree.com5= chris ebinger - cebinger@ptree.com67 = alfred fox - afox@ptree.com
Hi,can anyone please explain why the vDate is being displayed as a decimal number in the following code. It seems that the IIF() functions returns some default value and not what I setThanks.<cfset vNow = DateFormat(Now(), "mm/dd/yyyy")><cfoutput> vNow = #vNow# <br /></cfoutput><cfset vDate = iif(true, vNow, "")><cfoutput> vDate = #vDate# <br /> Formatted vDate = #DateFormat(vDate,"mm/dd/yyyy")# #TimeFormat(vDate, "hh:mm:ss")#</cfoutput>
The data is of image type in my database table. How do I save this data as a pdf file. The data in the table is already pdf type 0x151C240002000000080008001400... I tried select boxid, datapdf from records where datapdf is not null FileWrite("data.pdf", records.datapdf[1]); It did save the file as a pdf, but upon opening the file is said "it is either not a supported file type or because the file has been damaged".
I created a cfm template with below contents to test clickjacking issue.<html><head><title>Clickjack test page</title></head><body><p>Website is vulnerable to clickjacking!</p><iframe src="https://abcd.rw.xyz.com/mer/nao/app_v4/" width="500" height="500"></iframe> </body></html>And when I executed this template I was able to click on the "iframe" part. Which indicates that there is a clickjacking issue.Right??. Is there any way to prevent clickjacking issue via CF admin/application code.
I am working on a project where coldfusion(backend) and Flex(front end). I need to point Coldfusion CFCs to Flex application.Can anybody please guide me how to do this.Thanks in advance.Best RegardsAnil
If you are performing a search on a collection of pdf files is there a tag that will either highlight or bold the search term within the pdf?
To secure CFGLOBALS cookie I tried the following method as I did for CFID and CFTOKEN . But its not working for CFGLOBALS . Note that this method is working fine for CFID and CFTOKEN.<cfset cf_ssn_cookies = {httponly='true', secure='true'}><cfapplication name="ABCD" clientmanagement="Yes" sessionmanagement="Yes" setclientcookies="Yes"sessioncookie=#cf_ssn_cookies#>Any idea why the HTTPOnly and SECURE flags are not setting up for CFGLOBALS cookie.
CF had an area where you could look at and buy software in CF--can't find it
Hi,I have coldfusion 10 and wanted to know if I get ColdFusion Builder 3 trial version. After 60 days, it will get converted to express edition, I wanted to know if debugging will work with express edition.Thanks in advance.Regards,Dharmendra
I've done this a thousand times. I have a stored proc that returns data. I give the resultset a name. I output it with cfoutput query =queryname. Now it's failing for every column in the query. But if I do a cfdump with the queryname as a var, I get the data -- with the exact column names in my cfoutput.CF9, SQL Server.
I have a report built with all the label and fields all set to use Calibri and to embed the font. Yet when it shows the text in the rendered PDF file, it is not Calibri (or anything close)All Report Builder help tells me is that when we embed the font, the file size will be bigger - no duh! But it's not even doing it.Creating a report that has specific sizes and looks in mind can't be done unless the font embeds, so how do I fix this??It's really starting to piss me off!SafariTECH
Extract from docs (about href attribute for cfgrid tag): URL or name of a query column that contains URLs to hyperlink each grid cell with.This way not work. If i try to specify query column in href attribute like this: href="query_column_name", its did not work. I want to specify a query column, which stores the URL's.Where can I get an example of such a code?
I'm sure I've missed something. Is there a how to on what needs to be changed to maintain sessions during a restart of the server?I've read Charlie Areharts presentation regarding this and he mentions that an understanding of Tomcat is helpful but I have found nothing that describes changes needed in Tomcat with a standard CF deployment. I added a file name to the Manager element in the XML file for CF Appreciate any help with this.
Every other application on my computer uses Control + O to open a file, how can I get CFBuilder to do the same?Thanks,Rich
I am trying to have a installation of Coldfusion 11 express on my Windows 7 machine display a site from a svn repository on a Windows server. I successfully set up a new project from SVN in the wwwroot directory of the express installation. However when accessing the site from a browser on my machine there are console errors indicating that it cannot find directories. When I access 127.0.0.1:8500/devsite I get some of the site with no styling due to what the console says is an inability to locate other directories at the same level. So in short:So I have an install of the site at C:\Coldfusion\cfusion\wwwroot\devsite.When I try to access 127.0.0.1:8500/devsite/directory I get the following error.HTTP Status 404 - /devsite/directorytype Status reportmessage /devsite/directorydescription The requested resource is not available.Apache Tomcat/7.0.52How do I fix this?
I am experiencing the most bizarre thing that so far I am unable to reproduce with my own visits to the site.After restarting Apache2 my cacti graphs show that the child processes increment consistently over the course of a day without dropping back down during off hours. This behavior eventually leaves the website inaccessible...Looking at server-status it is filled with Ws (Sending Reply) and GET calls to my cfm applications :Current Time: Tuesday, 22-Jul-2014 16:33:00 PDTRestart Time: Monday, 21-Jul-2014 22:51:12 PDTParent Server Generation: 0Server uptime: 17 hours 41 minutes 48 secondsTotal accesses: 194844 - Total Traffic: 3.8 GBCPU Usage: u201.55 s34.46 cu0 cs0 - .37% CPU load3.06 requests/sec - 63.2 kB/second - 20.6 kB/request73 requests currently being processed, 4 idle workersWWWWWWWWWWWWWWWWWWWWWWWWWKWWWWWWWWWWWWWWWWWCWWWWW_WWWWWWCWWW_WWW _WKW...KWW.W_KWW....W........................................... ................................................................ ..
When I attempt to edit my grid the following error is returned. error invoking CFC /design /Regstration.cfc : The PAGE argument passed to the getData function is not of type numeric.My getData function: code:<!--- Get data ---> <cffunction name="getData" access="remote" returntype="struct"> <cfargument name="page" type="numeric" required="yes"> <cfargument name="pageSize" type="numeric" required="yes"> <cfargument name="gridsortcolumn" type="string" required="yes"> <cfargument name="gridsortdirection" type="string" required="yes"> <cfquery name="rdc14" datasource="cfrdc"> select * FROM rdc2014 <cfif ARGUMENTS.gridsortcolumn NEQ "" and ARGUMENTS.gridsortdirection NEQ ""> &nbs
I have a MacBook Pro running Macintosh OS 10.9.4. I am using Java version 1.6.0_65I just ran the Developer installer for Coldfusion 11.I started the service using sudo ./coldfusion start and saw the following messages:Starting ColdFusion 11 server ...The ColdFusion 11 server is starting up and will be available shortly.======================================================================ColdFusion 11 server has been started.ColdFusion 11 will write logs to /Applications/CF11/cfusion/bin/../logs/coldfusion-out.logWhen I tried to navigate to 127.0.0.1:8501/CFIDE/administrator/index.cfm the page loads blank.I checked the error log and it gives me a long list of problems starting with a complaint about The APR based Apache Tomcat Native library:Sep 11, 2014 4:04:10 PM org.apache.catalina.core.AprLifecycleListener initINFO: The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: /Users/ericrose/Li
I have a report and use Excel as its format.The Excel sheet always name ColdFusionReport.I would like to know are there any way to customize the Excel sheet name and it is possible to have the report pages become sheet 1, sheet 2.... instead of all pages on the first sheet.Your help and information is great appreciated,Regards,Iccsi,
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.