Re: ajaxonload() problem

2007-10-04 Thread Azadi Saryev
Thanks for your reply, Dale! yes, my cfgrid is bound to a cfc and you say it won't work then?... hmm... there must be a way if i understand you correctly: ajax UI stuff is loaded and rendered first, and then any data is loaded into ajax controls; and ajaxonload() fires inbetween the

RE: CFIMAGE Resize Slow

2007-10-04 Thread Todd Mathews
Try Efflare. CFIMAGE is nice for some things but still has a ways to go before it can catch up to ImageCR. Todd -Original Message- From: Eron Cohen [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 03, 2007 9:58 AM To: CF-Talk Subject: CFIMAGE Resize Slow I wondering if anyone

Re: error with ColdFusion 8 ODBC Agent

2007-10-04 Thread Vinu Kumar
I am trying to add a datasource to my new install of CF8 developer edition. When I went to do so in cf admin, the admin said The ColdFusion ODBC Server service is not running or has not been installed. So I figured the service wasn't set to automatic and went into services to start it up. When

RE: error with ColdFusion 8 ODBC Agent

2007-10-04 Thread Hareni Venkatramanan
Hi Jim, Just a small check, in the line createObject(component,cfide.adminapi.administrator).login(admin) Instead of admin, you need to provide your admin password. Is your admin password the same? Thanks, Hareni -Original Message- From: Jim Easterly [mailto:[EMAIL PROTECTED] Sent:

RE: Next lowest number from array (or list).

2007-10-04 Thread Asha K S
Hey thanks a lot for correcting I have just started learning. And one more thing in the code I posted was we need to break once the res has been set in order to avoid looping through the whole list. Thanks, Asha. -Original Message- From: Patti Lee [mailto:[EMAIL PROTECTED] Sent:

Re: Decimalformat() to round

2007-10-04 Thread ismail cassiem
Hi, Thank You but it still does not work it returns a value of 100.00 = 1 87.66 = 8 I then tried #NumberFormat(test,'000')# but the I get for 78,77 = 078 Regards Try #NumberFormat(test,'0')# _ Jake Churchill Team Leader 11204 Davenport, Ste. 100 Omaha, NE 68154

RE: Decimalformat() to round

2007-10-04 Thread Dale Fraser
#int(variable)# Regards Dale Fraser http://learncf.com -Original Message- From: ismail cassiem [mailto:[EMAIL PROTECTED] Sent: Thursday, 4 October 2007 5:59 PM To: CF-Talk Subject: Re: Decimalformat() to round Hi, Thank You but it still does not work it returns a value of 100.00 =

RE: ajaxonload() problem

2007-10-04 Thread Dale Fraser
There is probably a way of getting the CFC to access the page. Using javascript and innerHTML. I've tried it myself recently without luck. So im not sure if there are any technical reasons that the CFC wouldn't be able to access the page via javascript. Someone here should know. Regards Dale

RE: Decimalformat() to round

2007-10-04 Thread Asha K S
Hi, Why don't you try #round(test)#. Thanks, Asha. -Original Message- From: ismail cassiem [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 03, 2007 9:17 PM To: CF-Talk Subject: Decimalformat() to round Hi, Need help. #Decimalformat(test)# Result = 87.666 I want a result of 88.

CFGrid HTML Questions

2007-10-04 Thread Dale Fraser
I have a host of grid questions, google has helped me a lot but stuck on some. 1. Can I deselect the selected row using javascript so that either a different row or no row is selected. 2. Can the binded CFC modify the HTML, ie can the CFC do a Grid.refresh or even change the element of a

Re: Decimalformat() to round

2007-10-04 Thread ismail cassiem
Great... Thank You it works!!! #int(variable)# Regards Dale Fraser http://learncf.com Hi, Thank You but it still does not work it returns a value of 100.00 = 1 87.66 = 8 I then tried #NumberFormat(test,'000')# but the I get for 78,77 = 078 Regards

Re: Decimalformat() to round

2007-10-04 Thread ismail cassiem
Thanks, this also works... Thanks Hi, Why don't you try #round(test)#. Thanks, Asha. Hi, Need help. #Decimalformat(test)# Result = 87.666 I want a result of 88. Anyone please assist. Regards ~| Get the answers you

RE: Next lowest number from array (or list).

2007-10-04 Thread Dale Fraser
The reason I didn't break was in case the list wasn't in order. My version would work on an unordered list. Regards Dale Fraser http://learncf.com -Original Message- From: Asha K S [mailto:[EMAIL PROTECTED] Sent: Thursday, 4 October 2007 4:59 PM To: CF-Talk Subject: RE: Next lowest

RE: Decimalformat() to round

2007-10-04 Thread Dale Fraser
Hope you realise they are different. int(variable) will round down round(variable) will round average (up or down depending on if .5 or not) celling(variable) will round up Regards Dale Fraser http://learncf.com -Original Message- From: ismail cassiem [mailto:[EMAIL PROTECTED] Sent:

RE: CFGrid HTML Questions

2007-10-04 Thread Dale Fraser
Also, I think I have a bug. I am manually controlling the page in a paged list by setting the page variable. It works fine, so that (20 per page) when record 21 is added it takes you to page two, all is good except, the paging controls don't refresh, it does display that there are 2 pages, but

Re: Next lowest number from array (or list).

2007-10-04 Thread Andrew Scott
What would be more interesting is if you ordered the list would it be faster to execute compared to unordering the list? On 10/4/07, Dale Fraser [EMAIL PROTECTED] wrote: The reason I didn't break was in case the list wasn't in order. My version would work on an unordered list. Regards Dale

Re: XML Compression Script

2007-10-04 Thread Jochem van Dieten
jonese wrote: No we want to remove line breaks, carriage returns spaces etc. and then save it in our DB as a text data. I have something for that. Jochem !-- Copyright (c) 2007, Jochem van Dieten All rights reserved.

Passing query value via a javascript to next form

2007-10-04 Thread ismail cassiem
Hi, I need help passing the value through to the next form via javascript it does not like the value =+'#trim(Corp_Cust_Code)#'; cfoutput query=get_info tr onclick=onCust(); td #cust# /td /tr /cfoutput script language=javascript function onCust() {

Re: Passing query value via a javascript to next form

2007-10-04 Thread ismail cassiem
Sorry I copied it incorrectly buut still does not work. location.href=Mis012F3.cfm?dblib=#dblib#Corp=+'#trim(Corp_Cust_Code)#'; I think your missing a quote and a #. Change location.href=Mis012F3.cfm?dblib=#dblibCorp=+'#trim(Corp_Cust_Code)#'; to

Re: Case Sensitivity

2007-10-04 Thread David Low
Tim Ashworth wrote: I was under the impression that coldfusion was entirely case insensitive regardless of if it is on a windows or linux OS. So I'm quite happily writing everything in lower case and camel case, but my colleague is convinced that this is wrong. Whilst I appreciate that it's

Case Sensitivity

2007-10-04 Thread Tim Ashworth
Hi All, This is just a quickie, and really not too important. However it will clear up an argument that I'm having with my rather conservative colleague. I was under the impression that coldfusion was entirely case insensitive regardless of if it is on a windows or linux OS. So I'm quite

RE: Passing query value via a javascript to next form

2007-10-04 Thread Dale Fraser
I think your missing a quote and a #. Change location.href=Mis012F3.cfm?dblib=#dblibCorp=+'#trim(Corp_Cust_Code)#'; to location.href='Mis012F3.cfm?dblib=#dblibCorp#='+'#trim(Corp_Cust_Code)#'; but it still doesn't make sense why the + is in there. Regards Dale Fraser http://learncf.com

Re: Case Sensitivity

2007-10-04 Thread J.J. Merrick
From what I have encountered most things are case insensitive. The only thing I would say is if you are working with *nix disk access is that directories and filenames are case-sensitive or if you are calling anything in Java that that is case-sensitive. The only reason to check case would be for

RE: Passing query value via a javascript to next form

2007-10-04 Thread Dale Fraser
You are still missing a ' after the href= Regards Dale Fraser http://learncf.com -Original Message- From: ismail cassiem [mailto:[EMAIL PROTECTED] Sent: Thursday, 4 October 2007 9:36 PM To: CF-Talk Subject: Re: Passing query value via a javascript to next form Sorry I copied it

Re: Passing query value via a javascript to next form

2007-10-04 Thread ismail cassiem
Thank You for Your Assistance, I got it going. onclick=onCust('#trim(Corp_Cust_Code)#'); function onCust(cust) { location.href=Mis012F3.cfm?dblib=#dblib#Corp=+cust; } Thank You You are still missing a ' after the href= Regards Dale Fraser http://learncf.com Sorry I copied it

RE: Case Sensitivity

2007-10-04 Thread Dale Fraser
Beware, ColdFusion is becoming more case sensitive, so you should be careful. These new ColdFusion features (which are javascript) are case Sensitive. ColdFusion.Grid.refresh('gridName'); For example. Im not sure but I think (due to file system stuff) cfset me = createObject(component,

Re: Verity server inaccessible after Cf8 upgrade

2007-10-04 Thread Rick Root
so.. where can I download an installer for re-installing verity without reinstalling coldfusion? On 10/3/07, Rick Root [EMAIL PROTECTED] wrote: On 10/2/07, Jayesh Viradiya [EMAIL PROTECTED] wrote: You should also be able to download the Verity server from the place you got your CF8. And that

Re: OT: Query Help

2007-10-04 Thread Rick Root
I figured this out finally. Turned out that my data types for the row_id field were different... my query_results.row_id was an int, while giftab1.row_id was a nvarchar(7)... I didn't make the original giftab1 table so I have no idea WHY it was such, since row_id contains only unique integers!)

RE: Passing query value via a javascript to next form

2007-10-04 Thread Bobby Hartsfield
I don't know what is in your variable but #justStringFormat()# is a big headache saver when you are not sure either. ..:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: ismail cassiem [mailto:[EMAIL PROTECTED] Sent: Thursday, October 04,

date format display

2007-10-04 Thread Orlini, Robert
Hello, I brought this up before, but I need a date (displayed for example as: 20071104) to be formatted to display as 11-04-2007. It is not a date/time field just a char field in SQL. The name of the field is enddate. Thanks as always. Robert O. I tried: #dateformat(get.enddate,MMDD)#, but

Re: code not working

2007-10-04 Thread Kris Jones
You could just cfparam the value with a zero: cfparam name=form.availabletest default=0 / .. . . INNER JOIN dbo.People AS p ON p.people_id=ps.peopleSummary_peopleID WHERE peopleSummaryPeriod=#getcurrentperiod.peopleSummaryPeriod# AND ps.peopleSummary_peopleID IN (#form.availabletest#) .. . .

Re: CFGRID Binding without Paging

2007-10-04 Thread gary gilbert
Hi Dale, You should be able to access the underlying EXT Grid and remove the footer panel. script language=javascript removeFooter = function() { mygrid = ColdFusion.Grid.getGridObject('thegridname'); mygrid.getView().getFooterPanel().remove(); } /script then at the end of your cfm page cfset

SPRY Image Loading Question

2007-10-04 Thread Chad McCue
I am running the latest version of SPRY and ColdFusion 7 and I am using the SpryPagedView.js functionality for displaying my products. The problem I am having (only on IE 6) is that the first page loads fine and displays all my information including the product thumbnails, but if I hit Next Page

Re: Voting System: Not allowing multiple votes

2007-10-04 Thread Tom Chiverton
On Thursday 04 Oct 2007, [EMAIL PROTECTED] wrote: Thoughts? Someone asked on the newsgroup a few months back. The up shot is you can't. Even if you have a Java app that reads the NIC's MAC, it's trivial to change the MAC through software. Ditto a hardware hash. It depends what the likely

RE: Case Sensitivity

2007-10-04 Thread Andy Matthews
Dale... The ColdFusion.navigate functionality is only case-sensitive because Javascript is a case-sensitive language. So when CF creates javascript code, it has to abide by the requirements of that language. Cutter and I have disagreed about case before as well. His logic about case being an

Re: date format display

2007-10-04 Thread Paul Hastings
Orlini, Robert wrote: Thanks Paul. How is this incorporated into the dateformat function? I'm new to this. you can either build a real date object from date using createDate() or if you're simply going to display it: #thisMonth#-#thisDay#-#thisYear# or whatever.

RE: date format display

2007-10-04 Thread Marius Milosav
cfoutput#dateformat(CreateDate (thisYear, thisMonth, thisDay),-MM-DD)#/cfoutput Marius -Original Message- From: Orlini, Robert [mailto:[EMAIL PROTECTED] Sent: October 4, 2007 9:23 AM To: CF-Talk Subject: RE: date format display Thanks Paul. How is this incorporated into the

RE: date format display

2007-10-04 Thread Orlini, Robert
Thanks. Removing quotes however produced: 568521023. Not nayhting near: 11-04-2007 -Original Message- From: Marius Milosav [mailto:[EMAIL PROTECTED] Sent: Thursday, October 04, 2007 8:55 AM To: CF-Talk Subject: RE: date format display Try removing the quotes around get.enddate

Re: Voting System: Not allowing multiple votes

2007-10-04 Thread Greg Morphis
Make them log into your website.. one vote per login. Other than that, I doubt you'd be able to always block a dupe voter.. On 10/4/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: All, We all know the scenario, we want to limit the amount of time a person can vote or at least vote within a

Re: Case Sensitivity

2007-10-04 Thread Cutter (CFRelated)
Very good point, and one I've been caught on before. No, CF tag and function syntax is not case sensitive, so cfquery name=qry and CFQUERY NAME=qry are the same, as is createobject( and CreateObject(. That being said, and as mentioned before, anything related to the file system will be. If you

Voting System: Not allowing multiple votes

2007-10-04 Thread coldfusion . developer
All, We all know the scenario, we want to limit the amount of time a person can vote or at least vote within a 24 hour timeline. That's all fine and dandy, but how can we prevent a user from clearing their cookies or closing and restarting the browser to simply come back and vote again with

RE: date format display

2007-10-04 Thread Marius Milosav
Try removing the quotes around get.enddate #dateformat(get.enddate,MMDD)# Marius Milosav ScorpioSoft Corp. www.scorpiosoft.com It's not about technology, it's about people -Original Message- From: Orlini, Robert [mailto:[EMAIL PROTECTED] Sent: October 4, 2007 8:43 AM To: CF-Talk

Re: date format display

2007-10-04 Thread Paul Hastings
Orlini, Robert wrote: I brought this up before, but I need a date (displayed for example as: 20071104) to be formatted to display and if you did you'll have been told to parse your date string. thisYear=left(get.enddate,4); thisMonth=mid(get.enddate,5,2); thisDay=right(get.enddate,2);

RE: date format display

2007-10-04 Thread Paul Vernon
I seem to remember someone else responded that you need to drop your quotes from the first example you gave last time you asked this. #dateformat(get.enddate,MMDD)# SHOULD BE: #dateformat(get.enddate,MMDD)# The difference being, get.enddate is a string and get.enddate is a date. Paul

Re: CF and Xandros (Debian) Linux

2007-10-04 Thread Tom Chiverton
On Thursday 04 Oct 2007, [EMAIL PROTECTED] wrote: and he's anti-Microsoft. I think he's made his choice based on Xandros's claim of working better as a server on a network of Windows clients. He's How can he claim that ?!? It's all just Samba... -- Tom Chiverton Helping to apprehensively

RE: date format display

2007-10-04 Thread Orlini, Robert
Thanks Paul. How is this incorporated into the dateformat function? I'm new to this. -Original Message- From: Paul Hastings [mailto:[EMAIL PROTECTED] Sent: Thursday, October 04, 2007 8:58 AM To: CF-Talk Subject: Re: date format display Orlini, Robert wrote: I brought this up before,

RE: date format display

2007-10-04 Thread Orlini, Robert
Thanks Marius. OK. Works for year, month, but not day I did this code to format the date: 20071104 CFSET thisYear=left(get.enddate,4) CFSET thisMonth=mid(get.enddate,5,2) CFSET thisDay=right(get.enddate,2) I got Year: 2007 Month: 11 Day: Works for Year and month, but does not display the

Re: Case Sensitivity

2007-10-04 Thread Tom Chiverton
On Thursday 04 Oct 2007, [EMAIL PROTECTED] wrote: I find no good reason that Andy.cfm should be different than andy.cfm. Let introduce you to my friend, Mr A. Sci-Code :-) -- Tom Chiverton Helping to advantageously harness prospective materials on: http://thefalken.livejournal.com

Re: Case Sensitivity

2007-10-04 Thread Kris Jones
Not sure about CF8, but previously, Application.cfm, OnRequestEnd.cfm are also treated with case sensitivity. On a *nix system, CF wouldn't find them (i.e., wouldn't treat them as it should) if they weren't spelled with the case-sensitive name. Again, on *nix, since java is case-sensitive, it's

Re: Voting System: Not allowing multiple votes

2007-10-04 Thread Tom Chiverton
On Thursday 04 Oct 2007, [EMAIL PROTECTED] wrote: Make them log into your website.. one vote per login. Obvious work around, multiple accounts. -- Tom Chiverton Helping to assertively embrace global e-tailers on: http://thefalken.livejournal.com

Re: Voting System: Not allowing multiple votes

2007-10-04 Thread Tero Pikala
All, We all know the scenario, we want to limit the amount of time a person can vote or at least vote within a 24 hour timeline. That's You could consider using mobile phone number (send SMS with code that is required to vote) or postal address (send letter that has instructions how to

RE: date format display

2007-10-04 Thread Orlini, Robert
All works now. Thanks Paul V., Paul H., and Marius! I did: CFSET thisYear=left(get.enddate,4) CFSET thisMonth=mid(get.enddate,5,2) CFSET thisDay=mid(get.enddate,8,2) Contract will expire on: #thisMonth#/#thisday#/#thisYear# Displays as: 11/4/2007 -Original Message- From: Paul

Re: Odd cfqueryparam issue

2007-10-04 Thread Scott Weikert
Hey folks, Still having this issue, and would like some more eyes on it, if possible. Below is my original post from earlier this week. I'm getting an odd error when using cfqueryparam. I've got the type set to cf_sql_integer - the value I'm passing is an integer (even throwing Int() into

CF8, Flex, and Remoting over SSL

2007-10-04 Thread Rick Root
So I upgraded my server to CF8 this weekend, and of course once again, all my flex remoting calls are going over http instead of https. so I went into the remoting-config.xml (apparently this is where the destination Coldfusion is now defined... and I changed the default channel to

Re: CF8 Problem with DB2 JDBC driver

2007-10-04 Thread Tom Chiverton
On Thursday 04 Oct 2007, [EMAIL PROTECTED] wrote: After the upgrade to CF8, we've found that Coldfusion seems to be sending multiple authentication attemps - as many as 9 - in the case of an invalid password. Could this be connection pooling related ? Does turning that off help ? -- Tom

Re: Voting System: Not allowing multiple votes

2007-10-04 Thread Greg Morphis
True.. I don't believe you can then.. However you can make it such a pain that would deter most people. Force log in, unique to email, verify email, use CAPTCHA. Record IP, etc.. a combination of all those would deter a lot of people. On 10/4/07, Tom Chiverton [EMAIL PROTECTED] wrote: On

Re: CF 8 Load Time Problem

2007-10-04 Thread Tom Chiverton
On Thursday 04 Oct 2007, [EMAIL PROTECTED] wrote: We are still having a huge problem with createObject calls in ColdFusion 8 taking up to 300 seconds. Please help! Below is a stack trace from Fusion Reactor. What are you creating ? What does the object do at startup ? -- Tom Chiverton

CF8 Problem with DB2 JDBC driver

2007-10-04 Thread Rick Root
So another weird little issue with the CF8 upgrade. We authenticate our users to the mainframe like this: cflog log=APPLICATION text=[authByUsername] Authorization attempt for #UNAME# from #CGI.REMOTE_ADDR# cfquery name=auth datasource=DB2Logins username=#UNAME# password=#PWORD#

Re: CF 8 Load Time Problem

2007-10-04 Thread Ryan Duckworth
Thank you for your recommendations. We do have Save Class Files turned on for our productions servers. We are still having a huge problem with createObject calls in ColdFusion 8 taking up to 300 seconds. Please help! Below is a stack trace from Fusion Reactor. customerImport2.cfm:13 is a

Re: CF8, Flex, and Remoting over SSL

2007-10-04 Thread Tom Chiverton
On Thursday 04 Oct 2007, [EMAIL PROTECTED] wrote: Content-Length: 331 What the content here say ? -- Tom Chiverton Helping to interactively syndicate sticky meta-services on: http://thefalken.livejournal.com This email is sent for and on

Flash forms not doing anything.

2007-10-04 Thread Ian Skinner
I have the simplest test of a flash form and nothing is happening. I mean nothing, no errors displayed or logged, no output to the browser, nothing. body Start cfform name=foo action=form_test.cfm format=flash cfinput type=text name=bar/ /cfform End /body The output in the browser:

Re: Voting System: Not allowing multiple votes

2007-10-04 Thread Tom Chiverton
On Thursday 04 Oct 2007, [EMAIL PROTECTED] wrote: once. Some countries have pretty good systems to identify identities online but that depends on your target market. The trouble with that is you can no longer be sure the person placing the vote isn't being coerced. -- Tom Chiverton Helping

Re: CF8, Flex, and Remoting over SSL

2007-10-04 Thread Rick Root
On 10/4/07, Tom Chiverton [EMAIL PROTECTED] wrote: On Thursday 04 Oct 2007, [EMAIL PROTECTED] wrote: Content-Length: 331 What the content here say ? Fiddler doesn't decode AMF content... When I highlight the hex content, it says the length is 331... so that must be it :) -- Rick Root

Re: CF8 Problem with DB2 JDBC driver

2007-10-04 Thread Rick Root
I have the log file from DB2 as well... 08:44:36.07 USER(myusername ) GROUP(ADUADS ) NAME(ROOT, RICK ) 149 LOGON/JOB INITIATION - INVALID PASSWORD 08:44:37.10 USER(myusername ) GROUP(ADUADS ) NAME(ROOT, RICK ) 152 LOGON/JOB INITIATION - INVALID PASSWORD 08:44:38.13

CFReportParam question

2007-10-04 Thread Christopher Jordan
Has anyone here successfully passed a query object into the report builder via the cfreportparam tag? I've got the following code snippet: cfreport name=myReport format=PDF template=#reporttemplate# query=#ReportData# cfreportparam name=advisor value=#advisor.Description# cfreportparam

Re: Voting System: Not allowing multiple votes

2007-10-04 Thread Tom Chiverton
On Thursday 04 Oct 2007, [EMAIL PROTECTED] wrote: a combination of all those would deter a lot of people. As I said, look at your threat profile. If you are intending to run (say) a nation wide election for prime minister, none of the above is good enough because your attacker is likely to be

Case Sensitivity

2007-10-04 Thread Tim Ashworth
Oh well, guess the consensus is not on my side. Oh well. *mopes off to check app* ~| ColdFusion 8 - Build next generation apps today, with easy PDF and Ajax features - download now

Re: CF8 Problem with DB2 JDBC driver

2007-10-04 Thread Rick Root
On 10/4/07, Tom Chiverton [EMAIL PROTECTED] wrote: On Thursday 04 Oct 2007, [EMAIL PROTECTED] wrote: After the upgrade to CF8, we've found that Coldfusion seems to be sending multiple authentication attemps - as many as 9 - in the case of an invalid password. Could this be connection

Re: CF8, Flex, and Remoting over SSL

2007-10-04 Thread Tom Chiverton
On Thursday 04 Oct 2007, [EMAIL PROTECTED] wrote: On 10/4/07, Tom Chiverton [EMAIL PROTECTED] wrote: On Thursday 04 Oct 2007, [EMAIL PROTECTED] wrote: Content-Length: 331 What the content here say ? Fiddler doesn't decode AMF content... When I highlight the hex content, it says the

Best Instant Messanger to Use With CF 8

2007-10-04 Thread Eron Cohen
Can anyone recommend the best free instant messenger server to use with ColdFusion's Instant Messaging Event Gateway? Thank you ~| Get the answers you are looking for on the ColdFusion Labs Forum direct from active

Re: CFReportParam question

2007-10-04 Thread Kris Jones
I've used the query attribute of the cfreport tag without issue. I have not used the cfreportparam tag to pass in a query. In the report builder, this query should show-up in your objects pallette per normal. Cheers, Kris Has anyone here successfully passed a query object into the report

CF8/IIS6 issues

2007-10-04 Thread todd sharp
I moved my blog to my VPS last night - the VPS account is Windows 2003/IIS6/CF8. I added a new site in IIS, removed and reran all connectors and I'm still getting nothing but a blank page for all .cfm pages under this site. There is a cflocation at the root (http://cfsilence.com) that works -

Re: CF8 Problem with DB2 JDBC driver

2007-10-04 Thread Tom Chiverton
On Thursday 04 Oct 2007, [EMAIL PROTECTED] wrote: Where do I disable that? Settings for the DSN in CF admin. -- Tom Chiverton Helping to carefully cultivate cross-platform content on: http://thefalken.livejournal.com This email is sent for

Re: MS SQL Triggers and Coldfusion 8

2007-10-04 Thread [EMAIL PROTECTED] [EMAIL PROTECTED]
Thanks, Ben! For some reason the hotfix isn't resolving the issue for me, which is weird. But the AlwaysReportTriggerResults=true trick works fine, so I'll just use that. Thanks for your help! Jim Sullivan Hey Jim, that issue was fixed with the latest hotfix.

Re: CF8 Problem with DB2 JDBC driver

2007-10-04 Thread Rick Root
On 10/4/07, Tom Chiverton [EMAIL PROTECTED] wrote: On Thursday 04 Oct 2007, [EMAIL PROTECTED] wrote: Where do I disable that? Settings for the DSN in CF admin. the reason I asked the question is because I looked there, and there is no mention of connection pooling on the page titled Data

Re: CF8/IIS6 issues

2007-10-04 Thread todd sharp
I should also mention that i have another site running just fine on the same setup (http://cfsnippets.org) ~| Get the answers you are looking for on the ColdFusion Labs Forum direct from active programmers and developers.

SOT: Rollback db changes in CFCUnit/CFUnit tests

2007-10-04 Thread Janet MacKay
Does anyone know of an article(s) explaining how to work rollbacks into unit testing? I want to test a series of DAO's, but am not sure how to incorporate this into my tests. Janet ~| ColdFusion 8 - Build next generation

RE: Odd cfqueryparam issue

2007-10-04 Thread Bobby Hartsfield
Are you sure that's the line where the error is happening... CF likes to BOLD a line in queries when a DB error occurs but it's hardly ever that line that is the problem. Let's see the whole query. ..:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original

Re: Case Sensitivity

2007-10-04 Thread Jochem van Dieten
Andy Matthews wrote: Cutter and I have disagreed about case before as well. His logic about case being an issue when migrating between OS is sound in all but one way. If the OS itself didn't implement case-sensitivity then code wouldn't have to either. You are getting this the wrong way

RE: Case Sensitivity

2007-10-04 Thread Andy Matthews
No no. I understand that they ARE different in the underlying ascii code. But the point is, it simply presents confusion to people when a file name can be spelled the exact same, but be two unique files. I had a discussion about programming with a co-worker this morning. We decided that much of

Re: CFReportParam question

2007-10-04 Thread Christopher Jordan
Thanks Kris, I'm using the query attribute of the cfreport tag without problems too, but the query attribute of the cfreportparam tag doesn't seem to be working, or isn't working the way I'd expect it to. What do you mean by show-up in your objects pallet? Are you talking about the Fields and

Re: CF8/IIS6 issues

2007-10-04 Thread C. Hatton Humphrey
I moved my blog to my VPS last night - the VPS account is Windows 2003/IIS6/CF8. I added a new site in IIS, removed and reran all connectors and I'm still getting nothing but a blank page for all .cfm pages under this site. There is a cflocation at the root (http://cfsilence.com) that

RE: Rollback db changes in CFCUnit/CFUnit tests

2007-10-04 Thread Rich
Does anyone know of an article(s) explaining how to work rollbacks into unit testing? I want to test a series of DAO's, but am not sure how to incorporate this into my tests. Janet You can incorporate a tool like DBUnit into your workflow (http://dbunit.sourceforge.net/). HTH, Rich Kroll

Re: CFReportParam question

2007-10-04 Thread Kris Jones
Yes, I mean the Fields and Parameters section, under the Query Fields item. I don't believe that query is legal parameter of cfreportparam tag--only of the cfreport tag. From the livedocs, only name and value are legal attributes of the cfreportparam tag. I have not been successful passing

Re: Rollback db changes in CFCUnit/CFUnit tests

2007-10-04 Thread Janet MacKay
You can incorporate a tool like DBUnit into your workflow (http://dbunit.sourceforge.net/). HTH, Rich Kroll Thanks. I'm new to unit testing in general, so sorry if this is a dumb question :) .. I think I understand the concept of DBUnit, but I can't visualize where it fits into picture. Are

Re: ajaxonload() problem

2007-10-04 Thread Brian Kotek
Instead of binding the grid to a CFC directly, use the cfajaxproxy. Bind the grid to a JavaScript function, and set the grid's bindOnLoad attribute to true so it runs that JavaScript function when the Grid loads the first time. Then, in your JavaScript function, make a call to the CFC proxy and

Re: Voting System: Not allowing multiple votes

2007-10-04 Thread [EMAIL PROTECTED] [EMAIL PROTECTED]
What I ended up doing is using cookies and storing the email in a table. We decided to use email verification and allow multiple votes but only one vote each day. So we can control the amount of votes by a single user each day and fake, made up emails still have to verified via email. If an email

How to re-install Verity for CF8

2007-10-04 Thread Rick Root
Starting a new thread for this so maybe I'll get an answer. With Coldfusion 7, there was a place on the web site you could download an installer that could be used for re-installing Verity. Well, my verity is messed up and I'd like to reinstall it... but can't find a Verity installer on Adobe's

Expiration Settings of Client Variables

2007-10-04 Thread Alex Ismail
We are in need to expire client variables at the same rate as session variables. In our case this is 2 hours. Unfortunately, our client variables expire randomly well before 2 hours are passed. What are correct settings to achieve this? Our configuration: - Client variables are stored in their

cfmail stuck in spool

2007-10-04 Thread Tim Do
Anybody know why this happens every once in a while? Using cfmx 7.01 and exchange. Last couple weeks I've noticed that mail stops going out and just sits in the spool folder. Once I restart cf services they all go out at once. Been happening more often lately so I'm getting a little worried.

RE: Rollback db changes in CFCUnit/CFUnit tests

2007-10-04 Thread Rich
Thanks. I'm new to unit testing in general, so sorry if this is a dumb question :) .. I think I understand the concept of DBUnit, but I can't visualize where it fits into picture. Are DBUnit tests something separate, written in java, or do they somehow tie into my CFUnit/CFCUnit tests? Can

Re: CF 8 Load Time Problem

2007-10-04 Thread Ryan Duckworth
We may have found a problem... We create a bunch of functions and put them in the request scope. On that page, just before the createObject calls was a call to one of those functions in the request scope but is was missing the request scope. Correctly Scoped Call: request.param(form.action,);

RE: Case Sensitivity

2007-10-04 Thread Billy Cox
I can see lots of benefit to having both application.cfm and Application.cfm in the same directory. It's like killing two stones with one bird. :) -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Thursday, October 04, 2007 12:05 PM To: CF-Talk Subject: RE: Case

Re: Expiration Settings of Client Variables

2007-10-04 Thread Brian Kotek
I'm pretty sure client variables don't work like that (though it's been so long since I used them that I could be mistaken). I'm pretty sure all the purge interval does is set the frequency that the server will actually check to see if it should purge anything, not the time that a given client

RE: CFIMAGE Resize Slow

2007-10-04 Thread Jayesh Viradiya
I had posted this yesterday but somehow didn't reach on HouseOfFusion. --- Hi Eron CF8 Offers a lot many different options for algorithms/Perf-Quality parameter to be set with ImageResize() function. Refer Documentation for

Re: Expiration Settings of Client Variables

2007-10-04 Thread Brian Kotek
I wrote a custom tag a long, long time ago that will do something like this. However, I haven't looked at it in about 8 years so you're on your own as far as how well it actually works! ;-) http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetailextid=1000977 On 10/4/07, Brian

RE: CFIMAGE Resize Slow

2007-10-04 Thread Jayesh Viradiya
Hi Todd, We appreciate your feedback. It would be good if you can pinpoint something specifically which we can take as an item on our TO DO list. Thanks Regards, Jayesh Viradiya Adobe CF Team -Original Message- From: Todd Mathews [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 03,

Re: Rollback db changes in CFCUnit/CFUnit tests

2007-10-04 Thread Janet MacKay
Thanks Rich. That is helpful. Off to download and review DBUnit. Thanks, Janet ~| Check out the new features and enhancements in the latest product release - download the What's New PDF now

Re: cfmail stuck in spool

2007-10-04 Thread Cutter (CFRelated)
See if this helps any: http://blog.cutterscrossing.com/index.cfm/2006/12/10/ColdFusion-Mail-Spool-Lock Steve Cutter Blades Adobe Certified Professional Advanced Macromedia ColdFusion MX 7 Developer _ http://blog.cutterscrossing.com Tim Do wrote: Anybody know why

Re: Flash forms not doing anything.

2007-10-04 Thread Ian Skinner
Ian Skinner wrote: I have the simplest test of a flash form and nothing is happening. I mean nothing, no errors displayed or logged, no output to the browser, nothing. body Start cfform name=foo action=form_test.cfm format=flash cfinput type=text name=bar/ /cfform End /body

  1   2   >