RE: What determines session inactivity timeouts?

2006-04-25 Thread Ashwin Mathew
The session's last accessed time is updated every time a page is hit, and every time a session variable is read, written or removed. CF does not attempt to keep the session active during page processing. If you do have pages running longer than your session timeout, you'll either have to increase t

Re: CFMX 7.0.1 and MS SQL 2005

2006-04-25 Thread Aaron Rouse
Is DTS no longer in MSSQL 2005? On 4/25/06, Dave Watts <[EMAIL PROTECTED]> wrote: > > > There are no issues that I know of between coldfusion and > > SQLServer2005, although i certainly have great difficulty > > deploying databases without DTS. I have been asking > > everywhere i can find and no

Re: Ldap --> structure = Not String and Not Object

2006-04-25 Thread James Holmes
I also recommend that you stop asking that particular friend about CF - the only buggy thing here is that person's understanding of CF syntax. "So I asked a friend of mine and he suggested adding the "##" and maybe putting the column in the variable name because he found CF to be a bit buggy in si

Re: What determines session inactivity timeouts?

2006-04-25 Thread powell
Thanks Mike, but I was looking for a bit more granular detail - I know that the page request resets the inactivity timer. But that occurs at the beginning of the page processing - I'm more concerned about what happens after that point in order to keep the session active. Is CF keeping the sessi

RE: CFMX 7.0.1 and MS SQL 2005

2006-04-25 Thread Dave Watts
> There are no issues that I know of between coldfusion and > SQLServer2005, although i certainly have great difficulty > deploying databases without DTS. I have been asking > everywhere i can find and no one has a solution. > > Cant use replication - permissions > cant use 'database transfer

Re: CFMX 7.0.1 and MS SQL 2005

2006-04-25 Thread Mike Kear
We have the full SQLServer2005 running in a shared environment with probably several hundred sites over the whole system, along with CFMX7.0.1. There are no issues that I know of between coldfusion and SQLServer2005, although i certainly have great difficulty deploying databases without DTS. I ha

RE: What determines session inactivity timeouts?

2006-04-25 Thread Dawson, Michael
Every .cfm page request, regardless of session variable usage, within a given application, resets that particular session's timeout counter. CF's session management is related to the session cookies (cfid/cftoken or the J2EE session) that are automatically set, by ColdFusion. You do not need to c

What determines session inactivity timeouts?

2006-04-25 Thread powell
What started out as a simple exercise has gone crazy. All I wanted to do was to give my users a warning of impending session timouts and give them the opportunity to refresh the session. I tried using the tag but it's a bit too simplistic - I used it to setup a JS call to set a timer for a f

RE: Uploading multiple files - not necessarily CF

