Re: Using CFFTP Via SSH

2006-04-13 Thread James Holmes
Can't an SSH tunnel be set up so that the standard FTP used by CF goes via the tunnel? On 4/13/06, Damien McKenna [EMAIL PROTECTED] wrote: -Original Message- From: Scott Stewart [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 12, 2006 2:38 PM We've got a requirement to use

RE: S. Isaac, Wassup?

2006-04-13 Thread Dave Watts
Maybe I'm writing a career suicide note, but somehow I doubt that. No, just a giant, useless irrelevancy. My interest in the political opinions of developers is about the same as my interest in the CF skills of politicians - zero. I don't give a damn if you're all neo-Nazis. So please, please,

Re: VHS and Betamax

2006-04-13 Thread Denny Valliant
I guess my point is that I can see the point of not worrying too much, but I don't buy into believing things will change in the future. Arg! Of course things will change, but, um. Well... I guess don't go around smoking, thinking that, what the hell, by the time I get cancer, we'll

Re: VHS and Betamax

2006-04-13 Thread Denny Valliant
I'll have to pick up a copy of it... Seems somewhat similar to a novel I wrote which can be found here: http://www.turnkey.to/ike/613.htm Heh. Judging by your introduction... the age of spiritual machines had a good bit along the lines of this stuff is far out man, right now! In X years, it's

ColdFusion and VoIP

