Re: Anyone using Jakarta Struts for cfmx?

2003-07-15 Thread Thomas Chiverton
On Tuesday 15 Jul 2003 06:55 am, Kwang Suh wrote: I myself will be waiting for Mach II: Championship Edition. But it's already the best a man can get... -- Thomas C Advanced ColdFusion Programmer HANDLE WITH EXTREME CARE: This Email Contains Minute Electrically Charged Particles Moving at

Re: easy cfc question :)

2003-07-15 Thread Jochem van Dieten
Tony Weeg wrote: cfinvoke component=theMatrix method=theDynamicMatrix returnVariable=matrixDisplay cfinvokeargument name=accountNumber value=#url.accountNumber# cfinvokeargument name=debtorNumber value=#url.debtorNumber# /cfinvoke cflock scope=SESSION timeout=5

RE: Anyone using Jakarta Struts for cfmx?

2003-07-15 Thread Jordan Thomas
Hi, We were using struts as a development methodology/framework. Really cool idea but overblown for most web apps. We are now back to CF and using a methodology from www.benorama.com It's nice, supports internationalisation, MVC, n-tier and it's a lot simpler than Struts which means that it's

RE: video formats streaming

2003-07-15 Thread Ihrig Paul E Cont 88 ABW/EM
thanks Michael its on a secure server just for internal use the only reason they want it streamed is that they are pretty chunky files. training videos that can be over 20 minutes long.. guess i will look into setting up a real server, since we own it. just dislike its format the way they treat

cfchart hanging

2003-07-15 Thread A.Little
Hi all, We've recently upgraded to CFMX and I'm in the process of changing our references to cfgraph to cfchart, but I'm finding that cfchart doesn't always generate a graph, the browser just sits there with the progress bar stuck. The rest of the pages display fine (including text/data after the

RE: iframe form javascript

2003-07-15 Thread John Stanley
You probably already thought of this, but do you have this inside a cfoutput? -Original Message- From: Stan Winchester [mailto:[EMAIL PROTECTED] Sent: Monday, July 14, 2003 10:39 PM To: CF-Talk Subject: iframe form javascript I've got a form with two nested iframes that are

Stripping lines from output

2003-07-15 Thread Bushy
Hi, I'm creating a batch file and then executing it via cfexecute. Everything is working great except for the output to screen. cfexecute name=#TheFolder#\#LCase(ListGetAt(FileName,1,'.'))#.bat outputfile=#TheFolder#\#LCase(ListGetAt(FileName,1,'.'))#.rlog timeOut=1000

Stripping lines and outputting to screen

2003-07-15 Thread Bushy
Hi, I'm creating a batch file and then executing it via cfexecute. Everything is working great except for the output to screen. cfexecute name=#TheFolder#\#LCase(ListGetAt(FileName,1,'.'))#.xxx outputfile=#TheFolder#\#LCase(ListGetAt(FileName,1,'.'))#.rlog timeOut=1000

RE: Stripping lines from output

2003-07-15 Thread Mike Townend
Add to the top of the bat file @Echo Off This will stop commands being displayed.. Then when you want to output some text use Echo again e.g. @Echo off C:\programs\runme.exe filename.txt 45 Echo This text appears on screen HTH -Original Message- From: Bushy [mailto:[EMAIL

RE: Stripping lines from output

2003-07-15 Thread Bushy
Doh... Thanks On Tue, 15 Jul 2003 13:07:40 +0100, Mike Townend wrote: Add to the top of the bat file @Echo Off This will stop commands being displayed.. Then when you want to output some text use Echo again e.g. @Echo off C:\programs\runme.exe filename.txt 45 Echo This

RE: easy cfc question :)

2003-07-15 Thread Tony Weeg
how would I telnet to a page? cant I only telnet to a port on a server (ip)? thanks tony weeg uncertified advanced cold fusion developer tony at navtrak dot net www.navtrak.net office 410.548.2337 fax 410.860.2337 -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED]

Re: easy cfc question :)

2003-07-15 Thread Thomas Chiverton
On Tuesday 15 Jul 2003 13:20 pm, Tony Weeg wrote: how would I telnet to a page? cant I only telnet to a port on a server (ip)? http://sartre.dgate.org/~brg/bvtelnet80/ -- Thomas C Advanced ColdFusion Programmer HANDLE WITH EXTREME CARE: This Email Contains Minute Electrically Charged

RE: easy cfc question :)

