RE: SQL Question. Compare one list to another

2005-12-08 Thread Robertson-Ravo, Neil (RX)
Your misunderstanding - I would not really approve of comma separated lists in columns -, I totally approve of bridge tables. -Original Message- From: Rick Faircloth [mailto:[EMAIL PROTECTED] Sent: 07 December 2005 16:04 To: CF-Talk Subject: RE: SQL Question. Compare one list to

display multiple columns in a CFSELECT?

2005-12-08 Thread Les Mizzell
Is there any way to get cfselect to display multiple columns from a query? For example - using a standard select, here's what I'm showing: option value=#calendar.id# #LSDateFormat(calendar.event_date,'mm-dd-')# cfif IsDefined(calendar.event_time) -

Future of CF Under Adobe

2005-12-08 Thread Simon Horwith
Those of you with questions/concerns about how the acquisition will effect CF may want to check out my last blog entry at http://www.horwith.com/index.cfm?mode=entryentry=09E12BC2-E081-0478-473390D7C9ACC2D6 I just ran a CFDJ interview between Myself and Dave Mendels about the future of CF under

RE: display multiple columns in a CFSELECT?

2005-12-08 Thread ColdFusion
Not in the form of columns. You can have basically a row of text displayed. -Original Message- From: Les Mizzell [mailto:[EMAIL PROTECTED] Sent: Thursday, December 08, 2005 4:00 AM To: CF-Talk Subject: display multiple columns in a CFSELECT? Is there any way to get cfselect to display

Sending secure email with cfmail?

2005-12-08 Thread Pete Ruckelshaus
Is there any way to send secure (encrypted) email using cfmail in cfmx 7? Thanks, Pete ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a

RE: Sending secure email with cfmail?

2005-12-08 Thread Robertson-Ravo, Neil (RX)
Use it on conjunction with something like PGP. I am sure there are loads of resources out there... Google: ColdFusion + PGP -Original Message- From: Pete Ruckelshaus [mailto:[EMAIL PROTECTED] Sent: 08 December 2005 11:55 To: CF-Talk Subject: Sending secure email with cfmail? Is

Re: Calling Oracle Stored Procedures from CF

2005-12-08 Thread Andrew Eakett
Michael, My experience has been that the easiest way to do this is: cfquery ... select selRandomQuestionIDs() from dual; /cfquery Others will likely suggest cfstoredproc, which I'm told is meant for just your situation. That said, I still prefer to select from dual (for no particular

Re: Virtual Directories under CF7 Developer

2005-12-08 Thread Wally Randall
I am running on Windows XP Pro. How do I set CF up running as a user as you suggest? Where is some documentation on that? If you have CF running as local system, it will not see your network drives. You will need to set up cf running as a user, and make sure that that user has the drive

RE: Custom Tags Folder

2005-12-08 Thread Snake
Cfimport is fastest Cf_tagname next Then cfmodule -Original Message- From: Matt Robertson [mailto:[EMAIL PROTECTED] Sent: 08 December 2005 01:26 To: CF-Talk Subject: Re: Custom Tags Folder cfmodule is supposed to be slower than the 'cf_' method. Anyone have any idea how much slower?

Re: Calling Oracle Stored Procedures from CF

2005-12-08 Thread Deanna Schneider
Does that even work for you in sql plus? It compiles with errors for me. I think you'd need this: CREATE OR REPLACE PROCEDURE selRandomQuestionIDs AS BEGIN SELECT quizQuestionID, RANDOM_ORDER FROM random_number WHERE rownum = 20; END; Though, to be honest, Im not sure why you're

Re: Custom Tags Folder

2005-12-08 Thread Raymond Camden
What tests have you done to show cf_ is faster than cfmodule? On 12/8/05, Snake [EMAIL PROTECTED] wrote: Cfimport is fastest Cf_tagname next Then cfmodule -- === Raymond Camden, Director of Development for Mindseye, Inc

RE: Sending secure email with cfmail?

2005-12-08 Thread Bobby Hartsfield
CFX_PGP works for me :) ..:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Robertson-Ravo, Neil (RX) [mailto:[EMAIL PROTECTED] Sent: Thursday, December 08, 2005 6:51 AM To: CF-Talk Subject: RE: Sending secure email with cfmail? Use it on

RE: Custom Tags Folder

2005-12-08 Thread Snake
Using nested tags. Russ -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: 08 December 2005 13:28 To: CF-Talk Subject: Re: Custom Tags Folder What tests have you done to show cf_ is faster than cfmodule? On 12/8/05, Snake [EMAIL PROTECTED] wrote: Cfimport is

Re: Verity Help

2005-12-08 Thread Greg Johnson
Ya, thats what we are using, but it updates by replacing the body not appending to it. You tried action=update ? .:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Greg Johnson [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 07, 2005

Re: Verity Help

2005-12-08 Thread Greg Johnson
It has been years since I used Verity, I didn't know you could specify multiple collections. That would certainly be a possiblity. I will have to check into it. Don't know if I understand the question correctly, but couldn't you create 35 collections then specify them all in the CFSEARCH ?

Re: Custom Tags Folder

2005-12-08 Thread Raymond Camden
Eh? You mean wrapping the calls with a timer type tag? If so, I have not found that. My testing showed no clear winner. Even if cf_foo was slightly faster, I'd still recommend cfmodule simply because it is much more portable. On 12/8/05, Snake [EMAIL PROTECTED] wrote: Using nested tags. Russ

RE: Verity Help

2005-12-08 Thread Bobby Hartsfield
Ahhh, thought you meant you wanted it to append some results (without losing old results). So you want it to actually APPEND to an existing entries body? Ouch... I don't think your going to get that. I'd try breaking things up into their own collections to not only speed things up, but easily

Regex - Remove blank lines

2005-12-08 Thread Wally Randall
I am generating XML output into a variable prior to writing it to a text file. There are several places where blank lines are appearing in the output. How can I use rereplace() to remove blank lines from the generated XML prior to writing the file with cffile()?

RE: Regex - Remove blank lines

2005-12-08 Thread Bobby Hartsfield
Might just be an encoding problem, (someone else will have to lend their expertise there) Might just be your code (much like blank lines you see in CF generated HTML) running more lines together usually helps, cfsilent where no output is happening can help) You can look for... chr(10)chr(10) and

Re: Calling Oracle Stored Procedures from CF

2005-12-08 Thread James Holmes
Not to mention that since there is no declared cursor you are relying on an implicit cursor but; 1) this looks like it will return more than one row, which is a no-no with an implicit cursor and 2) there is no INTO clause to store the result, so the procedure won't run anyway. Start with a

RE: Regex - Remove blank lines

2005-12-08 Thread Ben Nadel
REReplace(strOutputData, [#Chr(13)##Chr(10)#]+, , ALL); This will find one or more strings that contain a combination of 13 (return??) and 10 (new line?? - cant remember which is which) and replace it with a space. I tend to replace with a space rather than an empty string cause it feels safer

Re: cfscript Common Functions and Best Practices

2005-12-08 Thread Larry Lyons
Setting commonly used functions to a 'permanent' memory scope such as server or application is a good idea. A better one would be to create a CFC that contains the common functions as well as common data and store that CFC in the memory scope. How would that work under a clustered environment?

Re: Virtual Directories under CF7 Developer

2005-12-08 Thread Marlon Moyer
Wally, You need to go to Start-Run-Type services.msc. Scroll down and find the Coldfusion MX 7 Application Server. Dbl Click it and select the Logon tab. Yours should have Local System Account checked. What you want to do from here is use an account that has access to network resources. It

Re: Verity Help

2005-12-08 Thread Greg Johnson
Ya, thats what I am trying now. Came up with a great Management Report System in Flex 2, but the managers want keyword search ability. So we figured Verity would be the best solution. Just this one pain in the arse database we have to deal with. Thanks Greg Ahhh, thought you meant you

Re: Regex - Remove blank lines

2005-12-08 Thread Wally Randall
I used this code with no change in the output. The first line in blank prior to the XML delclaration. That causes XML validators to reject the file: cfset session.xmlfile=REReplace(session.xmlfile, [#Chr(13)##Chr(10)#]+, , ALL) There are also embedded blank lines in the text file which need

Ability to kill requests and threads

2005-12-08 Thread Ryan Duckworth
I read about this new product on www.forta.com and thought I would check it out. I installed it on our development server and was able to kill running requests and threads. I thought this could be useful, instead of restarting the whole CF service. It also shows the memory usage and has some

RE: Future of CF Under Adobe

2005-12-08 Thread Bobby Hartsfield
Thanks Simon! ..:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Simon Horwith [mailto:[EMAIL PROTECTED] Sent: Thursday, December 08, 2005 5:33 AM To: CF-Talk Subject: Future of CF Under Adobe Those of you with questions/concerns about how

OT: PDF conversion

2005-12-08 Thread Jennifer Gavin-Wear
completely OT ... I'm looking for recommendations for a cheap as possible (free is good) pdf to text converter. Any ideas please? Jenny ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket

RE: cfLOCATION - what's it doing??

2005-12-08 Thread Mosh Teitelbaum
Sorry for coming late to the party... I gave a preso on HTTP a while back that may be a useful read for some. It describes how browsers and clients communicate, the ins-and-outs of the HTTP protocol, and describes the various CF tags and functions that relate to HTTP. It also includes some

RE: Ability to kill requests and threads

2005-12-08 Thread Che Vilnonis
Ryan, I saw that post on BF's blog last week. I too was waiting to hear a few more positive reviews before taking the plunge. It would be nice to see what others thought of this product. :) ~Che -Original Message- From: Ryan Duckworth [mailto:[EMAIL PROTECTED] Sent: Thursday, December

RE: Future of CF Under Adobe

2005-12-08 Thread Dawson, Michael
I'm glad you published this. I attended a user group meeting at IU yesterday. Tom Person, from Adobe, also reassured that CF is here to stay. He also mentioned that Fireworks was here to stay, as far as he knows. Of course, he could not give personal guarantees, but he said that since CF and FW

RE: Ability to kill requests and threads

2005-12-08 Thread Robertson-Ravo, Neil (RX)
Much like SeeFusion and to be honest I still cannot believe that Adobe (feels weird saying that) do not package this kind of tool out of the box. CF has a long way to before it gets up to the knews of .NET when it comes to debugging. N -Original Message- From: Ryan Duckworth

RE: PDF conversion

2005-12-08 Thread Robertson-Ravo, Neil (RX)
What just strip out the text? -Original Message- From: Jennifer Gavin-Wear [mailto:[EMAIL PROTECTED] Sent: 08 December 2005 14:54 To: CF-Talk Subject: OT: PDF conversion completely OT ... I'm looking for recommendations for a cheap as possible (free is good) pdf to text converter.

RE: Ability to kill requests and threads

2005-12-08 Thread Robertson-Ravo, Neil (RX)
It looks howevera lot nicer than SeeFusion. -Original Message- From: Robertson-Ravo, Neil (RX) [mailto:[EMAIL PROTECTED] Sent: 08 December 2005 14:50 To: CF-Talk Subject: RE: Ability to kill requests and threads Much like SeeFusion and to be honest I still cannot believe that Adobe

RE: PDF conversion

2005-12-08 Thread Dawson, Michael
I'm assuming she wants to be able to open a PDF and then save all the text to a text file. I also assume she wants an app that will batch-process several PDFs, otherwise, she could just copy-n-paste the text. One issue she may run into, with copy-n-paste, is if the PDF has columns of text, they

Reporting, listing with CF, Java and so on

2005-12-08 Thread Michel Deloux
Hi all I'm searching experiences about reporting or listing with CF. Html tables or Java reporting tools(like ReportMill)? CFReport is not available(I'm using CFMX 6.1). Give me your comment. Cheers MD ~| Logware

Calling CFCs in Javascript

2005-12-08 Thread Chad McCue
I have the following code on my product search results page from an administrative area. Basically all I want this to do is update the status through JS and CFCs so it updates my database for the selected product. My problem is in IE, I can change a status from On to Off and then Off to On but

RE: Calling CFCs in Javascript

2005-12-08 Thread Robertson-Ravo, Neil (RX)
Sounds like a job for CFAJAX ;-) -Original Message- From: Chad McCue [mailto:[EMAIL PROTECTED] Sent: 08 December 2005 15:18 To: CF-Talk Subject: Calling CFCs in Javascript I have the following code on my product search results page from an administrative area. Basically all I want

RE: Calling CFCs in Javascript

2005-12-08 Thread Katz, Dov B \(IT\)
Is it possible that you have http headers causing your responses to be cached? If you did, this would prevent the cfc access from ever getting called again, sine the browser thinks it has a cached response to that URL... Try this code to see if that's whats going on var rand=new

Re: Ability to kill requests and threads

2005-12-08 Thread Dave Carabetta
On 12/8/05, Robertson-Ravo, Neil (RX) [EMAIL PROTECTED] wrote: Much like SeeFusion and to be honest I still cannot believe that Adobe (feels weird saying that) do not package this kind of tool out of the box. CF has a long way to before it gets up to the knews of .NET when it comes to

RE: Ability to kill requests and threads

2005-12-08 Thread Robertson-Ravo, Neil (RX)
Andy Allan just noted to me this... Fusion Reactor does require an upgrade to Java 5 if you want all the features. Seeing as how CFMX at this time isn't fully compliant with 5, you may get a few issues. Worth testing this.. -Original Message- From: Dave Carabetta [mailto:[EMAIL

RE: Ability to kill requests and threads

2005-12-08 Thread Ben Forta
Funny you should mention that now. I am actually right now reviewing and commenting on a feature spec for just this functionality. ;-) I am not making any promises about specifics, but yes, Tim and I did indeed identify this is as a major theme for Scorpio. --- Ben -Original Message-

Re: OT: PDF conversion

2005-12-08 Thread James Holmes
PDFBox: http://www.pdfbox.org/ Open source, java and it works. On 12/8/05, Jennifer Gavin-Wear [EMAIL PROTECTED] wrote: completely OT ... I'm looking for recommendations for a cheap as possible (free is good) pdf to text converter. Any ideas please? -- CFAJAX docs and other useful

Re: Regex - Remove blank lines

2005-12-08 Thread Ben Doom
You could try adding chr(9) to the regex. Also, I'd pick one of these (I use chr(10)) and use that as a replace instead of a single space. That way, multi-line breaks become single line breaks. Not tested, YMMV, etc. --Ben Wally Randall wrote: I used this code with no change in the output.

RE: Calling CFCs in Javascript

2005-12-08 Thread Jim Davis
IE is probably caching the call. Try appending a timestamp value to the URL - something like: TS = + escape(new Date()) That might clear up your problem. Jim Davis ~| Discover CFTicket - The leading ColdFusion Help Desk

Re: Ability to kill requests and threads

2005-12-08 Thread James Holmes
Is Scorpio a it's done when it's done type release or is there a target timeframe for it? On 12/8/05, Ben Forta [EMAIL PROTECTED] wrote: Funny you should mention that now. I am actually right now reviewing and commenting on a feature spec for just this functionality. ;-) I am not making any

Re: Calling Oracle Stored Procedures from CF

2005-12-08 Thread Dave Carabetta
On 12/8/05, James Holmes [EMAIL PROTECTED] wrote: Not to mention that since there is no declared cursor you are relying on an implicit cursor but; 1) this looks like it will return more than one row, which is a no-no with an implicit cursor and 2) there is no INTO clause to store the result,

Re: Ability to kill requests and threads

2005-12-08 Thread Dave Carabetta
On 12/8/05, Ben Forta [EMAIL PROTECTED] wrote: Funny you should mention that now. I am actually right now reviewing and commenting on a feature spec for just this functionality. ;-) I am not making any promises about specifics, but yes, Tim and I did indeed identify this is as a major theme

RE: Ability to kill requests and threads

2005-12-08 Thread Ben Forta
James, We've not discussed dates at all yet, sorry. --- Ben -Original Message- From: James Holmes [mailto:[EMAIL PROTECTED] Sent: Thursday, December 08, 2005 10:36 AM To: CF-Talk Subject: Re: Ability to kill requests and threads Is Scorpio a it's done when it's done type release or

RE: Ability to kill requests and threads

2005-12-08 Thread Ben Forta
Now, about the ability to replicate CFCs in a cluster Yeah, we do need to address that. typed with best poker face -Original Message- From: Dave Carabetta [mailto:[EMAIL PROTECTED] Sent: Thursday, December 08, 2005 10:40 AM To: CF-Talk Subject: Re: Ability to kill requests and

How much server memory can CF/Jrun use?

2005-12-08 Thread Jon Block
I have a super load intensive app that I'm working on. I'm using tons of cached queries and other types of CFC's etc. My server has 2GB of memory on it. I want CF to be able to gobble up all the memory it possibly would need to accomplish all of the stuff I've got it doing. Do I need to specify

RE: Regex - Remove blank lines

2005-12-08 Thread Ben Nadel
Try a combo of things. // Replace emptly lines with empty string REReplace(session.xmlfile, [\s]+[#Chr(13)##Chr(10)#]+, , ALL) // Replace line breaks REReplace(session.xmlfile, [#Chr(13)##Chr(10)#]+, , ALL) Not tested. ... Ben Nadel Web Developer Nylon Technology 6 West

Good 'quick read' resources for CFMX gateways?

2005-12-08 Thread asherwood
Any links to quick starts and like resources for getting up and running with CFMX gateways would be helpful! Thanks! -- Alex Sherwood ~| Logware (www.logware.us): a new and convenient web-based time tracking application.

Re: How much server memory can CF/Jrun use?

2005-12-08 Thread Dave Carabetta
On 12/8/05, Jon Block [EMAIL PROTECTED] wrote: I have a super load intensive app that I'm working on. I'm using tons of cached queries and other types of CFC's etc. My server has 2GB of memory on it. I want CF to be able to gobble up all the memory it possibly would need to accomplish all of

RE: Calling Oracle Stored Procedures from CF

2005-12-08 Thread RADEMAKERS Tanguy
I am having troubles getting even basic Oracle sp's to call from my coldfusion pages. Heres the procedure: CREATE OR REPLACE PROCEDURE selRandomQuestionIDs() AS IS BEGIN SELECT quizQuestionID, RANDOM_ORDER FROM random_number WHERE rownum = 20 END; Heres the call: cfquery

Calling Oracle Stored Procedures from CF

2005-12-08 Thread RADEMAKERS Tanguy
i tried answering this a few hours ago, but HOF seems to have eaten my mail, so here goes again: Michael, 1) Your proc is incorrect (that's what the error message is complaining about). You need to fix a few things: - don't use both AS and IS in the same declaration (just AS) -

RE: CSS

2005-12-08 Thread Bobby Hartsfield
I used this for a while but ended up having to take it out and write separate classes for all the form fields like radio, select, checkbox... instead of using the attribute selectors. (It sucks too, it was nice not to have to put class= on everything!) It worked fine for me but a few others

Re: How much server memory can CF/Jrun use?

2005-12-08 Thread Douglas Knudsen
and check out Pete Frietag's blog...in fact he just posted more info today on JVM tuning http://www.petefreitag.com/item/508.cfm DK On 12/8/05, Dave Carabetta [EMAIL PROTECTED] wrote: On 12/8/05, Jon Block [EMAIL PROTECTED] wrote: I have a super load intensive app that I'm working on. I'm

RE: transparent png for ie hack

2005-12-08 Thread Ewok
Just cleaning out OOOD emails I use this for background image pngs. You can either use a transparent gif 1px by 1px in an img tag with the same width and height as the png you want to disaply, or set the width: and height: styles along with it. cfscript function

Troublshooting jrun 100% on cfmx 6.1

2005-12-08 Thread Howie Hamlin
I have a cfmx 6.1 server (DataDirect drivers are updated to 3.3) and the server periodically goes to 100% (jrun is the process causing this). What is the best way of troubleshooting this? I have the server logs but there is nothing in them that indicates a specific error that occurs when this

Re: Regex - Remove blank lines

2005-12-08 Thread Wally Randall
Thanks guys. This code did the job: cfset theXML=REReplace(theXML, [\s]+[#Chr(13)##Chr(10)#]+, #Chr(10)#, ALL) I used this code with no change in the output. The first line in blank prior to the XML delclaration. That causes XML validators to reject the file: cfset

RE: Virtual Directories under CF7 Developer

2005-12-08 Thread Russ
Simple, go to administrative tools-Services and find the ColdFusion Service (there are several, but you're interested in the one that processes your pages. It will be called something different depending on the version of ColdFusion and the setup you have (standalone vs JRUN). Once you find

RE: Custom Tags Folder

2005-12-08 Thread Snake
Matter of preference then, as I prefer using CFIMPORT. -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: 08 December 2005 13:46 To: CF-Talk Subject: Re: Custom Tags Folder Eh? You mean wrapping the calls with a timer type tag? If so, I have not found that. My

RE: Troublshooting jrun 100% on cfmx 6.1

2005-12-08 Thread Gaulin, Mark
Try to get a stack trace (technote 18339 - http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=tn_18339) When you see it start to spike, set focus to the DOS Window and hit Control+(Pause/Break) (not control-C which everyone does by instinct - that kills JRun). One thing: For 6.1 at

Re: Troublshooting jrun 100% on cfmx 6.1

2005-12-08 Thread Howie Hamlin
Thanks - I'll give this a shot. Much appreciated... Regards, Howie --- On Thursday, December 08, 2005 1:18 PM, Gaulin, Mark scribed: --- Try to get a stack trace (technote 18339 - http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=tn_18339) When you see it start to spike, set

testing a string for unicode characters

2005-12-08 Thread S . Isaac Dealey
Strange question, I'm hoping somebody knows... I just noticed today (or rather, John Ashenfelter pointed out to me :) that some regular expression engines include \u to match unicode characters. So I did a couple tests on some data we had in a legacy database (it doesn't have any nvarchar

CF running as a user - problems accessing registry

2005-12-08 Thread Russ
I've set up CF 7 to run as a local user. Now when I try to create an MS Access DSN, I get 'Unable to update the NT registry. Cannot open HKEY_LOCAL_MACHINE\SOFTWARE\ODBC\ODBC.INI\ODBC Data Sources: Windows error number 5 occurred.Access is denied.' Are there some rights that I need to

Re: Good 'quick read' resources for CFMX gateways?

2005-12-08 Thread Sean Corfield
On 12/8/05, asherwood @ huntwar. com asherwood @ huntwar. com [EMAIL PROTECTED] wrote: Any links to quick starts and like resources for getting up and running with CFMX gateways would be helpful! The ColdFusion Develeper's Guide manual has several chapters on event gateways. I suggest you

Re: CF running as a user - problems accessing registry

2005-12-08 Thread Robert Munn
Use regedt32.exe. Go to the root key in question and select File | Permissions. You can then set ACLs on specific keys to allow your CF user to access them. I've set up CF 7 to run as a local user. Now when I try to create an MS Access DSN, I get 'Unable to update the NT registry. Cannot open

RE: CF running as a user - problems accessing registry

2005-12-08 Thread Russ
Thank you. That worked. Russ -Original Message- From: Robert Munn [mailto:[EMAIL PROTECTED] Sent: Thursday, December 08, 2005 12:57 PM To: CF-Talk Subject: Re: CF running as a user - problems accessing registry Use regedt32.exe. Go to the root key in question and select File |

Re: Troublshooting jrun 100% on cfmx 6.1

2005-12-08 Thread Andy Allan
And although this doesn't necessarily address the issue, the latest supported drivers are 3.5 http://www.macromedia.com/go/42dcb10a Andy On 08/12/05, Howie Hamlin [EMAIL PROTECTED] wrote: Thanks - I'll give this a shot. Much appreciated... Regards, Howie --- On Thursday, December 08,

Re: Verity Help

2005-12-08 Thread Greg Johnson
Yup, doing the multiple collections did it and it is still fairly fast. Thanks :) Greg ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket application

RE: Troublshooting jrun 100% on cfmx 6.1

2005-12-08 Thread FROEHLING, ROBERT \(AIT\)
Have you installed the latest JRun updaters? http://www.macromedia.com/support/jrun/updaters.html -Original Message- From: Andy Allan [mailto:[EMAIL PROTECTED] Sent: Thursday, December 08, 2005 1:42 PM To: CF-Talk Subject: Re: Troublshooting jrun 100% on cfmx 6.1 And although this

Disable Submit Button CFform CF5??

2005-12-08 Thread paulh
I've tried about 5 different methods to disable a submit button in a cfform, all methods seem to work with a regular html form but for whatever reason they fail when I try to apply them to a cfform. Does anyone know of a way to disable a CFform submit button OnClick or OnSubmit in cf5? Thanks in

scheduler

2005-12-08 Thread Ryan Guill
Hey guys, We are looking at needing the ability to create a scheduled tasks manager. We need the ability for some users to schedule when a certain task runs, for instance we will have some users who will schedule when a task will run to create a certain report for them. Since we defaintely do

RE: scheduler

2005-12-08 Thread Burns, John D
I can't help with anything, but my guess would be that you would have a lastRun field in your table that would store a date/time as to when the last time it was run. If you really want to get fancy and complicated, you could make a lastAttempted and lastSuccessfullyCompleted. Then, have a field

Re: Disable Submit Button CFform CF5??

2005-12-08 Thread Tony
why not just do this... input type=submit ... onClick=this.disabled='true',this.form.submit(); doesnt that work? tw On 12/8/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I've tried about 5 different methods to disable a submit button in a cfform, all methods seem to work with a regular html

RE: Disable Submit Button CFform CF5??

2005-12-08 Thread Bobby Hartsfield
you could add its onclick event via JS too with something like element.setAttributes(onclick, this.disabled='true') not tested, but just look up javascripts setAttributes() function ..:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Tony

Re: Disable Submit Button CFform CF5??

2005-12-08 Thread paulh
That was simple, thanks for the help Tony. why not just do this... input type=submit ... onClick=this.disabled='true',this.form.submit(); doesnt that work? tw On 12/8/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I've tried about 5 different methods to disable a submit button in a

OT: MSSQL DTS Help

2005-12-08 Thread Rich Kroll
Hello all, Sorry for the OT, just hoping someone here might have some experience with this. I'm trying to create a DTS workflow, and am not sure if this is possible or not. We have three servers, development, staging, and live. I'm looking to promote certain elements of a database to the next

RE: Disable Submit Button CFform CF5??

2005-12-08 Thread Bobby Hartsfield
Actually... if you are using cfform, I imagine you are using it for the client side validation it generates? Disabling the button would be easy but re-enabling it when the validation catches something would prove to be a little more difficult. ..:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield

Re: Disable Submit Button CFform CF5??

2005-12-08 Thread Ray Champagne
If that's the case, I think you'd probably be better off taking a look at qforms. http://pengoworks.com/index.cfm?action=get:qforms Ray Bobby Hartsfield wrote: Actually... if you are using cfform, I imagine you are using it for the client side validation it generates? Disabling the button

RE: Disable Submit Button CFform CF5??

2005-12-08 Thread Bobby Hartsfield
I can vouch for qForms :) ..:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Ray Champagne [mailto:[EMAIL PROTECTED] Sent: Thursday, December 08, 2005 3:46 PM To: CF-Talk Subject: Re: Disable Submit Button CFform CF5?? If that's the case, I

Recover lost cfadmin password?

2005-12-08 Thread Will Tomlinson
I hadda friend just email me. She hasn't used cf in a while and forgot her password. Is there a way she can retrieve it? or reset it somehow? Thanks, Will ~| Logware (www.logware.us): a new and convenient web-based time

RE: Disable Submit Button CFform CF5??

2005-12-08 Thread paulh
Thanks for the link guys, I will check it out. I can vouch for qForms :) ..:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Ray Champagne [mailto:[EMAIL PROTECTED] Sent: Thursday, December 08, 2005 3:46 PM To: CF-Talk Subject: Re:

RE: MSSQL DTS Help

2005-12-08 Thread Dawson, Michael
I like this method: http://www.dbazine.com/sql/sql-articles/sharma3 M!ke -Original Message- From: Rich Kroll [mailto:[EMAIL PROTECTED] Sent: Thursday, December 08, 2005 2:37 PM To: CF-Talk Subject: OT: MSSQL DTS Help Hello all, Sorry for the OT, just hoping someone here might have

RE: MSSQL DTS Help

2005-12-08 Thread Dawson, Michael
I'm sure this is totally possible, but there are many ways to accomplish this. First, look at all of the tasks in DTS. There are: Copy SQL Server Objects Task Transfer Database Task Transfer Logins Task Also, you might use the following tasks to process everything: ActiveX Script Task Dynamic

Re: Recover lost cfadmin password?

2005-12-08 Thread Joe Rinehart
Hey Will, I believe you can just open /web-inf/cfusion/lib/neo-security.xml and change: var name=admin.security.enabled boolean value=true/ /var To: var name=admin.security.enabled boolean value=false/ /var Cheers, Joe On 12/8/05, Will Tomlinson [EMAIL PROTECTED] wrote: I hadda

Re: Recover lost cfadmin password?

2005-12-08 Thread Joe Rinehart
Forgot: You'll need to restart CF. Then you should be able to browse into the admin console, change the password, and then turn security back on. -Joe On 12/8/05, Joe Rinehart [EMAIL PROTECTED] wrote: Hey Will, I believe you can just open /web-inf/cfusion/lib/neo-security.xml and change:

Re: Troublshooting jrun 100% on cfmx 6.1

2005-12-08 Thread Nathan Strutz
Howie, I agree with Andy, update to the 3.5 drivers, they're great. Also, there's an easier way to take a stack trace, check out the troubleshooting tools for Java http://tmitevski.users.mcs2.netarray.com/trace.do BTW, anyone reading this thread should probably bookmark that link. It lets you

RE: Troublshooting jrun 100% on cfmx 6.1

2005-12-08 Thread Katz, Dov B \(IT\)
I tried to use this on CFMX6.1 and it wouldn't connect to that JVM... The tool is great though, esp for debugging java gui apps... Has anyone connected to cf before via StackTrace? dov -Original Message- From: Nathan Strutz [mailto:[EMAIL PROTECTED] Sent: Thursday, December 08, 2005

RE: Troublshooting jrun 100% on cfmx 6.1

2005-12-08 Thread Katz, Dov B \(IT\)
Ah I know the issue... It doesn't work when the proc is running on a different session... What do I do if I'm on a dedicated server where CF starts when the box boots, and I remote desktop to get in? I've always wanted to get this working on my box... dov -Original Message- From:

setting Session timeout .net vs. CF

2005-12-08 Thread Ken Ketsdever
I am the web administrator. I set up websites in IIS, then instances in CF (MX7.01). Until recently we were a CF house. We recently brought in a .NET guy. We are mixing our first application. The core of the project is written in .NET with two pieces written in CF. The CF session Timeout is

Stupid Fusebox question

2005-12-08 Thread Scott Stewart
I’m building a fusebox 3.0 app, It’s been a while since I’ve done it. In the subdirectories under the root there’s an index.cfm file. I cannot remember what that file contains sas Scott A. Stewart Webmaster/Developer 11820 Parklawn Dr Rockville, MD 20852 (301) 770-9610 --

Re: Stupid Fusebox question

2005-12-08 Thread Barney Boisvert
You shouldn't have index.cfm except in your webroot with FB3. FB2 had index.cfm files in every directory, but that was the last version. Became fbx_Switch.cfm in FB3 and then circuit.xml in FB4. cheers, barneyb On 12/8/05, Scott Stewart [EMAIL PROTECTED] wrote: I'm building a fusebox 3.0 app,

RE: Custom Tags Folder

2005-12-08 Thread Mark Fuqua
Hey there, I don't know if it will work with other applications, but the Churvis's wrote a utility for Plum which converts all the custom tag calls (and there are alot of custom tag calls in a PLUM application) to cfModule. Here is what they wrote about it... ...We created a drag-and-drop

Current Status of MySQL 5 with CF MX

2005-12-08 Thread Nathan C. Smith
I'm wondering if anyone is using MySQL 5 with ColdFusion MX and if there are any gotchas or tips they could impart for making them work together. I have an application I want to run that is asking for a later version than I have installed (4.0x or so). I assume it would be necessary to use a

Re: setting Session timeout .net vs. CF

2005-12-08 Thread Nathan Strutz
Ken, There's no administrator, there's just different levels of config files. I don't actually know where the else the session timeout setting would be set, but it may be able to go in the system.config, and the web.config, and the web.config for each individual site. Generally speaking though,

Windward Reports

2005-12-08 Thread S . Isaac Dealey
Is anybody implementing Winward with ColdFusion? I realize it may sound strange, given that CF7 has built-in reporting tools, but they don't have the advantage of interface familiarity... I figure since it's got a Java API it must be possible to implement them in CF using a CFX tag extension,

Re: Current Status of MySQL 5 with CF MX

2005-12-08 Thread Barney Boisvert
I can't speak for 5.0, but you should be able to upgrade to 4.1 with a minimum of fuss. We moved a few apps from 4.0 to 4.1 and didn't have to change anything. If that's enough for your app, it might be an easier route to go. cheers, barneyb On 12/8/05, Nathan C. Smith [EMAIL PROTECTED] wrote:

  1   2   >