725 Topics

Member Avatar for
Member Avatar for danarashad

I am having a problem installing CF 10. I keep getting an HTTP 500 Internal Server Error. Detailed Error Information **Module:** IsapiModule **Notification:** ExecuteRequestHandler **Handler ** cfmHandler **Error Code:** 0x80004005 ** Requested URL** http://127.0.0.1:80/CFIDE/administrator/index.cfm **Physical Path** C:\ColdFusion10\cfusion\wwwroot\CFIDE\administrator\index.cfm **Logon Method** Anonymous **Logon User** Anonymous

Member Avatar for danarashad
0
673
Member Avatar for mmonclair

I'm working on securing a form that is used for gathering info for online insurance quotes. The problem we've been having is that some insurance agents and rating services have been stealing our form and trying to use it on their sites. Well, there is info that we use to …

Member Avatar for mmonclair
0
298
Member Avatar for bennyboy1989

Hi I really need some help! Recently one of my sites have been hit with an iframe injection: `<iframe scrolling="no" frameborder="0" src="the source changes but normally htttp://collegefun4u.com/" width="0" height="1"></iframe>` It happens at random times and gets inserted in random include files. We have clean scanned all computers + server for …

Member Avatar for samh90
0
263
Member Avatar for ziggydog

Hi everybody I am populating an array of structures with info for a product enquiry. <!--- ADD PRODUCT TO CART ARRAY ROUTINE---> <cfif IsDefined("btn_add")> <a href="%5C"> <cfset temp = arrayAppend(session.enquirycontents, structNew())> <cfset session.enquirycontents[arrayLen(session.enquirycontents)].ID = #form.ID#> <cfset session.enquirycontents[arrayLen(session.enquirycontents)].product = #productdetail.product#> <cfset session.enquirycontents[arrayLen(session.enquirycontents)].prodnum = #productdetail.prodnum#> <cfset session.enquirycontents[arrayLen(session.enquirycontents)].quantity = #form.Quantity#> <cfset session.enquirycontents[arrayLen(session.enquirycontents)].dimensions = …

Member Avatar for ziggydog
0
177
Member Avatar for mmonclair

I have a form handling component I'm working on where I want to set up a SELECT statement that will take, in its WHERE clause, a line of text entered from a form and check it against a table with records of regular expressions. The regular expression contains a stub …

Member Avatar for pritaeas
0
266
Member Avatar for RickCJ7

I am rewriting an internal Coldfusion app that stores passwords in the database using Encrypt and Decrypt into C#. My Coldfusion code is using two parameters like this: `<cfset strDecrypted = decrypt(ToString(toBinary(strBase64Value)),"keycode") />` Where strDecrypted is the decrypted string returned, strBase64Value is the encrypted string in the database and "keycode" …

Member Avatar for arrgh
0
507
Member Avatar for cee.gee.50

Hi everyone. I have not done any type of coding in some years and can use some help with a simple yet frustrating task. I am trying to allow registered users to upload a "profile" photo to the server and insert the path into the database. I would like to …

Member Avatar for arrgh
0
247
Member Avatar for tapuwa2002

I have a form field that should contain a number only. How can validate so that is doesn't take letters. For example I dont want it s accept aydhasdsiFGGS when I submit the form. <CFIF (find([A-Z],Telephone)) gte "1"> <CFLOCATION URL="error.cfm?PassedError=Possible%Spam."> <CFABORT> </CFIF> Please help

Member Avatar for arrgh
0
99
Member Avatar for PhilEaton

Hi, I am used to HTML. What is Coldfusion? Why do people use it? What are the circumstances you would use it. Does it require proprietary software? What are the advantages and disadvantages to using it over HTML? Is it compatible with CSS,Javascript, PHP, and MySQL? What are personal opinions …

Member Avatar for arrgh
0
2K
Member Avatar for tapuwa2002

Hi Guys I have a number and I only want to display the first 3 digits could you please help. Thanks <cfset mytour=885879><cfoutput>#Left(#mytour#, 3)#</cfoutput> How can I make the result into a global variable to use later. Forgive me am a noob to coldfusion

Member Avatar for arrgh
0
110
Member Avatar for azgold