2003-07-15 Thread Tony Weeg
why is my lock exclusive? the other part of your response: not sure, I was tired, it was late, and just typed that in there ;) tw tony weeg uncertified advanced cold fusion developer tony at navtrak dot net www.navtrak.net office 410.548.2337 fax 410.860.2337 -Original Message- From:

LDAP Monitoring Utility/Tool/CF Script

2003-07-15 Thread Allan Clarke
Hi, I'm searching for a free LDAP monitoring utility/tool or atleast a script. Basically I want to have an update of the LDAP Server at all times. The utility/script should alert me when something goes wrong (service stops/fails). I am using Nagios. Nagios is a feature-rich network monitoring

iframe form javascript

2003-07-15 Thread Stan Winchester
Isaac, I've added '#jsstringformat(subDir name)#' and it still is not changing the value in the ImageName form field. (The variable name is from a cfdirectory query.) a href=viewer.cfm?image=#subDir##name# target=viewer

WAY OT: ACT, SALESLOGIC, OUTLOOK CRM

2003-07-15 Thread cf_man
Im trying to learn more about being able to have a single reporitory for CRM data and connect to various wireless devices such as palm , cell phones etc. Essentially my client uses SALESLOGIC and ACT for CRM and wants to synch (perhaps intellisynch) data (calender, addresses, email, contacts,

Re: iframe form javascript

2003-07-15 Thread S . Isaac Dealey
Isaac, I've added '#jsstringformat(subDir name)#' and it still is not changing the value in the ImageName form field. (The variable name is from a cfdirectory query.) Actually I hadn't even noticed the word name in there -- it's not relevant in that context anyway because that's a

Re: iframe form javascript

2003-07-15 Thread jon hall
What is the js error you are getting? If you don't have Mozilla, I'd highly recommend it, as it's js debugger is the best available. Also have you tried replacing top.mainFrameSet.main with parent? For what you are doing they should have the same effect. At least it would get rid of a few

Includes inside a CFOUTPUT problem...

2003-07-15 Thread Les Mizzell
Why doesn't this work? cfoutput query=prods tr cfswitch expression=#URL.ID# cfcase value=100 cfinclude template=includes/td_1.cfm cfinclude template=includes/td_14.cfm cfinclude template=includes/td_22.cfm /cfcase cfcase value=110 cfinclude

Re: LDAP Monitoring Utility/Tool/CF Script

2003-07-15 Thread jon hall
Surely this feature-rich monitoring tool lets you monitor ports 389 and 636 on your LDAP server? -- jon mailto:[EMAIL PROTECTED] Tuesday, July 15, 2003, 8:49:59 AM, you wrote: AC Hi, AC I'm searching for a free LDAP monitoring utility/tool AC or atleast a script. Basically I want to have an

Re: Includes inside a CFOUTPUT problem...

2003-07-15 Thread Thomas Chiverton
On Tuesday 15 Jul 2003 14:29 pm, Les Mizzell wrote: cfoutput query=prods Assume the include td_1.cfm and the others, in their entirety, is simply like: td#some_variable#/td The scope of the CFOUTPUT tag doesn't extend down into the includes - so the variables aren't outputting What

OT: Flash player

2003-07-15 Thread Candace Cottrell
How can I run a silent install of the flash player for intranets? My boss doesn't want the users to be prompted, ratherit just silently install. I know I did this last year sometime, but I am forgetting how I did it. Also, we have the license for the intranet thing... I looked on the mm site,

RE: Anyone using Jakarta Struts for cfmx?

2003-07-15 Thread Stacy Young
mach-ii.com is lookin good... http://www.mach-ii.com/downloads/Intro%20to%20Implicit%20Invocation.pdf After diving deep into actionscript/flash development the past year I've come to understand the awesomeness of using listeners + event broadcasting in keeping a design flexible. Stace

RE: FeedDemon by Nick Bradbury

2003-07-15 Thread Stacy Young
I've been using it the past week. It roxors. Stace -Original Message- From: Tilbrook, Peter [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 15, 2003 12:55 AM To: CF-Talk Subject: SOT: FeedDemon by Nick Bradbury Nick Bradbury, legendary creator of HomeSite and TopStyle (both of which are

test

2003-07-15 Thread Michael T. Tangorre
test ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4 FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Get the

RE: easy cfc question :)