2006-04-25 Thread Mark Leder
Bubbleshare is using the image uploader that I suggested (aurigma), only the active X version. The app itself is Flash the uploader is ActiveX or Java Thanks, Mark -Original Message- From: Ryan Guill [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 25, 2006 4:42 PM To: CF-Talk Subject: Re

Re: Uploading multiple files - not necessarily CF

2006-04-25 Thread Ryan Guill
here is a flash 8 application that allows multiple file uploads. I never did dig in to see how it was done, but you are free to try. http://www.bubbleshare.com/upload/mmflash On 4/25/06, Patrick McGeehan <[EMAIL PROTECTED]> wrote: > Aren't there Flash solutions now? I used to use a JAVA applet

Re: coupons inc script - convert VB to CF UDF

2006-04-25 Thread Jim Priest
> From: Robert Everland III <[EMAIL PROTECTED]> > I have corrected your function, I added in some vars. The mod was definitely > going to be an issue, so I just added 1 to it, you were also using the > variable m in there and m wasn't used anywhere so I changed that to i, enjoy. Robert (and eve

RE: Uploading multiple files - not necessarily CF

2006-04-25 Thread Patrick McGeehan
Aren't there Flash solutions now? I used to use a JAVA applet at a previous position and remember the head ache of client computers having the wrong java version. This looked good at first glance http://72.14.203.104/search?q=cache:SF1om3zwEeYJ:labs.oinam.com/flash8/f ileuploaddownload/+flash+mu

RE: Uploading multiple files - not necessarily CF

2006-04-25 Thread Everett, Al \(NIH/NIGMS\) [C]
I'll dig into that. Gotta get Java installed though. -Original Message- From: Mark Leder [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 25, 2006 4:14 PM To: CF-Talk Subject: RE: Uploading multiple files - not necessarily CF The java app I mentioned will fit directly into your html, and w

RE: Uploading multiple files - not necessarily CF

2006-04-25 Thread Mark Leder
The java app I mentioned will fit directly into your html, and will accept images, docs, etc, fully configurable. Also has CF examples. Thanks, Mark -Original Message- From: Everett, Al (NIH/NIGMS) [C] [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 25, 2006 4:09 PM To: CF-Talk Subject:

RE: Uploading multiple files - not necessarily CF

2006-04-25 Thread Everett, Al \(NIH/NIGMS\) [C]
I've been told that whatever solution we go with has to work in the current application "flow." In other words, we need to be able to seamlessly slot the solution into our current web application. Sending the users to a separate application is a non-starter. I need something that, ideally, can fit

Re: replacement for QoQ

2006-04-25 Thread Michael Dinowitz
My new function or the original query of queries? The function can be found here: http://www.blogoffusion.com/index.cfm/2006/4/25/Query-of-Query-function while the original query of queries is: select * from requestvarvalue where lower(idobject) in (#lcase(allowobjects)#) .. Th

Re: coupons inc script - convert VB to CF UDF

2006-04-25 Thread Robert Everland III
I have corrected your function, I added in some vars. The mod was definitely going to be an issue, so I just added 1 to it, you were also using the variable m in there and m wasn't used anywhere so I changed that to i, enjoy.

Re: Scanning Documents to ColdFusion

2006-04-25 Thread Denny Valliant
You could use a directory watcher event gateway... maybe prepend some id to the file name so you know where to put it afterwards... far easier may be to simply use a form with a file field, and have them attach the scan file. Depends on your setup and what you're trying to achieve. Automatically

RE: coupons inc script - convert VB to CF UDF

2006-04-25 Thread Dan G. Switzer, II
Jim, >I'm working on a project where I need to send people to Coupons Inc to >get a coupon. They provided an alogrithm which generates a key used >in a URL which allows tracking, etc. One thing to remember is arrays in VB start at zero and arrays in CF start at one. I'd change your "vob" varia

Re: CFMX 7.0.1 and MS SQL 2005

2006-04-25 Thread Denny Valliant
I'm running express 2005 with the default driver, no problems so far... On 4/25/06, Aaron Rouse <[EMAIL PROTECTED]> wrote: > > I have been running MSSQL 2005 Express and CF7 for awhile now. I did > download the JDBC driver from MinkySoft but I think for a few days I ran > it > using the older MSS

Re: cfqueryparam issue

2006-04-25 Thread Denny Valliant
Tried wrapping it in a toString? Or perhaps xmlformat? Dunno what would do that off hand... On 4/25/06, rhymes with 'loud' Doug Boude <[EMAIL PROTECTED]> wrote: > > Hi all. I have an RSS processor that works like a champ, at least it did > until it ran into a string value that's causing it to bar

Re: Uploading multiple files - not necessarily CF

2006-04-25 Thread DRE
If you dont mind ie, you could use an hta wrapper. This effectively removes any security limitations allowing you to script code that browses the clients os. I think it also allows you to prefill the mailto:[EMAIL PROTECTED] > Sent: Tuesday, April 25, 2006 3:05 PM > To: CF-Talk > Subject: RE: Upl

RE: MX7 Verity Limitation

2006-04-25 Thread Dan G. Switzer, II
Rob, >Thanks for the info, Dan. We have projects in the queue to move to >categories, but like all queues, we won't get to it until we get to it >(or until someone makes is a /much/ bigger priority than it is right >now). I was hoping to find a quick fix. I'll take a look at what I >have in the

RE: coupons inc script - convert VB to CF UDF

2006-04-25 Thread Ben Nadel
Ooops, I see, its not a function, its an array :)... My bad. ... Ben Nadel www.bennadel.com -Original Message- From: Ben Nadel [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 25, 2006 3:12 PM To: CF-Talk Subject: RE: coupons inc script - convert VB to CF UDF Jim, W

RE: Uploading multiple files - not necessarily CF

2006-04-25 Thread Mark Leder
www.aurigma.com Awesome Java tag - some of the best documentation I've seen anywhere. Thanks, Mark -Original Message- From: Everett, Al (NIH/NIGMS) [C] [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 25, 2006 3:05 PM To: CF-Talk Subject: RE: Uploading multiple files - not necessarily C

RE: coupons inc script - convert VB to CF UDF

2006-04-25 Thread Ben Nadel
Jim, What does the "encodeModulo" method do? I can't find it in the example and I don't think that's a "generic" function. ... Ben Nadel www.bennadel.com -Original Message- From: Jim Priest [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 25, 2006 2:51 PM To: CF-Talk S

CFPOP Error [more info]

2006-04-25 Thread hof
This appears to be the message that is causing problems: Return-Path: <[EMAIL PROTECTED]> Delivered-To: [EMAIL PROTECTED] Date: Fri, 21 Apr 2006 11:52:34 -0500 X-MessageId: <1145638475427.2832.8f48.YSCP> X-SmtpMessageId: From: MYEMAILSERVERDOMAIN.COM PostMaster <[EMAIL PROTECTED]> To: [EMAIL PROT

RE: Uploading multiple files - not necessarily CF

2006-04-25 Thread Everett, Al \(NIH/NIGMS\) [C]
Alas, I spoke too soon. No, that's not going to work for me. The "upload multiple files" is simply 20 HTML file fields. No good. I might be able to use it for something else, but not for this project. -Original Message- From: Everett, Al (NIH/NIGMS) [C] Sent: Tuesday, April 25, 2006 3:00

Re: Named lock, not throwontimeout not proceeding

2006-04-25 Thread Jochem van Dieten
David wrote: > > I have a strange issue with CFLock: I have a named, exclusive lock that is > set to not throw exception on timeout, but it seems to not be timing out. I > thought that if throwontimeout=no, it just proceeds from after the close > /cflock ? > > name="GENERATEXMLCONFIG_#Reque

RE: Uploading multiple files - not necessarily CF

2006-04-25 Thread Everett, Al \(NIH/NIGMS\) [C]
Yes, I know it can't be done from the standard browser dialog, that's why I'm looking for another solution. I'm finding some promising things using Java and/or ASP.NET. Now I have to get Ops to install Java and/or .NET on my PC. (I told you it was a tightly controlled environment.) -Original

CFPOP error

2006-04-25 Thread joe velez
Hi - I am running a basic CFPOP tag: but I am getting an error which doesnt really say much: -- Attribute validation error for tag cfoutput. The value of the attribute query, which is currently "chk_msgs", is invalid. The error occurred in C:\UW

RE: Uploading multiple files - not necessarily CF

2006-04-25 Thread Everett, Al \(NIH/NIGMS\) [C]
Exactly. I'm dealing with users who aren't terribly sophisticated. "I can select multiple files in Word. Why can't I do it to upload files in my browser?" ActiveX is not out of the question, so if you've some pointers there that would be great. -Original Message- From: Ben Nadel [mailto:[

RE: Uploading multiple files - not necessarily CF

2006-04-25 Thread Everett, Al \(NIH/NIGMS\) [C]
Looks promising, but may be more than I need/want. I certainly don't want the end users able to delete files or directories on the server. But I've just glanced at it. Thanks for the tip. -Original Message- From: Russ Michaels [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 25, 2006 2:3

Re: MX7 Verity Limitation

2006-04-25 Thread Rob Wilkerson
Thanks for the info, Dan. We have projects in the queue to move to categories, but like all queues, we won't get to it until we get to it (or until someone makes is a /much/ bigger priority than it is right now). I was hoping to find a quick fix. I'll take a look at what I have in the way of loc

Re: OT: finding uk developers -> UK/Europe Conferences

2006-04-25 Thread Mark Drew
I shall stick to my Drunken Monkey CFEclipse-foo speech then :) MD On 4/25/06, Andy Allan <[EMAIL PROTECTED]> wrote: > > Well it was supposed to be next month, but I doubt I'll be able to > arrange venue, speakers, sponsorships, etc in that time :) > > We got Tim Buntel so drunk he HAD to quit Ad

RE: MX7 Verity Limitation

2006-04-25 Thread Dan G. Switzer, II
Rob, >Is anyone aware of a Verity limitation in MX7? I know there were >extreme changes, but I have an application that indexes multiple >collections simultaneously by kicking off each index on a separate >thread. Essentially, one template is called which loops over the >available collections an

coupons inc script - convert VB to CF UDF

2006-04-25 Thread Jim Priest
I'm working on a project where I need to send people to Coupons Inc to get a coupon. They provided an alogrithm which generates a key used in a URL which allows tracking, etc. They provided an example VB script which would generate this key when passed a few variables. I've tried to recreate it

Re: OT: finding uk developers -> UK/Europe Conferences

2006-04-25 Thread Andy Allan
Well it was supposed to be next month, but I doubt I'll be able to arrange venue, speakers, sponsorships, etc in that time :) We got Tim Buntel so drunk he HAD to quit Adobe!!! OK, that's a lie, but he was absolutely steaming :) But then, we all were. I believe we're still on record as being the

Re: Uploading multiple files - not necessarily CF

2006-04-25 Thread Rob Wilkerson
You mean by control- or shift-clicking? So click "Browse" and then select multiple files from the dialog? If so, then that can't be done as far as I know. Using the standard file input, control- and shift-clicking is disabled. One file at a time. Period. I missed that possible meaning. Thank

Re: Okay, here's an easy one...Getting the directory I'm sitting in...

2006-04-25 Thread Jeff Small
> curdir=ListLast(GetDirectoryFromPath(GetCurrentTemplatePath()),"/\")> > > --- Ben Sweet, thanks. Go off to lunch to clear head. Return with handy little code snippet. Gracias. ~| Message: http://www.houseoffusion.com/list

Re: Uploading multiple files - not necessarily CF

2006-04-25 Thread Russ Michaels
Checkout the CFFM (CF file Manager) by Rick root I think. Russ -Original Message- From: "Rob Wilkerson" <[EMAIL PROTECTED]> To: CF-Talk Date: Tue, 25 Apr 2006 14:19:22 -0400 Subject: Re: Uploading multiple files - not necessarily CF > What about using DHTML? Take a look at something lik

RE: OT: finding uk developers -> UK/Europe Conferences

2006-04-25 Thread Russ Michaels
bah, u just copied my yahoo site -Original Message- From: "Adrian Lynch" <[EMAIL PROTECTED]> To: CF-Talk Date: Tue, 25 Apr 2006 19:30:35 +0100 Subject: RE: OT: finding uk developers -> UK/Europe Conferences > Thanks, I do try to be original :OD > > (you were talking about google right?!

Re: OT: finding uk developers -> UK/Europe Conferences

2006-04-25 Thread Andy Allan
The only legal place to smoke is outside, even then you'll even get hammered if you light up in a bus shelter. We'll try and find a nice beer garden - though even then I'm still not sure about all the rights and wrongs. I'll nab you at CFUNITED to see if we can arrange something. Andy On 25/04/0

RE: Uploading multiple files - not necessarily CF

2006-04-25 Thread Ben Nadel
Rob, That's nice little solutions. I think though, what he ultimately wants is to not have to "browse" for each new file... But rather to select multiple files from one dialogue as you would in FireWorks or Photoshop. The only solutions I have seen like this are thrid party stuff like ActiveX de

RE: OT: finding uk developers -> UK/Europe Conferences

2006-04-25 Thread Adrian Lynch
Ahh, do it again and if I'm free I'll come. I have the travelling bug at the moment :O) -Original Message- From: Andy Allan [mailto:[EMAIL PROTECTED] Sent: 25 April 2006 19:15 To: CF-Talk Subject: Re: OT: finding uk developers -> UK/Europe Conferences Well, Scotch on the Rocks wa

Re: Okay, here's an easy one...Getting the directory I'm sitting in...

2006-04-25 Thread Russ Michaels
ExpandPath('./') Will give u the current path. Russ -Original Message- From: "Jeff Small" <[EMAIL PROTECTED]> To: CF-Talk Date: Tue, 25 Apr 2006 13:37:44 -0400 Subject: Okay, here's an easy one...Getting the directory I'm sitting in... > Like, say you were "bar.cfm" and you were in the

RE: OT: finding uk developers -> UK/Europe Conferences

2006-04-25 Thread Adrian Lynch
Thanks, I do try to be original :OD (you were talking about google right?!) -Original Message- From: Mark Drew [mailto:[EMAIL PROTECTED] Sent: 25 April 2006 19:11 To: CF-Talk Subject: Re: OT: finding uk developers -> UK/Europe Conferences Adrian, Love your website! Rawks ;) MD On 4/2

Re: OT: finding uk developers -> UK/Europe Conferences

2006-04-25 Thread Mark Drew
As long as its in fair weather and I can find somewhere legal to smoke all is well :) I am off to the states in June so that is going to be a hard one, especially in San Francisco, dammed non-smoking nazis! MD On 4/25/06, Andy Allan <[EMAIL PROTECTED]> wrote: > > Aye, need to get it downloaded.

Re: Uploading multiple files - not necessarily CF

2006-04-25 Thread Rob Wilkerson
What about using DHTML? Take a look at something like this: http://the-stickman.com/web-development/javascript/upload-multiple-files-with-a-single-file-element/ I've played with it a little bit and it looks pretty nice. I have not used it in production, though, so it will require some testing.

Re: OT: finding uk developers

2006-04-25 Thread Mark Drew
I shall try to record the session... MD On 4/25/06, Adrian Lynch <[EMAIL PROTECTED]> wrote: > > Any chance that's going to be recorded? > > CFUGs always seem to clash with other things for me :O( > > -- Mark Drew http://www.markdrew.co.uk/blog/ ~

Re: OT: finding uk developers -> UK/Europe Conferences

2006-04-25 Thread Andy Allan
Aye, need to get it downloaded. Actually, if you're game some point later this year we could see about getting you up to Scotland to present for us. Of course, our no smoking ban may put you off :) Andy On 25/04/06, Mark Drew <[EMAIL PROTECTED]> wrote: > My MacBook Pro has a fairly decent mic. I

Re: OT: finding uk developers -> UK/Europe Conferences

2006-04-25 Thread Andy Allan
Well, Scotch on the Rocks was a massive £25 last year - and that was for two days. Now you know why I made a huge loss :) Andy On 25/04/06, Adrian Lynch <[EMAIL PROTECTED]> wrote: > I'd go, but it would depend on the cost... > > or whether the venue has a fire escape door that can be jimmied

Re: OT: finding uk developers -> UK/Europe Conferences

2006-04-25 Thread Mark Drew
Adrian, Love your website! Rawks ;) MD On 4/25/06, Adrian Lynch <[EMAIL PROTECTED]> wrote: > > I'd go, but it would depend on the cost... > > or whether the venue has a fire escape door that can be jimmied open! > :OD > > > > -- Mark Drew http://www.markdrew.co.uk/blog/

Re: OT: finding uk developers -> UK/Europe Conferences

2006-04-25 Thread Nick Tong - TalkWebSolutions.co.uk
> You ideally need need someone to sit and monitor what's coming in over > Breeze in case people are asking questions, or maybe the sound has > dropped, etc. Cause when you are running in full screen mode you won't > get to see anything. I'm sure this can be accomplished though? Like i say i'm mo

Re: OT: finding uk developers -> UK/Europe Conferences

2006-04-25 Thread Nick Tong - TalkWebSolutions.co.uk
OT - that's Brigton for you ;) ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:238687 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4 Unsubscr

Uploading multiple files - not necessarily CF

2006-04-25 Thread Everett, Al \(NIH/NIGMS\) [C]
I'm looking for a solution to this problem: For an intranet site, the end user should be able to select multiple files (or even a directory) located on his/her local machine, and press a single button to upload them to the server. We're a CF shop and I don't see a CF solution for this piece, bu

RE: Image resizing on the fly?

2006-04-25 Thread Terry Troxel
I also use ImageCR and love its speed. I have a wedding photgrapher's sit that He uses an ftp package to upload all the Images of a wedding (he wanted it this way) With a naming convention of weddingname-1, weddingname-2, etc. To his events folder. He then goes into his admin area of the site And r

RE: OT: finding uk developers -> UK/Europe Conferences

2006-04-25 Thread Adrian Lynch
I'd go, but it would depend on the cost... or whether the venue has a fire escape door that can be jimmied open! :OD -Original Message- From: Mark Drew [mailto:[EMAIL PROTECTED] Sent: 25 April 2006 16:44 To: CF-Talk Subject: Re: OT: finding uk developers -> UK/Europe Conferences

Re: OT: finding uk developers -> UK/Europe Conferences

2006-04-25 Thread Mark Drew
My MacBook Pro has a fairly decent mic. I also have an external USB one so you dont have to hear my bad typing REALLY LOUDLY! For quality check out the latest CF Weekly podcast (plug, plug!) MD On 4/25/06, Andy Allan <[EMAIL PROTECTED]> wrote: > > You ideally need need someone to sit and monito

MX7 Verity Limitation

2006-04-25 Thread Rob Wilkerson
Is anyone aware of a Verity limitation in MX7? I know there were extreme changes, but I have an application that indexes multiple collections simultaneously by kicking off each index on a separate thread. Essentially, one template is called which loops over the available collections and creates a

Re: OT: finding uk developers -> UK/Europe Conferences

2006-04-25 Thread Nick Tong - TalkWebSolutions.co.uk
Great so without wishing to sound simple - isn't that a great solution?? Or at least a start to it? On 25/04/06, Andy Allan <[EMAIL PROTECTED]> wrote: > Nope. User Group managers are given a Breeze account free of charge > for UG meetings, so no cost at all. Well, other than buying a decent > he

RE: OT: finding uk developers

2006-04-25 Thread Adrian Lynch
Any chance that's going to be recorded? CFUGs always seem to clash with other things for me :O( -Original Message- From: Niklas Richardson [mailto:[EMAIL PROTECTED] Sent: 25 April 2006 14:16 To: CF-Talk Subject: Re: OT: finding uk developers .oh, and if you're in the UK and near / i

Re: OT: finding uk developers -> UK/Europe Conferences

2006-04-25 Thread Mark Drew
God, just realised where you are based, I was drunk round there last weekend... (or weekend before that!) and singing in the Engine Rooms! Ahh.. brighton :) Sorry.. OT I know. MD On 4/25/06, Nick Tong - TalkWebSolutions.co.uk <[EMAIL PROTECTED]> wrote: > > a bit of rapid development maybe... ;)