Having a issue with coldfusion. I just need a simple way to see if a date has passed and if so to update a field in a database. basically I have events showing on a page but want to remove the event automactically when it is over. Thanks for the …

Member Avatar for jardrake
0
127
Member Avatar for tapuwa2002

Hi Please could you assist I have made a validaion. But when the correct field is not entered properly. Validation works but the javascript pop does show please see code below. <CFIF email IS (find("@",address)) neq 1> <CFLOCATION URL="error.cfm?PassedError=Please%20Supply us email address."> <CFABORT> <script type="text/javascript"> alert('Please Check Your Email'); </script> …

Member Avatar for arrgh
0
285
Member Avatar for Decamm

Hi there, here i post new article because need to improve my upload function. What i want is to make my selecting item for uploading file to be multiple select, only by pressing "ctrl" button, like yahoo mail does. Here I create a code for upload file but the problem …

Member Avatar for arrgh
0
222
Member Avatar for subrata_ushasi

Hi all , I downloaded and installed farcry which is installed successfully . Only I like to know some tutorial links where I can get some help how to create website using farcry CMS and how to handle farcry CMS admin. Thanks in advance, Subrata

0
150
Member Avatar for teedoff

Im trying to figure out the best wasy to loop over an array, but limit one loop to the first five positions. Then in a separate loop display the rest of the array. I am limited to what I can use. Meaning we code everything within cfscript tags in our …

Member Avatar for arrgh
0
131
Member Avatar for raul prakash

I have a 64bit server with the Coldfusion 9.0.2 with IIS, our latest server scan for PCI compliance returned the following error as "urgent" Unify eWave ServletExec 3.0C UploadServlet Unprivileged File Upload Is this part of Coldfusion? or IIs. is it safe to remove it? how do i remove it?

Member Avatar for arrgh
0
76
Member Avatar for dipakatcvrca

Hi All, I have got a problem with ColdFusion 9 cfmail tag. My client recently complained that, while he sends a huge amount of mails simultaneously, some of the mails are not getting delivered, though it shows like it has been successfully delivered in the mail log. We have increased …

0
82
Member Avatar for raul prakash
0
69
Member Avatar for teedoff

I have two inputs for users to enter, what should always be a nueric string. This string gets processed and some mathmatical cals done to them, then the results are returned to the same page via cf div and bind attribute. Everything works if only numbers are entered. I have …

Member Avatar for arrgh
0
488
Member Avatar for ozbulldog

I have a problem with my site regularly exceeding Max User Connections. The limit from my hosting provider is 10 and I am regularly exceeding this amount for 1 database user. I'm unsure if this is due to a Coding Error / stuck or errored cfthread / malicious attack / …

Member Avatar for utdream
0
167
Member Avatar for danarashad

Is anyone running Coldfusion on a virtual server. If so, are their any problems with running CF on a virtual server? Thanks

Member Avatar for utdream
0
97
Member Avatar for mmonclair

I'm stumped on a query filter I'm trying to put together. Here's what I need it to do: 1. Run a query that populates a table with order information to be gathered for regular invoices. 2. A user can filter date ranges, location, client and payment status. The options in …

Member Avatar for mmonclair
0
264
Member Avatar for kanhucharan

I have created one search functionality using cfcollection, cfindex and cfsearch. Here the data are retrived from three tables. But when I perform any search operation then only it able to search those data that are in last table only. Please put forward your suggestion.

Member Avatar for fobos
0
40
Member Avatar for xpstyle36

Hey guys, My name is Dane and I am an 18 year old I.T Apprentice based in Blackpool. Our I.T manager has gone on holiday and I have had a call giving a deadline on getting a form on our intranet working, I look and it is all ColdFusion! I …

Member Avatar for xpstyle36
0
1K
Member Avatar for emaleroland

I was asked to look at some code written in ColdFusion which I've had very little exposure to and haven't seen since the 90s and some of it is not clear and I'm sure it's basic. I got past one error because of a typo in a variable name. Now, …

Member Avatar for arrgh
0
273
Member Avatar for ziggydog

Hi there everybody I am having problems with pagination using cfloop and the grouping of cfoutput in nested cfoutput tags. The code below lists my results eg: producer query results producer query results producer query results etc what i require is eg producer 1 query results 1 query results 2 …