2003-07-15 Thread Dave Watts
how would I telnet to a page? cant I only telnet to a port on a server (ip)? You telnet to the server, and ask it for the page: At your command prompt, type telnet server_ip 80. Then, at the telnet prompt, type GET /directory/page.cfm HTTP/1.0 followed by two carriage returns. Dave Watts,

RE: Anyone using Jakarta Struts for cfmx?

2003-07-15 Thread Dave Watts
After diving deep into actionscript/flash development the past year I've come to understand the awesomeness of using listeners + event broadcasting in keeping a design flexible. That makes a lot of sense, in an event-driven environment like most GUIs provide. Web applications tend to be a

RE: Flash player

2003-07-15 Thread Robertson-Ravo, Neil (RX)
Pretty sure all it is is a switch : /s or something...? cant really remember as 99.9% of people will have Flash these days -Original Message- From: Candace Cottrell [mailto:[EMAIL PROTECTED] Sent: 15 July 2003 14:51 To: CF-Talk Subject: OT: Flash player How can I run a silent install

Re: easy cfc question :)

2003-07-15 Thread Thomas Chiverton
On Tuesday 15 Jul 2003 15:05 pm, Dave Watts wrote: At your command prompt, type telnet server_ip 80. Then, at the telnet prompt, type GET /directory/page.cfm HTTP/1.0 followed by two carriage returns. And hope it isn't doing name based virtual hosting :-) -- Thomas C Advanced ColdFusion

I need some good old advice.

2003-07-15 Thread James Blaha
All: I need some good old advice. I’m redesigning an application to utilize query caching and the use of Query of Query to speed it up some. So I’m caching one large query and running the application templates using Q0Q. Any time there that there is an insert, update or deletion from the

RE: easy cfc question :)

2003-07-15 Thread Tony Weeg
nope, just one domain, my devbox...testbed really anyway...but will try tonight ;) thanks gents. but whats the thought process here anyway? I can take the cfinvoke stuff off, and things are fine...its the cfc stuff that's buggin this out... right? tony weeg uncertified advanced cold fusion

Merging TIFFs

2003-07-15 Thread Justin Hansen
I need to take a logo with a clipping path and place it on a background image, both tiffs, to create a new tiff. I have tried CFX_IMAGE, ImageJ CFC, ImageFlare. ImageFlare was working the best, but I can't get transparent backgrounds from the logo. Any suggestions would be greatly appreciated.

RE: Anyone using Jakarta Struts for cfmx?

2003-07-15 Thread Stacy Young
I thought the same (when I first glanced at their spec)...but after implementing a few small apps...I've grown to like it...In August I'll be looking at using it in our corporate environment, see how it fares. Although when I first dove into flash/actionscript, I admit it took me some time to get

RE: I need some good old advice.

2003-07-15 Thread Jim Davis
Sorry - not much time but... If the updates and deletes are simplistic (and rare as you say) you _might_ want to not redo the whole main query, but rather update it as well. Remember that you can modify any query in memory using all the variable manipulation tools at your disposal. That way you

MX Stability

2003-07-15 Thread Watson, Nicholas
have a web site that uses ColdFusion MX (updater 3), IIS 5 and SQL2000. The box that the site is on is a dual 1.0 Ghz PIIIs machine with 1 gig of ram. The database sits on a quad proccessor box with Xeons (Over 1 Ghz each, more than enough horsepower for the site). When my site gets crawled by a

RE: UPS and CF

2003-07-15 Thread webmaster
Are you using the Shipping API? Or the Tracking stuff? We did a big full fledged implementation, feel free to contact me offlist. Regards, Eric Hoffman Datastream Connexion -Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED] Sent: Monday, July 14, 2003 4:11 PM To:

RE: Flash player