Re: Okay, here's an easy one...Getting the directory I'm sitting in...

2006-04-25 Thread rhymes with 'loud'
> Like, say you were "bar.cfm" and you were in the "foo" directory. I > want to get "foo". Likewise, if you were in the "bar" directory, and > you were "foo.cfm" I'd want to see "bar". > > > -- > Jeff Small > LHWH Advertising > Myrtle Beach, SC 29577 > 843-448-1123 Ext 254 ~~

Re: Okay, here's an easy one...Getting the directory I'm sitting in...

2006-04-25 Thread Mark Drew
#ListGetAt(expandPath("."), ListLen(expandPath("."), "\"), "\")# On 4/25/06, Jeff Small <[EMAIL PROTECTED]> wrote: > > Like, say you were "bar.cfm" and you were in the "foo" directory. I want > to get "foo". Likewise, if you were in the "bar" directory, and you were " > foo.cfm" I'd want to see "b

Re: Okay, here's an easy one...Getting the directory I'm sitting in...

2006-04-25 Thread Rob Wilkerson
getDirectoryFromPath()? Is that what you're asking? Maybe getDirectoryFromPath ( getCurrentTemplatePath() )? You'd have to parse for the last node in the directory path, but this would get you there. Hopefully I understood the question correctly... On 4/25/06, Jeff Small <[EMAIL PROTECTED]> wr