Member Avatar for arrgh
0
150
Member Avatar for lgriess

I've seen other old old posts from 5 years ago asking why you would want to use cold fusion and no one came up with a proper answer as to why to use it over a more popular language platform like PHP or .Net. I'm against Cold Fusion, I've seen …

Member Avatar for arrgh
-1
239
Member Avatar for grabit

Hi CF people and a prosperous New Year to you all I have the following query on an action page: <cfquery name="getimage" datasource ="#dsn#"> SELECT ID, partImage, ImageAlt FROM engReconParts WHERE ID=#form.ID# </cfquery> when i run this page i get this error - Element ID is undefined in FORM. I …

Member Avatar for arrgh
0
104
Member Avatar for SusanHAllen

I am finding an extraneous  in a very simple cfm page. It does have a cfinclude of straight text named as a .cfm template. This character shows up with or without the cfinclude -- I add the cfinclude content into the main page and the character is still there. …

Member Avatar for arrgh
0
161
Member Avatar for mmonclair

Hi all, I have another CFHTTP question. I am on another project where I have one sign-in form, but depending on the user's prior activity, or lack thereof, I have three places I can direct them. 1. If they are a returning user, they go to the main target, an …

Member Avatar for arrgh
0
8K
Member Avatar for webmedia

My sms gateway save message data in log(MSSQL) in Hex code, like this: 0046003A0062006F006B0040007700650062006D0065006400690061002E0070006C These are Unicode message (16 bits per characters) Each 4 characters is AsciiHex representation of a character (in hex): For example: “0046” = 46hex = ‘F’ “003A” = 3Ahex = ‘:’ how can I convert this …

Member Avatar for webmedia
0
720
Member Avatar for lafalot

Hi, Sadly, I use MS Access as the backend db for our Coldfusion website. Every once in awhile, I receive the following error: "Error Executing Database Query. Operation must use an updateable query" This is in reference to an insert query that I have running. This query works most of …

Member Avatar for arrgh
0
101
Member Avatar for Nisha1705

Hi, Am doin ma final project usin asp.net which is website for hospital. What i want is when a user tries to create an account with the same name an error msg shud display. When i execute the code it says violation of primary key. I don wan t't to …

Member Avatar for arrgh
0
81
Member Avatar for teedoff

ok I've tried to work through this myself for several days, but there's something I'm missing. Either my queries are wrong, or my functions are wrong. I'm using Ben Fortas CF AJAX dynamic select drop downs tutorial and everything is working with no errors, but I'm not getting the desired …

Member Avatar for arrgh
0
481
Member Avatar for alinbabba