2003-07-15 Thread Candace Cottrell
Hmm.. how do I have the exe run when the open up the page? Candace K. Cottrell, Web Developer The Children's Medical Center One Children's Plaza Dayton, OH 45404 937-641-4293 http://www.childrensdayton.org [EMAIL PROTECTED] [EMAIL PROTECTED] 7/15/2003 10:06:02 AM Pretty sure all it

Re: MX Stability

2003-07-15 Thread Thomas Chiverton
On Tuesday 15 Jul 2003 15:22 pm, Watson, Nicholas wrote: 620MB Sounds normal enough for a J2EE engine to me. You can try triming the JVM memory settings down. 2. My thread count gets gotten over 300 while being crawled. I've read on other posts CF become unstable at 125 or so. How do

RE: Flash player

2003-07-15 Thread Robertson-Ravo, Neil (RX)
I think it could be a cab or jar thingy.? its been a while and I know how to do it for Director ;-) -Original Message- From: Candace Cottrell [mailto:[EMAIL PROTECTED] Sent: 15 July 2003 15:35 To: CF-Talk Subject: RE: Flash player Hmm.. how do I have the exe run when the open up

iPlanet CF Page Caching Problem

2003-07-15 Thread Tim Haak
Hello All, We recently ran into a problem with ColdFusion loading the wrong CFM pages for different virtual servers hosted from the same machine. The virtual servers are running on the same iPlanet 6.0 SP4 server. All are using ColdFusion MX Enterprise (version 6,0,0,52311) on UNIX (Solaris

RE: easy cfc question :)

2003-07-15 Thread Mike Townend
What happens if you use CreateObject() instead of Invoke ? -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 15, 2003 15:11 To: CF-Talk Subject: RE: easy cfc question :) nope, just one domain, my devbox...testbed really anyway...but will try tonight ;)

RE: LDAP Monitoring Utility/Tool/CF Script

2003-07-15 Thread Michael C. Jackson
Well, aside from just checking the port, I'm sure it would be ideal to see if searches are actually working. I see a couple of different ways to do this (and this is assuming ColdFusion MX): The ideal way to do it would be to simply use CFLDAP, and query an object periodically that you know will

RE: Flash player

2003-07-15 Thread Michael C. Jackson
I'm not familiar with any intranet thing for flash - but from what I understand, this is typically a feature of the browser. If you tweak around the settings so that IE (I'm assuming you are using IE) sees the intranet as a trusted zone, you may be able to get by with doing it silently. Michael

RE: easy cfc question :)

2003-07-15 Thread Tony Weeg
don't know? don't know how to use createObject() :) tony tony weeg uncertified advanced cold fusion developer tony at navtrak dot net www.navtrak.net office 410.548.2337 fax 410.860.2337 -Original Message- From: Mike Townend [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 15, 2003

Re: iPlanet CF Page Caching Problem

2003-07-15 Thread Chris Norloff
We ran into problems like that with iPlanet v4.1 SP5, but it was proxy caching that was causing the problem, not iPlanet caching. Adding this cfheader in Application.cfm solved the problem: !--- disable proxy cache, allow browser cache --- cfheader name=cache-control value=private Chris

RE: iPlanet CF Page Caching Problem

2003-07-15 Thread Dave Watts
We recently ran into a problem with ColdFusion loading the wrong CFM pages for different virtual servers hosted from the same machine. The virtual servers are running on the same iPlanet 6.0 SP4 server. All are using ColdFusion MX Enterprise (version 6,0,0,52311) on UNIX (Solaris 8).

RE: easy cfc question :)

2003-07-15 Thread Tony Weeg
nevermind, I see...ok, ill try that tonight! thanks. tony tony weeg uncertified advanced cold fusion developer tony at navtrak dot net www.navtrak.net office 410.548.2337 fax 410.860.2337 -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 15, 2003 10:58

iframe form javascript

2003-07-15 Thread Stan Winchester
I made the last changes you suggested and nothing happens. However, I am now getting a javascript error: top.mainFrameSet.main.document is null or not an object I also tried removing the target from my revised version to see if at least the value would be passed to the form field, but nothing

RE: Detecting Parasiteware

2003-07-15 Thread Dave Watts
Does anyone know if there is a way to detect if a visitors macjine is infected with parasite ware (like whenu) from CF ? Unless the parasite ware appends HTTP headers to outgoing HTTP client requests, no. CF is a server-side web application language, and you need to examine the client itself.