Re: OT: finding uk developers -> UK/Europe Conferences

2006-04-25 Thread Andy Allan
You ideally need need someone to sit and monitor what's coming in over Breeze in case people are asking questions, or maybe the sound has dropped, etc. Cause when you are running in full screen mode you won't get to see anything. The other big thing is making sure you use a decent mic. Andy On 2

RE: Okay, here's an easy one...Getting the directory I'm sitting in...

2006-04-25 Thread Ben Forta
--- Ben -Original Message- From: Jeff Small [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 25, 2006 1:38 PM To: CF-Talk Subject: Okay, here's an easy one...Getting the directory I'm sitting in... Like, say you were "bar.cfm" and you were in the "foo" directory. I want to get "foo". L

RE: Image resizing on the fly?

2006-04-25 Thread Katz, Dov B \(IT\)
Another solution would probably be the most load tolerant, but relies on some client behavior If you did something like function fix(img,path){ if(img.src.indexOf(".cfm")==-1){ img.src="fix.cfm?path="+path; } } Something like this... Then fix.cfm can Create the resized ima

Re: Ldap --> structure = Not String and Not Object

2006-04-25 Thread Joelle Tegwen
Oh thank you! It worked wonderfully. I figured it was something simple. Thanks! (and thanks for being thorough.) Joelle Ian Skinner wrote: > > > > > > Ahh crud, now I forgot the row index. Corrected code below: > > > > > > > ~~

Re: OT: finding uk developers -> UK/Europe Conferences

2006-04-25 Thread Nick Tong - TalkWebSolutions.co.uk
a bit of rapid development maybe... ;) ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:238671 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4

