Re: Help Desk / Trouble Ticket recommendation?

2007-03-17 Thread Robertson-Ravo, Neil (RX)
No, but the best stuff is rarely free :-) and yep, tight SVN integration. This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business, Registered in England, Number 678540. It contains information which is

Re: Help Desk / Trouble Ticket recommendation?

2007-03-17 Thread Andrew Peterson
Why would it have to be ColdFusion based? Do you want to extend it etc? Ray Camden has one, I can't remember the name though... Lighthouse I think. Yeah, Ray's Lighthouse Pro is great, but when I looked at it last (1 year ago) it didn't have what we needed unless I missed it. We need to track

Re: Help Desk / Trouble Ticket recommendation?

2007-03-17 Thread Raymond Camden
LighthousePro is it (lighthousepro.riaforge.org). I just added support for being able to create issues via email. Outside of that - I'm always looking for more ideas for it. On 3/17/07, Andrew Peterson [EMAIL PROTECTED] wrote: Why would it have to be ColdFusion based? Do you want to extend it

Re: CFGrid data not showing

2007-03-17 Thread Les Schmidt
Technically you don't you have to. If you specify just the query attribute in the cfgrid tag, and no cfgridcolumns it defaults to creating a column for column in the result set of the query. Hmm, didn't know that. Still stabbing in the dark...maybe you need to select real columns

Re: Help Desk / Trouble Ticket recommendation?

2007-03-17 Thread Cedric Villat
Andrew, shameless_plug We make CFTicket, which is written in ColdFusion and is open source (not free, but affordable). You can see it at www.cornfeed.com. It sounds like it does what you want, but you can check it out as there is an online demo you can play with. /shameless_plug Cedric Why

Coldfusion / Open Source CRM

2007-03-17 Thread Jake Pilgrim
Does anyone know of a coldfusion CRM out there? Ideally I would like a open source, Coldfusion CRM. It doesn't have to be all that fancy (I'm not looking for a SalesForce replacement) - even if it was just a contacts database it would be better than what I have now :). Thanks for your

Application.cfc and Client Variables

2007-03-17 Thread Randy Johnson
Hello, Here is the code I have at the top of my Application.cfc file: cfcomponent output=false cfset this.Name=Threader1 cfset this.sessionManagement = true cfset this.clientManagement = true In my Queue.cfc file I am getting this error when trying to use a client variable: The requested

Re: Help Desk / Trouble Ticket recommendation?

2007-03-17 Thread Robertson-Ravo, Neil (RX)
SVN integration :-) This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business, Registered in England, Number 678540. It contains information which is confidential and may also be privileged. It is for the

cfhttp/xml help

2007-03-17 Thread Bob Imperial
Hi Folks, I'm just getting started with learning the basics on pulling xml feeds with cfhttp and am in need of some help with an error I get with some feeds I'm playing with. Here's the code block I'm working with and I get the following error on this feed and a couple of others... Content is

Can I do this without evaluate?

2007-03-17 Thread Paul Vernon
I'm working on an event listener for our application framework and I've got a piece of code that I'd rather have work another way if possible. The code is: cfset evaluate(#registeredEventHandlers[counter]#(argumentCollection=arguments.ev entArguments)) currentEventHandlers[counter] evaulates to

Re: Help Desk / Trouble Ticket recommendation?

2007-03-17 Thread Jim Wright
Andrew Peterson wrote: Can someone recommend a good help desk/trouble ticket system? The ideal application would be cf based and open source. Thanks. While not CF based, I know quite a few people who swear by RT... http://bestpractical.com/rt

Re: cfhttp/xml help

2007-03-17 Thread Randy Johnson
Hi Bob, I had this happen with a couple rss feeds. I tried trimming the feed in case of any white space. That did not help it so I finally gave up. The weird thing is, the feeds worked fine if I put them in the RSS Reader. I currently use GreatNews for My RSS reader. I did some testing

RE: Help Desk / Trouble Ticket recommendation?

2007-03-17 Thread Dave Watts
Hmm... looks like it's $129 per user, so not really open source. Does it have svn integration? It's not open-source at all. That has nothing directly to do with price, however. Some commercial products are open-source, and some freeware is closed-source. FogBugz does integrate nicely with

Re: Visual Foxpro Drivers?

2007-03-17 Thread Dinner
+1 I have an old version from when it was free. Use it for old dbase clipper sync stuff. Works like a charm. On 3/16/07, Christopher J wrote: Greg, I'm running CF with FoxPro (unfortunately FoxPro 1.0 tables), and I was searching for Type 4 JDBC drivers about a year or so ago. You're in

Re: Can I do this without evaluate?

2007-03-17 Thread Mark Mandel
Paul - Why are listeners being registered by a string? Why not just pass trough the objects reference? If you have an object reference, you can do a dynamic method invocation through cfinvoke, and you wouldn't have an issue. Regards, Mark On 3/18/07, Paul Vernon [EMAIL PROTECTED] wrote: I'm

Re: Verity help with @ symbol

2007-03-17 Thread Dinner
Yup, simple was the kind of search I was thinking of. Escaping it should've done it... ( \@ ) Sorry, I hardly ever use verity :-/ I'd think that someone would have noticed if it was a bug by now... are you sure of the content you're searching for? No way there could be some hidden char or

Re: Can I do this without evaluate?

2007-03-17 Thread James Holmes
Try the cfinvoke tag? On 3/17/07, Paul Vernon [EMAIL PROTECTED] wrote: I'm working on an event listener for our application framework and I've got a piece of code that I'd rather have work another way if possible. The code is: cfset

downloading large files via cfhttp

2007-03-17 Thread Dov Katz
If I need to cfschedule a 10-40 mb download, is cfhttp going to buffer the entire input to memory if I specify a file to write it to? Also concerned about losing an available thread. I'm trying to basically do a wget in coldfusion and don't want to lose an available thread while I do it.

Create an Excel Spreadsheet

2007-03-17 Thread Pete
Hi there I have got a CF program which is working fine. I'd just like to try and improve the program. Basically it has been developed to export the results of a query to an excel spreadsheet (which it is doing). I'm just wondering if there is a way so as to create the first row in the

Re: Object Instantiation Error

2007-03-17 Thread Janet MacKay
There shouldn't be a (space) in between the double quote and the start of the class name. Remove the space and it should work. cfscript exifReader = createObject(java, (space)com.drew.imaging.coldfusion.CFreadExif); /cfscipt

Re: Create an Excel Spreadsheet

2007-03-17 Thread Dinner
On 3/17/07, Pete wrote: Right before the loop, do this: cfoutput ID#TabChar#Title#TabChar#FirstName#TabChar#LastName#TabChar#PrefNam e#TabChar#BusName#TabChar#Address#TabChar#Suburb#TabChar#StateID#Ta bChar#Postcode#TabChar#CountryCode#TabChar#Phone#TabChar#Fax#TabChar