Multi-language Content Management

2003-07-15 Thread Nikhil Madani
I'm trying to do pretty much the same --- and want to know if anyone out there has experience with multi language mgmt- especially the pitfalls to be avoided. The page in question on my site that needs to support 5 languages is primarily images and little text. But most of the text is derived

Anyone using Jakarta Struts for cfmx?

2003-07-15 Thread Smith, Don , CTR , WHS/PSD
Just wanted to thank everyone for giving me their opinion on Jakarta Struts. Of course when you're dealing with a variety of developers at different skill levels working for different contractors on different projects it is enticing to want to slowly move into something like Java instead of

RE: Includes inside a CFOUTPUT problem...

2003-07-15 Thread Les Mizzell
:: What about :: td#prods.some_variable#/td :: in the includes ? :: That's better syntax anyway... Nope, still doesn't do it H. Re: cfoutput query=prods tr cfswitch expression=#URL.ID# cfcase value=100 cfinclude template=includes/td_1.cfm cfinclude

regex limit in CF 5

2003-07-15 Thread Michael T. Tangorre
Has anyone gotten around the issue of not being able to run more than 20K through a REFindNoCase in Cold Fusion 5? Basically I upload a word document and want to parse through it for specicif fields.. such %{fieldName}. At first I was going to access the document via COM but once a friend of

Re: Anyone using Jakarta Struts for cfmx?

2003-07-15 Thread Joe Eugene
idea but overblown for most web apps. We are now back to CF and using a methodology from www.benorama.com It's nice, supports internationalisation Ben has some really good ideas, a few things i wasnt a big fan of. 1. cfLocation ... in controllers.. which are *.cfc's cflocation

RE: Includes inside a CFOUTPUT problem...

2003-07-15 Thread A.Little
I don;t think the cfoutput is inherited by the cfinclude templates from the calling template, so you'll need to put cfoutput in each of the include templates where you want to output a variable. Don't ask me why it works like this - I have no idea ;-) Alex -Original Message- From:

RE: Anyone using Jakarta Struts for cfmx?

2003-07-15 Thread Ken Wilson
Dave Watts and I had been going back and forth on this framework question- of course he is a huge proponent of Fusebox in all its incarnations- Holy cow...was that the earth moving under my feet?!?! Did you say Dave Watts was a huge proponent of Fusebox? :) Since when? Ken

RE: regex limit in CF 5

2003-07-15 Thread Ben Doom
I generally do something like the following: find in the first 19k If one is found, remember where it is (or process or whatever) and find starting immediately after Else, find starting at about 18k or so (overlap bigger than max size of thing I'm looking for) repeat until the whole document

RE: Anyone using Jakarta Struts for cfmx?

2003-07-15 Thread Kola Oyedeji
Dave Watts and I had been going back and forth on this framework question- of course he is a huge proponent of Fusebox in all its incarnations- Holy cow...was that the earth moving under my feet?!?! Did you say Dave Watts was a huge proponent of Fusebox? :) Since when? Ken

Re: I need some good old advice.

2003-07-15 Thread James Blaha
Jim, Thanks for the reply. I'm not sure I totally follow you. Are you saying to just do a normal cache with a timeout on the main query and place the updates and deletes on the cached query? At what point do I update the actual database table affected? Regards, JB Jim Davis wrote: Sorry -

RE: Includes inside a CFOUTPUT problem...

2003-07-15 Thread Les Mizzell
:: I don;t think the cfoutput is inherited by the cfinclude :: templates from :: the calling template, so you'll need to put cfoutput in each of the :: include templates where you want to output a variable. This will take some head scratching to get to work. Each include is a single td.

Re: regex limit in CF 5