Okay, here's an easy one...Getting the directory I'm sitting in...

2006-04-25 Thread Jeff Small
Like, say you were "bar.cfm" and you were in the "foo" directory. I want to get "foo". Likewise, if you were in the "bar" directory, and you were "foo.cfm" I'd want to see "bar". -- Jeff Small LHWH Advertising Myrtle Beach, SC 29577 843-448-1123 Ext 254 ~~~

Re: OT: finding uk developers -> UK/Europe Conferences

2006-04-25 Thread Mark Drew
I am not sure its the costs thats the problem, the real problem is getting the internet conneciton over where we do the meetings. I am pretty sure there isnt a wireless connection over at the university lecture room where we do it.. .unless I take a network cable and check it out. Also, as a pres

Re: OT: finding uk developers -> UK/Europe Conferences

2006-04-25 Thread Russ Michaels
i'll try and drag him along this week :-) -Original Message- From: "Niklas Richardson" <[EMAIL PROTECTED]> To: CF-Talk Date: Tue, 25 Apr 2006 17:30:47 +0100 Subject: Re: OT: finding uk developers -> UK/Europe Conferences > Hi Nick - where are you based? Have you heard of the UK ColdFusi

Re: OT: finding uk developers -> UK/Europe Conferences

2006-04-25 Thread Andy Allan
Nope. User Group managers are given a Breeze account free of charge for UG meetings, so no cost at all. Well, other than buying a decent headset to use. Andy On 25/04/06, Nick Tong - TalkWebSolutions.co.uk <[EMAIL PROTECTED]> wrote: > If you could get a breeze meetings set up that would be great