2006-04-13 Thread Steve Brownlee
I just got through installing a VoIP system for my company (http://www.orbwave.com/cfjboss/2006/04/installing-corporate-voip-part -i.html) and was noticing while browsing the Internet that some people were using scripting languages to interface with the VoIP provider services. Apparently

RE: Set Variable on window close

2006-04-13 Thread Everett, Al \(NIH/NIGMS\) [C]
What I'm getting is that you want to ensure a user is logged out when they close their browser, is that right? There are two ways to do that that are very easy and don't require anything exotic like what you're thinking. If you're on CFMX or MX7, and have access to the ColdFusion Administrator,

Re: adobe certification site

2006-04-13 Thread Mark Drew
That is coming soon! We have the help ready to go as a standalone eclipse help package... the only problem now is actually getting it to find stuff for you. Looking into this soon! MD On 12 Apr 2006, at 19:57, Bryan Stevenson wrote: Naw, nothing's better than cfquickdocs. ;) Not

Re: S. Isaac, Wassup?

2006-04-13 Thread Aaron Rouse
This is exactly why I unsubscribed from cf-community a LONG time ago. On 4/12/06, Dave Watts [EMAIL PROTECTED] wrote: Maybe I'm writing a career suicide note, but somehow I doubt that. No, just a giant, useless irrelevancy. My interest in the political opinions of developers is about the

Re: 404 errors and old google data

2006-04-13 Thread lesmizz
I have a ColdFusion page that handles all IIS and CF 404 errors. In that page, I use the 301 redirect code that Jacob listed. Would you mind sharing the way that page is set up for us please? ~| Message:

Re: VHS and Betamax

2006-04-13 Thread Denny Valliant
Socially? As in people don't get out enought and meet in meat-space? Or our interactions, even on-line? Well I was thinking more about social infrastructure. Things like bank personell being able to help you in any way if their computers go out. I understand why it's become that way, but

RE: CF and 64 Bit Windows 2K3

2006-04-13 Thread Leon Oosterwijk
I currently run jRun4 with the latest updater and java 1.5 on Linux. All the articles out there talk about a windows based setup. Will I be able to run in full 64-bit mode under linux? Leon -Original Message- From: J W [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 12, 2006 3:55 PM

Re: Dedicated Server

2006-04-13 Thread Rey Bango
I hear ya Gilbert. Definitely, choose whats best for your business man and keep chugging. :) Good luck, Rey... ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237673 Archives:

cffile and names with spaces

2006-04-13 Thread Jerry Johnson
I have a simple form to upload an image. I use cffile to upload the file. I then use cffile.serverfile to get the name of the uploaded file If the user uploads a file called space.gif, all is well. If the user uploads a file called space station.gif, not so much. The file saved to disk is

RE: cffile and names with spaces

2006-04-13 Thread Gilbert Midonnet
Use a regex to remove the space and save it as spacestation.gif #Replace(FORM.file, ,)# should do the trick. gil -Original Message- From: Jerry Johnson [mailto:[EMAIL PROTECTED] Sent: Thursday, April 13, 2006 11:40 AM To: CF-Talk Subject: cffile and names with spaces I have a

RE: cffile and names with spaces

2006-04-13 Thread Adrian Lynch
Can't say I've ever seen spaces replaced with %20 in the file names on disk before. Are you sure they're being renamed that way? Adrian -Original Message- From: Jerry Johnson [mailto:[EMAIL PROTECTED] Sent: 13 April 2006 16:40 To: CF-Talk Subject: cffile and names with spaces I have a

Re: cffile and names with spaces

2006-04-13 Thread Ken Ferguson
replace(form.file, ,_,all) should do the trick. -Original Message- From: Jerry Johnson [mailto:[EMAIL PROTECTED] Sent: Thursday, April 13, 2006 11:40 AM To: CF-Talk Subject: cffile and names with spaces I have a simple form to upload an image. I use cffile to upload the file. I

CFUNITED-06 interview 15: Steve Rittler on Farcry 3.0

2006-04-13 Thread Michael Smith
In this issue of ColdFusion conference and training news: * Announcing NEW CFUNITED Special Events! MiniMAX4 and Attendee Dinner * Win a FREE extravagant lunch with your favorite speaker! * Fusetalk Forum on CFUNITED! Talk to other Attendees. * CFLive - Jeff Peters Thursday 12:30pm EST via breeze

RE: cffile and names with spaces

2006-04-13 Thread Adrian Lynch
The problem with renaming files is that someone might upload spaces in this file.gif and another spaces in this file.gif. Removing all spaces will mean the file names are the same. I tend to let CF rename the files and then store the file as the client knows it and as the server knows it, both

Re: Using CFFTP Via SSH

2006-04-13 Thread Andrew Grosset
Oops! I guess my eyesite is not what it was... Thanks Andrew... That's the wrong protocol tho. heh... I guess that's the danger of acronyms, CFFTP looks a lot like CFHTTP when you're scanning the list. :) I think this tag does: http://www.cftagstore.com/tags/cfxhttp5.cfm s. isaac dealey

model glue/reactor question

2006-04-13 Thread rhymes with 'loud'
Hi all. I'm building an app using model glue and reactor. I'm having an issue with a function I wrote that returns my navigation to me, appropriately nested. The function is a recursive one, and works as designed, no problem there. BUT, it's painfully slow, even with debugging and reactor

Re: cffile and names with spaces

2006-04-13 Thread Casey Dougall
Can't you just use urlencode tag to view that image like normal. img src=./PHOTOS/#URLENCODEDFORMAT(Image)# On 4/13/06, Adrian Lynch [EMAIL PROTECTED] wrote: The problem with renaming files is that someone might upload spaces in this file.gif and another spaces in this file.gif.

Regular Expressions - Strip HTML tags. Please help!!!

2006-04-13 Thread cf coder
Hello Everybody, I need your help with regular expressions. I'm trying to strip out HTML tags from a string to pass it to a flash movie. I've found a script that does this but the problem is that I want to keep some html formatting specifically the following tags: b, br, span, i, strong, div,

Re: Using CFFTP Via SSH

2006-04-13 Thread Andrew Grosset
Yeh, I'm going to have to get my eyes tested...! Thanks Andrew... That's the wrong protocol tho. heh... I guess that's the danger of acronyms, CFFTP looks a lot like CFHTTP when you're scanning the list. :) I think this tag does: http://www.cftagstore.com/tags/cfxhttp5.cfm s. isaac dealey

RE: cffile and names with spaces

2006-04-13 Thread Ben Nadel
I think the only way that would happen is the file name was somehow passed via a form GET as opposed to a form POST and had to get URL encoded However, CFFile, as far as I know, will not work without a form POST. Make sure you are not specifying a file name in your CFFILE upload tag. Only a

Re: cffile and names with spaces

2006-04-13 Thread Jose Diaz
Hi Jerry I would do something along the lines of using the following function: ReplaceNoCase(space station.gif, ,_,ALL) However if you want a unique name to the file, if your using a database and referencing this image to say a specific news article you could prefix the file with the database

Re: MX7 won't run after uninstalling Flex

2006-04-13 Thread Ali Awan
Dave, Thanks for taking the time to answer my question. However, I already wiped my MX7 installation and just re-installed it. Luckily this was NOT on a production server, and everything is good now. I wish I would have seen your post, before I did that. Just so I could try that

Auction Software.

2006-04-13 Thread Emmet McGovern
We've agreed to donate our time to a childrens hospital charity and one of the things they will need is the ability to run an online auction over the course of the summer. Nothing fancy. They will end the auction manually. Does anyone know if something like this is available in cf or would

RE: Auction Software.

2006-04-13 Thread Steve Kahn
Emmet Visual Auction (beyond software) Able Commerce had one but I think it was discontinued. There is one more less expensive option available but I don’t have it on hand. Steve -Original Message- From: Emmet McGovern [mailto:[EMAIL PROTECTED] Sent: Thursday, April 13, 2006 2:06 PM

ONe more possibly important piece of info...

2006-04-13 Thread rhymes with 'loud'
here's the portion of the reactor.xml file pertinent to the nav: object name=Navigation/object object name=Navigation alias=NavParent hasMany name=navChild relate from=navigationID to=ParentID/relate /hasMany /object

Re: Auction Software.

2006-04-13 Thread Jose Diaz
Hi Emmet Steve is correct Able do produce a auction tool that was freeware a while back, Im not sure what the charge is now, but I imagine it has a 30 day trial period so worth a go. Have you tryed the cf developers exchange ? Jose Diaz On 4/13/06, Steve Kahn [EMAIL PROTECTED] wrote: Emmet

CFMBB 0.90 available

2006-04-13 Thread Rick Root
CFMBB 0.90 has been released and includes the following new features - moved to phpBB style subscription model - file attachments - gravatar support (globally recognized avatar) - support for gallery avatars - user confirmation and admin activation features now work. complete changelog:

Need Cartweaver Discount Code

2006-04-13 Thread Steve Kahn
We need to offer Cartweaver with the ability to handle discount codes. Anyone have anything for use or sale? Thanks -- No virus found in this outgoing message. Checked by AVG Free Edition. Version: 7.1.385 / Virus Database: 268.4.1/310 - Release Date: 4/12/2006

Re: Session is invalid

2006-04-13 Thread Tony
nevermind, i found this on Erat's blog... http://www.talkingtree.com/blog/index.cfm?mode=entryentry=606852D1-45A6-2844-70F90BC67B9A2A8D thanks anyway. tw On 4/13/06, Tony [EMAIL PROTECTED] wrote: hi there. im getting Session is invalid sometimes from some users of my system, and I found

Re: Using CFFTP Via SSH

2006-04-13 Thread blists
Search the archive, I posted how I did this with jscapes FTP Factory (http://www.jscape.com/sftp/index.html) , including code a few months back At 11:38 AM 4/12/2006, you wrote: We've got a requirement to use CFFTP via SSH (SFTP). Has anyone been able to do this? Thanks Scott Scott

Session is invalid

2006-04-13 Thread Tony
hi there. im getting Session is invalid sometimes from some users of my system, and I found this for CMFX 6.1, but am wondering if it applies to CFMX 7 http://www.bpurcell.org/blog/index.cfm?mode=entryentry=994 thanks for any help/pointers. tony

Re: Regular Expressions - Strip HTML tags. Please help!!!

2006-04-13 Thread Rob Wilkerson
You may have to use a negative lookahead. Try something like this: (?!\/?(br|b|span|i|strong|div|p))[^]* This hasn't been tested and is purely from memory, but I think that (or something close to it) should remove any tag that is *NOT* the open or closing tag of one you listed. For more

How to determine JDBC driver version in use

2006-04-13 Thread Jamie Jackson
I don't know how to CONCLUSIVELY determine which version of the JDBC driver that a given instance of CFMX is using. I made up my own function (see below*), but I'm not completely sure it's trustworthy, because of the surprising results I get. Can somebody give me the authoritative way to

Re: Regular Expressions - Strip HTML tags. Please help!!!

2006-04-13 Thread Jerry Johnson
Not sure if this has been suggested (coming in late), but this function works well. http://www.cflib.org/udf.cfm?ID=774 (Thanks Isaac) Not a simple regex, but it gets the job done. On 4/13/06, cf coder [EMAIL PROTECTED] wrote: Hello Everybody, I need your help with regular expressions.

Re: model glue/reactor question

2006-04-13 Thread Jamie Jackson
I haven't scrutinized your code, but when I can't get a troublesome routine to run any more quickly, I often cache its result in a persistent scope (application is my favorite). That's one way to sweep it under the rug. Jamie Hi all. I'm building an app using model glue and reactor. I'm

RE: Auction Software.

2006-04-13 Thread Mark A Kruger
Run away from that Able option... Very bad indeed. We have some extensive experience with it... None of it pleasant :) -Original Message- From: Jose Diaz [mailto:[EMAIL PROTECTED] Sent: Thursday, April 13, 2006 1:45 PM To: CF-Talk Subject: Re: Auction Software. Hi Emmet Steve is

Re: Need Cartweaver Discount Code

2006-04-13 Thread Will Tomlinson
We need to offer Cartweaver with the ability to handle discount codes. Anyone have anything for use or sale? Maybe this would do it http://www.datapacks.com/store/Details.cfm?ProdID=48category=0 Will ~| Message:

Re: Regular Expressions - Strip HTML tags. Please help!!!

2006-04-13 Thread S . Isaac Dealey
Yeah I hawked it. :P Thanks Jerry. I love that people like this function so much, it makes me smile whenever I see it recommended, because I know I've helped them. :) I wrote an article for CFDJ that should be in the next issue(?) about an alternative approach of using XML and a CFC to handle

RE: MX7 won't run after uninstalling Flex

2006-04-13 Thread Dave Watts
Looking back though, I think my error was in that I just overwrote the wsconfig.jar. But if I understand you correctly, what I should have done was: 1) run the current(meaning Flex Adapter updated version) wsconfig.jar with the appropriate extensions to uninstall itself. 2) THEN copy

RE: CF and 64 Bit Windows 2K3

2006-04-13 Thread Jim Curran
Thank you! - j -Original Message- From: Nat Papovich [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 12, 2006 12:27 PM To: CF-Talk Subject: RE: CF and 64 Bit Windows 2K3 You can install Windows Server 2003 64-bit edition on your AMD machine, and install ColdFusion by default, which

RE: Using CFFTP Via SSH

2006-04-13 Thread Damien McKenna
-Original Message- From: blists [mailto:[EMAIL PROTECTED] Sent: Thursday, April 13, 2006 3:10 PM Search the archive, I posted how I did this with jscapes FTP Factory (http://www.jscape.com/sftp/index.html) , including code a few months back Nice, but it costs $600 :-\ --

Re: Regular Expressions - Strip HTML tags. Please help!!!

2006-04-13 Thread Cedric Villat
CFLib.org is your friend :) Check out the function called StripTags. It does exactly what you want. http://www.cflib.org/udf.cfm?ID=774 Cedric ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237707 Archives:

Re: How to determine JDBC driver version in use

2006-04-13 Thread S . Isaac Dealey
It looks pretty correct to me. (Although with the CFAdmin API there may be another way to get the metadata object without instantiating the undocumented serviceFactory object.) What kind of results are you seeing? I don't know how to CONCLUSIVELY determine which version of the JDBC driver that

Re: Using CFFTP Via SSH

2006-04-13 Thread Denny Valliant
On 4/13/06, James Holmes [EMAIL PROTECTED] wrote: Can't an SSH tunnel be set up so that the standard FTP used by CF goes via the tunnel? Yeah, that would work too, I bet. Not as nifty as an Open Source java solution tho. ;-) Another option is skipping the cfftp, and setting up (if you're on

Re: S. Isaac, Wassup?

2006-04-13 Thread Claude Schneegans
the CF skills of politicians May be that wouldn't be such a bad idea after all? ;-) -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to this address: [EMAIL PROTECTED]) Thanks.

cfexecute buffer causing hangs?

2006-04-13 Thread Andrew Tyrone
Hi everyone, In my continued work with the Verity Vspider I came across something interesting today. It seems that the cfexecute tag has an issue with buffering output that is returned from the spawned process. This is CFMX 7.0.1 Enterprise running on Windows 2003 Server Standard. I searched

Re: How to determine JDBC driver version in use

2006-04-13 Thread Rob Wilkerson
I think this may be what you need. http://www.bpurcell.org/index.cfm?mode=entryentry=988 On 4/13/06, Jamie Jackson [EMAIL PROTECTED] wrote: I don't know how to CONCLUSIVELY determine which version of the JDBC driver that a given instance of CFMX is using. I made up my own function (see

Re: How to determine JDBC driver version in use

2006-04-13 Thread Jamie Jackson
Here's what's goofy about that: I think that the native MySQL drivers (not mentioned in the blog) have a different package/class name than the latest ones from MySQL. I don't know if I could prove anything from a similar experiment, but maybe... Jamie I think this may be what you need.

Re: Need Help Installing Plugins for Eclipse IDE

2006-04-13 Thread Aaron Roberson
On 4/12/06, Munson, Jacob [EMAIL PROTECTED] wrote: It's also worth noting that some plugins don't have a perspective. You properly install it, but you can't find the perspective. Sometimes you will see new options for the plugin in preferences, but sometimes it just works when you open the

RE: cfexecute buffer causing hangs?

2006-04-13 Thread Dave Watts
I can't say this with absolute certainty about all cfexecute command-line processes that output a significant amount of data, but I did discover that after a certain amount of log data output to the console, the vspider process just hangs. I suspect this would be the case with other

Regular Expression Help

2006-04-13 Thread cf coder
Hello Everybody, I'm having problems writing a regular expression. I'm trying to pass a string to flash and want to strip off and replace the html tags with a br tag but also leave any b, span, i, strong, div, br, and p tags. This is what I've done so far: cfscript function StripHTML(str) {

Re: How to determine JDBC driver version in use

2006-04-13 Thread Jamie Jackson
It looks pretty correct to me. (Although with the CFAdmin API there may be another way to get the metadata object without instantiating the undocumented serviceFactory object.) What kind of results are you seeing? Well, Sir Isaac Dealey (sorry, that's how I have always read your name ;-), I'm

Re: Need Cartweaver Discount Code

2006-04-13 Thread Jordan Michaels
Steve Kahn wrote: We need to offer Cartweaver with the ability to handle discount codes. Anyone have anything for use or sale? Thanks Vivio Technologies just added coupon code functionality to two different sites using cartweaver. (rempub.com and babyschoice.com) We added support for

Re: cfexecute buffer causing hangs?

2006-04-13 Thread Jamie Jackson
Hmm, I'm probably one of the people you've seen while Googling the subject. While I haven't tried cfexecuting the vspider stuff from CFMX7, I've had significant problems with it from CF5. Are you saying that you had problems when you didn't specify an output file or, or when you did? I wasnt'

Re: Version control - how to?

2006-04-13 Thread Troy Simpson
John, Great reply. Thanks for posting it. Sincerely, Troy On 3/26/06, John Paul Ashenfelter [EMAIL PROTECTED] wrote: On 3/26/06, Russ [EMAIL PROTECTED] wrote: We use subversion to manage a large codebase, and it has worked well so far. We use it with the TourtoiseSVN, which integrates into

Re: Auction Software.

2006-04-13 Thread Alan Rother
I almost hate to mention this, but have you considered just using ebay? Seems like it would be alot easier and far less time consuming than getting your own system up and running. I mean, why re-invent the wheel -- Alan Rother Macromedia Certified Advanced ColdFusion MX 7 Developer

RE: cfexecute buffer causing hangs?

2006-04-13 Thread Andrew Tyrone
-Original Message- From: Jamie Jackson [mailto:[EMAIL PROTECTED] Sent: Thursday, April 13, 2006 7:56 PM To: CF-Talk Subject: Re: cfexecute buffer causing hangs? Hmm, I'm probably one of the people you've seen while Googling the subject. While I haven't tried cfexecuting the

catching a query based cfmail ...

2006-04-13 Thread Rick Root
If I'm using cfmail with the query attribute, populating the to address dynamically... how to I catch an individual exception? Like if one row in the query contains an invalid email address that throws a cfmail exception. If i put try/catch around the whole cfmail tag set it'll actually stop

RE: OT: mail to fax?

2006-04-13 Thread Eric Dawson
interfax.net - used and recommend. -Original Message- From: Larry Lyons [mailto:[EMAIL PROTECTED] Sent: April 5, 2006 11:06 AM To: CF-Talk Subject: Re: OT: mail to fax? You may want to look at efax.com. They accept an email with an attachments, and then send the attachment as a fax.

Re: Regular Expressions - Strip HTML tags. Please help!!!

2006-04-13 Thread Jose Diaz
HI cfCoder You could try something along these lines: reReplaceNoCase(str,(font)[^]*,,all) replaceNoCase(returnStr,/font,,all) You could then be selective to the tags you wish to strip out. Hope this helps. All the best Jose Diaz On 4/13/06, cf coder [EMAIL PROTECTED] wrote: Hello

RE: catching a query based cfmail ...

2006-04-13 Thread Dawson, Michael
I think you are totally correct. You will need to do the CFLOOP thing to be able to catch an individual CFMAIL exception. M!ke -Original Message- From: Rick Root [mailto:[EMAIL PROTECTED] Sent: Thursday, April 13, 2006 9:07 PM To: CF-Talk Subject: catching a query based cfmail ... If

Re: How to determine JDBC driver version in use

2006-04-13 Thread S . Isaac Dealey
It looks pretty correct to me. (Although with the CFAdmin API there may be another way to get the metadata object without instantiating the undocumented serviceFactory object.) What kind of results are you seeing? Well, Sir Isaac Dealey (sorry, that's how I have always read your name ;-), I'm

Re: Using CFFTP Via SSH

2006-04-13 Thread Billy Jamme
Hey Scott, I ran into this exact issue last week. Check out: http://www.glub.com/products/secureftp/ It's a java package that runs quite nicely in a command line. As an added bouns it has batch scripting. The way I implemented it was to dynamically generate a batch file using cffile,

insert a list into database

2006-04-13 Thread john holmes
Hi, I have an list that I need to insert into a mysql database and I am not quite sure how to do it. Right now I take the list variable #thiswillbemylist# and if I run a cfloop list to insert it but it just gets a null value in database. The part of query to insert is this: cfloop

Re: model glue/reactor question

2006-04-13 Thread rhymes with 'loud'
Good idea Jamie. I just happened to have done that very thing a short while after making my post. HOWEVER, in my own mind I'm not satisfied...that feels more like masking the symptoms than addressing the issue, so I'm STILL in need of being scrutinized. :D As Buckminster Fuller once said, and

Re: catching a query based cfmail ...

2006-04-13 Thread Denny Valliant
A crazy option would be to use a regular expression (available in MySQL) to grab only valid emails. Heh. With the regex stuff going on, had to mention it. By the by, a useful resource for regex for me has been www.regular-expressions.com. :D3|\|* On 4/13/06, Dawson, Michael [EMAIL PROTECTED]