2003-07-15 Thread Michael T. Tangorre
What do you recommend to break it apart? I thought the functions in CF worked on size as it relates to characters - Original Message - From: Ben Doom [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, July 15, 2003 11:56 AM Subject: RE: regex limit in CF 5 I generally

Re: Anyone using Jakarta Struts for cfmx?

2003-07-15 Thread Marlon Moyer
OMG, he's been outed! Marlon Ken Wilson wrote: Dave Watts and I had been going back and forth on this framework question- of course he is a huge proponent of Fusebox in all its incarnations- Holy cow...was that the earth moving under my feet?!?! Did you say Dave Watts was a huge

Re: Anyone using Jakarta Struts for cfmx?

2003-07-15 Thread John Paul Ashenfelter
Interesting... looks a lot like Mach II (nee Fusebox MX). See http://www.mach-ii.com/ Most good developers tend towards the same small set of generalized solutions to a given problem -- algorithms for math, design patterns for OO, etc. Doesn't surprise me at all :) Not to mention that since

RE: Anyone using Jakarta Struts for cfmx?

2003-07-15 Thread Andre Turrettini
Hi Joe, That sounds really interesting. Any way I can convince you to make a mini example that I could look at. DRE -Original Message- From: Joe Eugene [mailto:[EMAIL PROTECTED] Sent: Monday, July 14, 2003 4:01 PM To: CF-Talk Subject: Re: Anyone using Jakarta Struts for cfmx?

Re: Flash player

2003-07-15 Thread Mike Chambers
You might be able to find some info here: http://www.macromedia.com/support/shockwave/info/licensing/faq.html I don't see any reference to silent installs though. I am pretty sure that you cannot do a silent install via the web browser. mike chambers [EMAIL PROTECTED] - Original Message

Re: Anyone using Jakarta Struts for cfmx?

2003-07-15 Thread Sean A Corfield
On Monday, Jul 14, 2003, at 20:37 US/Pacific, Joe Eugene wrote: Interesting.. didnt know Hal Helms and group were working on another Framework Project. They've just about finished Fusebox 4 (an evolution from Fusebox 3 but a fairly radical one in my opinion) and Mach II is now in beta - note

Re: SOT: FeedDemon by Nick Bradbury

2003-07-15 Thread Sean A Corfield
On Monday, Jul 14, 2003, at 21:54 US/Pacific, Tilbrook, Peter wrote: It's called FeedDemon and, despite still being a beta product, is an easy to use RSS news aggregator. Note that it's Windows-only so those of us on Macs will want to look at NetNewsWire which has both a free and a

Re: Anyone using Jakarta Struts for cfmx?

2003-07-15 Thread Sean A Corfield
On Monday, Jul 14, 2003, at 21:40 US/Pacific, Kwang Suh wrote: Mach II == Fusebox MX. Not entirely. Fusebox MX still had circuits and fuseactions - it was halfway house between the procedural Fusebox of old and the shiny new OO MVC behind Mach II. They really are quite different beasts (even

Re: FireFly vs DRK

2003-07-15 Thread Christian Cantrell
On Monday, July 14, 2003, at 04:20 PM, Ryan Mitchell wrote: Christian... When will firefly (Flash MX DCK) be available on Mac OSX?? The tech specs list only pc compatability... !! I don't know of any plans to create a Mac installer. I think it's possible to get it working just fine on OS X,

Mach II

2003-07-15 Thread webguy
My first look at MachII; Does the data in example machII app, persist data ? Is there are readme ? WG ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

Re: Anyone using Jakarta Struts for cfmx?

2003-07-15 Thread Paul Hastings
You should look at Mach II. It's less complex than Struts and it's a nice clean CF implementation of MVC. how does it compare with benorama's MVC? ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4

(Admin) Removal

2003-07-15 Thread Michael Dinowitz
Anyone using software like Spamkilla and the like that continuously floods the list with requests to be authorized will be removed from the list until the software is configured properly. Thank you ~| Archives:

RE: regex limit in CF 5

2003-07-15 Thread Ben Doom
refind(pattern, left(string, 19000)) refind(pattern, mid(string, 18000, 19000)) etc. :-) -- Ben Doom Programmer General Lackey Moonbow Software, Inc : -Original Message- : From: Michael T. Tangorre [mailto:[EMAIL PROTECTED] : Sent: Tuesday, July 15, 2003 12:07 PM : To:

RE: (Admin) Removal

2003-07-15 Thread Raymond Camden
Thank you! Thank you! And once more... THANK YOU! -Ray -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 15, 2003 10:59 AM To: CF-Talk Subject: (Admin) Removal Anyone using software like Spamkilla and the like that continuously floods

RE: I need some good old advice.

2003-07-15 Thread Ben Doom
If I understood correctly, he's saying that if you're caching the query in a shared location (ie application scope) you could run updates on the cached query at the same time that you run them on the DB. I'd have to check to see if it would work, but I don't see why not. -- Ben Doom

RE: Includes inside a CFOUTPUT problem...

2003-07-15 Thread Ben Doom
I'd just replace the includes with their contents. Not as elegant, I guess, but sometimes you just do what works. -- Ben Doom Programmer General Lackey Moonbow Software, Inc : -Original Message- : From: Les Mizzell [mailto:[EMAIL PROTECTED] : Sent: Tuesday, July 15, 2003

Re: regex limit in CF 5

2003-07-15 Thread Michael T. Tangorre
doph! I am not the MOTO I thought I was. :-) Thanks Mike - Original Message - From: Ben Doom [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, July 15, 2003 12:52 PM Subject: RE: regex limit in CF 5 refind(pattern, left(string, 19000)) refind(pattern, mid(string,

Re: I need some good old advice.

2003-07-15 Thread James Blaha
Ben, Thanks for the information. It looks like my best bet right now is to update, modify and delete through a normal CFQUERY then after that query call the un cacheing and cache query through a cfschedule tag. This looks like it might work very well.. Regards, JB Ben Doom wrote:

Re: (OT) RegEx editor

2003-07-15 Thread Michael Dinowitz
I think that this is a rather cool idea and would be willing to work with people to build it (as soon as my computer is back up). On the other hand, I highly doubt Macromedia will swoop down and incorporate it into something like Dreamweaver. It would have to be done by one of us. Lets move this

RE: Includes inside a CFOUTPUT problem...

2003-07-15 Thread Les Mizzell
Yep, that's what I was getting ready to do Bummer, huh? :: -Original Message- :: From: Ben Doom [mailto:[EMAIL PROTECTED] :: Sent: Tuesday, July 15, 2003 12:56 PM :: To: CF-Talk :: Subject: RE: Includes inside a CFOUTPUT problem... :: :: :: I'd just replace the includes with their

Re: (Admin) Removal

2003-07-15 Thread Michael Dinowitz
Your welcome. I hate being draconian but I spend a LOT of time making sure spam does not get to this list and reviewing all of the posts that have been rejected because of spam or being not subscribed. I can't have people using a poor anti-spam technique adding to my work. And yes, I think it's a

Re: I need some good old advice.

2003-07-15 Thread jon hall
If this is a high traffic site, or the query takes extraordinarily long to execute, keep in mind the people hitting the site while the query is recaching, and right after the server is restarted, etc. They could get errors, bad data, or long delays... I've got an app that does something similar

RE: Re: I need some good old advice.

2003-07-15 Thread Mike Brunt
This may or may not be relevant but we have been involved in some very creative use of a custom tag called cf_supercache. You do some really granular controlled content caching with that tag using UID's/query strings for site visitors/events. Kind Regards - Mike Brunt Original Message

Re: I need some good old advice.

2003-07-15 Thread James Blaha
Jon, Your comment has the meat I’m looking for! Thanks. What exactly do you mean by: “schedule the cache update, and build in logic on each page request to test if the cache exists, if not, requery immediately” Can you please give me some kind of an example of what the templates involved

Re: I need some good old advice.

2003-07-15 Thread James Blaha
Mike, cf_supercache sounds interesting. Where can I get my hands on it and the documentation? Regards, JB Mike Brunt wrote: This may or may not be relevant but we have been involved in some very creative use of a custom tag called cf_supercache. You do some really granular controlled

RE: Re: I need some good old advice.

2003-07-15 Thread Mike Brunt
James you can find it here: -(watch for the wrapping of the url) http://www.macromedia.com/cfusion/exchange/index.cfm;jsessionid=48303189051048863726495?view=sn131extID=1002264 It is a great tag, it was developed to help with the complex caching strategies needed for Spectra. Good luck. Kind

RE: MX Stability

2003-07-15 Thread Matt Robertson
You can also throttle connections with IIS very effectively. In IIS properties for the web site, click the Performance tab. Check enable bandwidth throttling and be prepared to scale the speed WAY back. I had it down to 1 or 2 kbps once on a low-traffic site and no humans noticed any

Re: iframe form javascript

2003-07-15 Thread S . Isaac Dealey
In this case, there's something wrong with the path top.mainFrameSet.main ... it's typod or otherwise misspelled, or the spelling doesn't have the right case. Once you've got that figured out, hopefully the function will be able to access that form field. I made the last changes you suggested

Re: Anyone using Jakarta Struts for cfmx?

2003-07-15 Thread Joe Eugene
Hi Joe, That sounds really interesting. Any way I can convince you to make a mini example that I could look at. I am looking forward to publishing a prototype of the Framework sometime soon. The framework is alot more flexible and uses an MDA Pattern. It would be nice to get the opinion of

RE: MX Stability

2003-07-15 Thread Watson, Nicholas
When you say publish to *static* cfm pages what do you mean. Doesn't cfcache accomplish this? Or does your content management system compile and publish the static cfm files on the Web site? -Original Message- From: Matt Robertson [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 15, 2003

legal issues

2003-07-15 Thread Barney Boisvert
My company recently spawned off from a parent company, and we're drafting a non-compete agreement and looking for some insight as to wording. We found a couple generic agreements, and they used such remarkably vague terms as ... the Employee shall not own, manage, operate, consult to or be

Re: I need some good old advice.

2003-07-15 Thread jon hall
Tuesday, July 15, 2003, 1:35:16 PM, you wrote: JB Jon, JB Your comment has the meat I’m looking for! Thanks. JB What exactly do you mean by: JB “schedule the cache update, and build in logic on each page request to JB test if the cache exists, if not, requery immediately” We use cfschedule to

Re: Anyone using Jakarta Struts for cfmx?

2003-07-15 Thread Joe Eugene
or parsed files. Mach II is an MVC-based framework driven by an implicit invocation architecture - using events and listeners. I read over some Mach II docs last nite. If i am right, atleast the doc refers so http://www.mach-ii.com/downloads/Intro%20to%20Implicit%20Invocation.pdf Events

RE: Multi-language Content Management

2003-07-15 Thread Andy Ousterhout
My experience is more on the content side -- Managing translation process, verifying images are culturally aware/sensitive, etc. If you have questions here, I can help. Andy -Original Message- From: Nikhil Madani [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 15, 2003 10:19 AM To:

Re: legal issues

2003-07-15 Thread Bryan Stevenson
Not sure about the legal situation in the US, but in Canada most lawyers will tell ya non-compete agreements are just expensive pieces of paper...easily fought if need bejust too many ways of reading them...too many gray areas Cheers Bryan Stevenson B.Comm. VP Director of E-Commerce

RE: I need some good old advice.

2003-07-15 Thread HOFLists
Ben's right: I meant that instead of updating he DB then selecting the whole thing again you update the table then modify the query in memory to reflect the changes. Actually it doesn't even have to be in a shared scope tho'. If you just do: cfquery name=test cachedwithin... SELECT Name

Checking form input value

2003-07-15 Thread Bushy
Hi, I have a form that I submit back to itself. How can I check in my form template what input box was selected? I would need a check here to see wchich of the below inputs was clicked on. I've left out the JS also. cfif if INPUT FIELD IS SOMETHING Do this... cfelse DO this... /cfif

RE: Flash player

2003-07-15 Thread Michael Wilson
Hi, You can obtain the Macromedia Flash Deployment Kit here: http://www.macromedia.com/software/flash/download/deployment_kit/. If you use Dreamweaver, the behavior provided is very convenient. There is a parameter to auto-install the player on Internet Explorer Windows. This skips the test and

RE: Flash player

2003-07-15 Thread Michael Wilson
Hi, You can obtain the Macromedia Flash Deployment Kit here: http://www.macromedia.com/software/flash/download/deployment_kit/. If you use Dreamweaver, the behavior provided is very convenient. There is a parameter to auto-install the player on Internet Explorer Windows. This skips the test and

Help with cfhttp, cfhttpparam

2003-07-15 Thread James Johnson
Been struggling with this and hoped I could get some help. Using CFMX. I need to convert this html form: form action=https://www.interceptcorporation.com/uploadcsv.icp; method=POST enctype=multipart/form-data Login: input type=text value= name=login Pass: input type=password

  1   2   >