Hello everybody, I would like to start learning ColdFusion language and it is very hard to find a “teacher”. Let me explain: I have very little experience with HTML and CSS and … that’s about it. I am surprise how hard is to find literature necessary to learn ColdFusion (for …

Member Avatar for subrata_ushasi
0
749
Member Avatar for nakresimin

hi in the flex code i found this [ICODE]talkState = talkNotInit; bantimesePopup(); [/ICODE] in that pop up there is a link where user needs to click to go to it but instead of giving a popup only i would actually like to show the popup and redirect the user to …

0
77
Member Avatar for mmonclair

Hello all, I have a challenge. Here's the scenario: There are two sites. One has an activity and post-tests for some of those activities, and one has post-tests for the rest of them. They are two businesses, and for security purposes, neither allows direct queries of the other's backend from …

Member Avatar for mmonclair
0
4K
Member Avatar for SBA-CDeCinko

I have a .Net web service which appears to be working fine. I generates a WSDL and I can sucessfully test it locally. I am using the basic code below in CF to consume the service: [CODE]<cfinvoke method="getBannerViews" returnvariable="getBannerViews" webservice="http://www.xzxxxxxxxxx.org/ws/bannerAdViews.asmx?WSDL" refreshwsdl="true">[/CODE] Problem is, I am getting this very long error …

0
74
Member Avatar for mijorog

I can create the CFCHART just fine and also save it to a folder on my server just fine. But when I try to merge it into pdf I get An error occurred during the MERGE operation in the cfpdf tag. Error: Invalid Document C:/inetpub/wwwroot/Clients/visionmanagementservices.net/tempgraphs4/charts.jpg specified for source or directory. …

Member Avatar for mijorog
0
287
Member Avatar for Cheesecake87

Anyone tell me why this Coldfusion code aint working ? I built the system on the Coldfusion 9 developer server locally then uploaded it to a Coldfusion 8 hosted server and I get this strange error. Error can be seen here: http://75.126.153.165/$sitepreview/ka-radio.co.uk Code where error is highlighed can be seen …

Member Avatar for arrgh
0
180
Member Avatar for mijorog

In my database I have a datediscontinued. When someone runs a a report they select a start date (FORM.StartDate) and an end date (FORM.EndDate). I need to find the records where date discontinued is between the start and end date. If the start date is NEQ to the end date …

Member Avatar for arrgh
0
165
Member Avatar for geraldselectric

Can someone please look at my code and tell me where I am going wrong. I need to compare 2 tables and need to sum up to columns (temp.quantity) and cart1 (quantityout). Both tables have a common column called barcode. The code works when the temp table does not have …

Member Avatar for arrgh
0
88
Member Avatar for jayst19143

I am trying to Bind the value of Qty and Price to the Linetotal field but I'm get an error [I]window:global: uncaught exception: [Exception... "'SyntaxError: parseJSON' when calling method: [nsIDOMEventListener::handleEvent]" nsresult: "0x8057001c (NS_ERROR_XPC_JS_THREW_JS_OBJECT)" location: "JS frame :: chrome://firebug/content/net/spy.js :: callPageHandler :: line 807" data: no] (, line 0)[/I] I'm calling …

Member Avatar for jayst19143
0
324
Member Avatar for jsmall26

So I know coldfusion, so I'll post it like this... Whats the best ASP.net example of this coldfusion code? [CODE]<cfset mylist="red,blue,yellow,green"> <cfloop list="#mylist#" index="i"> <cfoutput>#i#</cfoutput> <BR> </cfloop>[/CODE] I can't find this example anywhere on the web. Thanks guys!

Member Avatar for Antenka
0
121
Member Avatar for sgsingh

Hi Guys, I am getting problem in coldfusion pdf pages which are generated dynamically with multiple pages. The problem is i need a pdf report which have every page border like table and data will come in table and one condition is as the heading of page one will also …

0
92
Member Avatar for montjoile

hi! I need to populate a flex combobox with the result query of a oracle db, using coldfusion. I have this code, but it is not functioning: my flex webpage: [CODE] <?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"> <mx:Label x="230" y="36" text="Selecionar Consolas"/> <mx:Script> <![CDATA[ import mx.events.*; import mx.collections.*; import mx.rpc.events.ResultEvent; …

Member Avatar for montjoile
0
235
Member Avatar for mmonclair

Hello, I've been wrestling with a problem for a few days, and after trying to Google the answer, I need to pose the question. I would like to create a new datasource for use by an application I'm working on. However, I do not have administrator access to my ColdFusion …

Member Avatar for arrgh
0
2K
Member Avatar for aksahoo17

Hi All, I am new to ColdFusion and i m using CF-8. I Want to create a Log file for error and i have done that, but the problem is that the text file "error.txt" content all the data retrieve by the CFERROR variables. But its store duplicate records as …

Member Avatar for aksahoo17
0
135
Member Avatar for tapuwa2002

I have made a select statement with a date condition seems like its not reading the date condition please check the code below [CODE] Select * From tbltest WHERE (((Validity.ToDate)<><cfqueryPARAM value = "#31/8/2011#" CFSQLType = 'CF_SQL_DATE'>) [/CODE] Please help I don't want dates that are equal to 31/08/2011 its getting …

Member Avatar for arrgh
0
257
Member Avatar for tapuwa2002

I would like to hide a value in cfoutput and have the browser not show it but the value is needed. I have tried styling to have white text but it no working please help [CODE] <cfsetting enablecfoutputonly="true"> <cfparam name="q" default="" /> <cfquery name="qryGetCountry" datasource="dbtest"> select * from Cities Where …

Member Avatar for arrgh
0
150

The End.