RE: replacement for QoQ

2006-04-25 Thread Brad Wood
If there was a way to add indexes to a QoQ then I would, but The issue is the where and how the queries are being done. I don't understand why MachII is loading the queries into the request scope. I don't know if there is a simple way to load them into a different scope without breaking the

Re: OT: finding uk developers -> UK/Europe Conferences

2006-04-25 Thread Russ Michaels
I am planning to do a CFDEVCON this year, time permitting. Russ -Original Message- From: "Mark Drew" <[EMAIL PROTECTED]> To: CF-Talk Date: Tue, 25 Apr 2006 16:44:14 +0100 Subject: Re: OT: finding uk developers -> UK/Europe Conferences > Where I shall be demonstrating Model-Glue running

Re: OT: finding uk developers -> UK/Europe Conferences

2006-04-25 Thread Mark Drew
did you just add it or was I being REAL blind?!!? God, code blinded again... MD On 4/25/06, Nick Tong - TalkWebSolutions.co.uk <[EMAIL PROTECTED]> wrote: > > Mark, I'm not sure what you mean... it's clearly on the right of the > home page > > okay you got me... :D > > On 25/04/06, Mark Drew

Scanning Documents to ColdFusion

2006-04-25 Thread E C list
Can anyone suggest the best state-of-the-art solutions for scanning documents and automatically uploading them to a ColdFusion server? The idea would be to scan invoices and attach them to a company's record. I haven't been able to figure out any easy way to do this. Thanks for any ideas!

Re: OT: finding uk developers -> UK/Europe Conferences

2006-04-25 Thread Nick Tong - TalkWebSolutions.co.uk
If you could get a breeze meetings set up that would be great - i guess there are costs involved with that though? On 25/04/06, Andy Allan <[EMAIL PROTECTED]> wrote: > Because of the commute involved for a lot of my UG members > (www.scottishcfug.com) I'm starting to look at either doing the talks

Re: Stored procedures

2006-04-25 Thread Shawn McKee
Here is an example function spec from the package. No output parameters listed. FUNCTION GET_CONTENT_FILE_STATUS_ID( I_CFSREF_ALPHA_CODE CONTENT_FILE_STATUS_REF_TB.CFSREF_ALPHA_CODE%TYPE ) RETURN CONTENT_FILE_STATUS_REF_TB.CFSREF_CONTENT_FILE_STATUS_ID%TYPE; -Original Mes

Re: Ldap --> structure = Not String and Not Object

2006-04-25 Thread Ian Skinner
Ahh crud, now I forgot the row index. Corrected code below: ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:238660 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http://www.

Re: replacement for QoQ

2006-04-25 Thread Michael Dinowitz
Oh, I should have mentioned that this is 6.1. I'm trying to get them to upgrade, but CFMX 7 does enhance QoQ and I even use them on that platform. > Well I was not fearful enough to go back and change anything since after > all > I have not experienced such slownesses :) > > On 4/25/06, Mu

Re: OT: finding uk developers -> UK/Europe Conferences

2006-04-25 Thread Mark Drew
I am testing out on thursday a way of recording the whole thing.both video and audio. the problem (for me at least) of podcasting these events is that if you listen to them you wont have a clue... "here I add this.. code... see, and shaboom, it works!" Not sure that would come out too well in a p

Re: replacement for QoQ

2006-04-25 Thread Michael Dinowitz
If there was a way to add indexes to a QoQ then I would, but The issue is the where and how the queries are being done. I don't understand why MachII is loading the queries into the request scope. I don't know if there is a simple way to load them into a different scope without breaking the

Re: Image resizing on the fly?

2006-04-25 Thread Rick Root
John, Since you don't want to always be resizing on the fly every time someone views an image, you might try something like this: and in showImge.cfm just use imageCFC to read the image dimensions. If the image hasn't been resized, resize it and save it back. Then use to send the image.

RE: Stored procedures

2006-04-25 Thread Nick Han
If it is pure functions you are talking about, I am sure this will work: Select some_oracle_user_defined_function(arg) from dual -Original Message- From: Shawn McKee [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 25, 2006 9:27 AM To: CF-Talk Subject: Stored procedures I have used lots

Re: OT: finding uk developers -> UK/Europe Conferences

2006-04-25 Thread Nick Tong - TalkWebSolutions.co.uk
>>Hi Nick - where are you based? Have you heard of the UK ColdFusion >>User Group (http://www.ukcfug.org/)? Hi Niklas. Yes i have and I've been a few times when it started years ago, but I've not been able to commute that easily to events, which is why an online event system would work better fo

Re: OT: finding uk developers -> UK/Europe Conferences

2006-04-25 Thread Andy Allan
Because of the commute involved for a lot of my UG members (www.scottishcfug.com) I'm starting to look at either doing the talks by Breeze or, where we do have live events actually put them out via Breeze as well. We could look at co-ordinating Breeze events Niklas? We should discuss it over a few

Re: OT: finding uk developers -> UK/Europe Conferences

2006-04-25 Thread Nick Tong - TalkWebSolutions.co.uk
Mark, I'm not sure what you mean... it's clearly on the right of the home page okay you got me... :D On 25/04/06, Mark Drew <[EMAIL PROTECTED]> wrote: > I spotted the talkwebsolutions.co.uk site that nick posted, and as a note to > everyone out there, I would like to say to people to make sur

RE: Ldap --> structure = Not String and Not Object

2006-04-25 Thread Ian Skinner
#args[thisColumn]# Oh just to clean all this up. And I have doing this exact type of functions for over two years, and have never had any ColdFusion problems. The cfset thisColumn is completly redundant and one does not need all the quotes and pound signs.

RE: Ldap --> structure = Not String and Not Object

2006-04-25 Thread Ian Skinner
#args[thisColumn]# You are missing the row value of the ldap query. Thus your are not getting to the value of the field. When accessing a query with the structure syntax it is queryname[column][row]. So try using ldap[thisColumn][1], you do not need the quotes and

Re: replacement for QoQ

2006-04-25 Thread Aaron Rouse
Well I was not fearful enough to go back and change anything since after all I have not experienced such slownesses :) On 4/25/06, Munson, Jacob <[EMAIL PROTECTED]> wrote: > > > I do not use QoQ's much at all and threads like this make me > > fearful of those times I did use it. > > I use QoQ for

Re: Stored procedures

2006-04-25 Thread Aaron Rouse
If they are not part of a package(only say that because of the other emails referencing possibly being in a package) you could do something as simple as: SELECT MY_FUNCTION() FROM dual I use a lot of different custom Oracle functions to do the things many would normally do with ColdFusion but hav

Re: CF5 + Oracle + Stored Procedure

2006-04-25 Thread Aaron Rouse
I agree completely in that the method being taken really needs to be re-evaluated. However this is not my project and I am just inquiring for someone else to see why CF would basically dedicate all resources to an SP call but put the same SQL into a CFQUERY and it no longer does. Both methods do

RE: ***SPAM*** Re: Stored procedures

2006-04-25 Thread Shawn McKee
Yes they are part of an Oracle package. -Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 25, 2006 11:46 AM To: CF-Talk Subject: ***SPAM*** Re: Stored procedures Are the functions part of an Oracle package? If so I can send ya the code to use 'em..

Re: OT: finding uk developers -> UK/Europe Conferences

2006-04-25 Thread Nick Tong - TalkWebSolutions.co.uk
Hi Niklas. Yes i have and I've been a few times when it started years ago, but I've not been able to commute that easily to events, which is why an online event system would work better for me. That said I hope to make it to Marks presentation on Thursday. Would it at all be possible to make any

RE: replacement for QoQ

2006-04-25 Thread Munson, Jacob
> I do not use QoQ's much at all and threads like this make me > fearful of those times I did use it. I use QoQ for all of my data lookups in cfQuickDocs and have not noticed any performance problems. I think the problem Michael has run into is a poorly written query, not a problem with QoQ. I

Re: Stored procedures

2006-04-25 Thread Bryan Stevenson
here's how ya get at a fucntion that is part of a package: HTH Cheers Bryan Stevenson B.Comm. VP & Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell: 250.920.8830 e-mail: [EMAIL PROTECTED] web: www.electricedgesystems.com

Re: replacement for QoQ

2006-04-25 Thread Michael Dinowitz
Anyone who downloaded the code should re-download it as I've made a few modifications to it in order to make it less specific to my tests and more general for use. > I've posted the Query of Query function code to Blog of Fusion with some > comments. I'll be testing it on the client in a few mi

  1   2   >