Re: UTC Timezone Offset

2003-08-01 Thread Paul Hastings
> Does anyone know how to figure out the utctimezone offset +|-? I know how to > return the offset hours and minutes, but what I need to figure out is if > GetTimeZinInfo().utcHourOffset returns 4 is it negative or positive. its an "offset" from UTC (GMT). i'm in bangkok, GMT+7, so my cf servers h

Re: Alternatives to CF5's IP based debugging? - MX Debugging

2003-08-01 Thread jonhall
Figured it out...CF MX doesn't support debugging! /me breathes deeply... Anyone know if debugging support is slated to be added back into MX? -- mailto:[EMAIL PROTECTED] Saturday, August 2, 2003, 12:51:58 AM, you wrote: jon> I did have a problem getting this to work with an MX server...I'm of

RE: multipart form - passing fields

2003-08-01 Thread Ian Skinner
Actually I just had a bit of inspiration that might work. You could try using a naming convention... On the action page of page 1 (page 2 or something in between). And on the action page for page 2... This could give you a handle that you can c

RE: multipart form - passing fields

2003-08-01 Thread Ian Skinner
Ah, so the user is not required to go linearly through the form from step 1 to 2 to 3 but can jump around. That does make it more challenging! Then, I would probably lean toward a database and/or structure based approach. It's going to be more work, but that's what we get for allowing users more

Re: Alternatives to CF5's IP based debugging?

2003-08-01 Thread jonhall
Well not having played with the debugger before, I read Charlie Areharts presentation on it, and after some head scratching and one crash, I set up a dev mapping opened my default.cfm, added a couple breakpoints, and started a debug session. Lo and behold, up pops this ultra cool window that shows

RE: stupid ?

2003-08-01 Thread Dave Watts
> actually i want to run a flash comm app, so i just need > access to the 1 page and thats all we just need to try > it out but we cant get it to work on the actual server > so I was seeing if we could just run it real quick off > my comp I think you'll need to install the Flash Comm server on

Re: stupid ?

2003-08-01 Thread Dave Lyons
actually i want to run a flash comm app, so i just need access to the 1 page and thats all we just need to try it out but we cant get it to work on the actual server so I was seeing if we could just run it real quick off my comp - Original Message - From: "Dave Watts" <[EMAIL PROTECTED]>

RE: Alternatives to CF5's IP based debugging?

2003-08-01 Thread Dave Watts
> I think you can also set up the development mappings in > studio/homesite...it does supposedly allow you to get > the debugging back directly into studio. While you can set up development mappings in Studio or Homesite, that only allows you to use the Internet Explorer browser integration to r

Re: Alternatives to CF5's IP based debugging?

2003-08-01 Thread jonhall
I think you can also set up the development mappings in studio/homesite...it does supposedly allow you to get the debugging back directly into studio. -- mailto:[EMAIL PROTECTED] Friday, August 1, 2003, 10:34:28 PM, you wrote: JM> Are there any other methods of seeing debug output from a CF5 dev

RE: Scheduled Task Priority

2003-08-01 Thread Dave Watts
> > > Is there a means of selectively killing a CF template that > > > was run via the scheduler? > > > ... > > > > No, I don't think you can do that. I'd recommend that you > > consider rewriting the script in something other than CF. > > ... > > Thanks. I'm not sure that would do much. It woul

RE: Alternatives to CF5's IP based debugging?

2003-08-01 Thread Dave Watts
> Are there any other methods of seeing debug output from a CF5 > development server other than by designating a list of IP > addresses? Cookie based, for instance? Sure. Just enable debug output for all IP addresses, then selectively disable it in your code as you like. Dave Watts, CTO, Fig Le

RE: stupid ?

2003-08-01 Thread Dave Watts
> is there a way that i can have someone use an app on my comp > in my IIS webroot folder? maybe by going through my IP address > and then into my comp if i turn firewall off? Is it a web application? If so, yes. If not, no - at least, not unless you provide a web interface to run it. If it's a

OT: stupid ?

2003-08-01 Thread Dave Lyons
is there a way that i can have someone use an app on my comp in my IIS webroot folder? maybe by going through my IP address and then into my comp if i turn firewall off? anyone know if this is possible? ~| Archives: http://www.ho

RE: Scheduled Task Priority

2003-08-01 Thread Stacy Young
JMS Queue! I've got a bunch of enhancement requests in on this...ability to specify number of threads for one thing... Stace -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED] Sent: Friday, August 01, 2003 4:05 PM To: CF-Talk Subject: Re: Scheduled Task Priority No. Of

Re: Scheduled Task Priority

2003-08-01 Thread Doug White
I would suspect there is some CPU power and time consumed when moving 1 million records from one MySQL table to another. That kind of work is asking a bit much of ColdFusion which is intended to deliver web pages. Back end operations of that scope should be addressed in the MySQL control center

Alternatives to CF5's IP based debugging?

2003-08-01 Thread Jim McAtee
Are there any other methods of seeing debug output from a CF5 development server other than by designating a list of IP addresses? Cookie based, for instance? We've got three developers in-house and the only way that I can see to get CF's debugging to work properly (assuming that any given develo

Re: Scheduled Task Priority

2003-08-01 Thread Jim McAtee
> > Is there a means of selectively killing a CF template that > > was run via the scheduler? Without cycling the CF service > > itself, that is? It's got a _very_ long RequestTimeout, yet > > looks like it won't be able to complete in that time. I'm > > surprised it hasn't taken the CF server down

Re: OT: IIS virtual directories

2003-08-01 Thread Jochem van Dieten
Robert Orlini wrote: > With IIS 5.0, can I delete the IISADMIN, MSADC and printers virtual directories w/o > any problems to our website? I don't do any administration of the site except > directly on the machine. http://www.nsa.gov/snac/index.html guide number 14 (but reading and implementin

RE: multipart form - passing fields

2003-08-01 Thread
Thanks! This helps. RE: . There appears to be one other exception. I also have to account for the fields that exist on the current form. In otherwords, If I start on step 1, got to step 3, then come back to step 1, fieldnames = & . So when looping through, I'll need

RE: CF tag for highlighting text in a textfield?

2003-08-01 Thread Rafael Alan Bleiweiss
> >onclick="htmltotext();"> > > >onclick="text2HTML();"> > got myself all worked up to have the client choose to go with the "Parse the contents from the textfield and reload with *** replacing all the bad words. ~| Arch

RE: multipart form - passing fields

2003-08-01 Thread Rafael Alan Bleiweiss
Why not post the contents to the DB after each page? I do this and it allows me to retain the input for those sites where the visitor has the rights to come back again later. Post once per page, and no worries. I track which page was completed in the DB and check for a "AllCompleted flag. If

RE: CFMX

2003-08-01 Thread Michael T. Tangorre
Dave, Thanks a lot. As usual, you are a big help. Mike -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Friday, August 01, 2003 3:48 PM To: CF-Talk Subject: RE: CFMX > How does one go about creating virtual directories in the > built in web server on CFMX? Everyt

CFStoredproc is giving incorrect value in CFMX version. but getti ng correct value in cf4.5 version.. --- URGENT

2003-08-01 Thread Ramesh Deva
Hi Here I am giving the testcode which I executed in cfmx version and CF4.5.1 version. But I am expecting value '4' from following code. I will be getting that value in only CF4.5.1 but not in CFMX. Is it unknown cfmx bug or do we need to change any attributes kind of things when we

RE: CF-Talk: Digest every hour

2003-08-01 Thread
Thanks! This helps. RE: . There appears to be one other exception. I also have to account for the fields that exist on the current form. In otherwords, If I start on step 1, got to step 3, then come back to step 1, fieldnames = & . So when looping through, I'll need

RE: multipart form - passing fields

2003-08-01 Thread Barney Boisvert
make sure you HTMLEditFormat() those values, in case they contain quotes or other such nastiness. --- Barney Boisvert, Senior Development Engineer AudienceCentral [EMAIL PROTECTED] voice : 360.756.8080 x12 fax : 360.647.5351 www.audiencecentral.com > -Original Message- > From: Ian Ski

RE: multipart form - passing fields

2003-08-01 Thread Ian Skinner
Actually building our your suggestion, you should be able to do something like this: (completely off the top of my head and untested, but hopefully it helps). At the top of a page 2-5: . This should copy all form elements from the previous form into hidden fields on the

Re: multipart form - passing fields

2003-08-01 Thread Scott Weikert
>To me this seems like a pretty common type of interface. And I'm hoping >there's some people on this list that have built something like this before > what I want to know is this -> is there a mechanism to pass form fields >from one form to another w/o hard coding the form field names? I'm s

RE: multipart form - passing fields

2003-08-01 Thread Barney Boisvert
I'd skip the hidden form fields, and after each step store the data in a struct in the session scope. Then when you're all done, you can pull all the data from that one place. That will let you easily add more form fields or even move form fields between steps without affecting much at all. HTH,

Testing period for new Flash Player

2003-08-01 Thread John Dowdell
http://www.macromedia.com/software/flashplayer/public_beta If you have any public sites using SWF files, particularly complex SWF files or ones with complex server interaction or other tricks, then please take advantage of this special time to ensure the new Player renders your existing work to yo

Re: Scheduled Task Priority

2003-08-01 Thread Jim Campbell
Alternately, try Python - it's a very powerful language that's equally easy to learn. I was writing functional programs in it (read: not "Hello World" or looping from 1 to n) in a couple of hours. It's syntax is very clean (cleaner than Perl and PHP), and you can invoke and test all sorts of

multipart form - passing fields

2003-08-01 Thread
Hello All, I have a wizard-like web page where the user must fill out forms 1 through 5 prior to hitting submit i.e. step 1 - personal info, step 2 - address information, step 3 - payment, etc., To me this seems like a pretty common type of interface. And I'm hoping there's some people on this

RE: Scheduled Task Priority

2003-08-01 Thread Haggerty, Mike
Yeah, I second that notion of moving non-Web page related stuff to another scripting language. We use PHP and cron here to handle some scheduled downloads and it works like a charm. Plus PHP (and Perl, for that matter) have OO features now that can make them much easier to learn. M -Original

UTC Timezone Offset

2003-08-01 Thread Bryan F. Hogan
Does anyone know how to figure out the utctimezone offset +|-? I know how to return the offset hours and minutes, but what I need to figure out is if GetTimeZinInfo().utcHourOffset returns 4 is it negative or positive. Thanks Bryan ~

RE: CF tag for highlighting text in a textfield?

2003-08-01 Thread Rafael Alan Bleiweiss
THanks so much for the help Jeff! I'll give this a go later today! > >function htmltotext(){ >document.myform.plaintext.value = mycontent.innerHTML; >} > >function text2HTML(){ >mycontent.innerHTML = document.myform.plaintext.value; >} > > > >onclick="htmltotext();"> > > >onclick="text2HTML();">

RE: Scheduled Task Priority

2003-08-01 Thread Dave Watts
> Is there a means of selectively killing a CF template that > was run via the scheduler? Without cycling the CF service > itself, that is? It's got a _very_ long RequestTimeout, yet > looks like it won't be able to complete in that time. I'm > surprised it hasn't taken the CF server down, so i

Re: Scheduled Task Priority

2003-08-01 Thread Michael Dinowitz
No. They're just CFHTTP calls to the url in question and work as any other http call to the same location. Personally, I hate the use of CFHTTP to implement scheduling and will have a full writeup on it to go to the MM wish list very soon. An internal call to the template in question is much more e

Re: Scheduled Task Priority

2003-08-01 Thread Michael Dinowitz
No. Of course, there may be something in Java to do this but up till now, the answer as far as I know is no. > Is there a means of selectively killing a CF template that was run via the > scheduler? Without cycling the CF service itself, that is? It's got a _very_ > long RequestTimeout, yet look

selling blood

2003-08-01 Thread Don
I've devoted about two years to start my own business (mostly R & D), unfortunately it hasn't taken off yet while I'm running out of money. And I've started to look for some project to get things going about a month ago. Negative experience. So, it's incorrect to say "long-unemployed programm

Re: Scheduled Task Priority

2003-08-01 Thread Jim McAtee
- Original Message - From: "Dave Watts" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Friday, August 01, 2003 1:29 PM Subject: RE: Scheduled Task Priority > > Do tasks run from the cf scheduler (CF5) run at a different > > priority than those called via a browser? I wouldn'

RE: CFMX

2003-08-01 Thread Dave Watts
> How does one go about creating virtual directories in the > built in web server on CFMX? Everything you need to know is right here: http://www.macromedia.com/support/coldfusion/adv_development/config_builtin_ webserver/config_builtin_webserver08.html http://www.macromedia.com/support/coldfusi

RE: Content Management Systems - a short list...

2003-08-01 Thread Jim Curran
Brian, We have an enterprise version, but that is not as cut and dry pricing as the hosted. The Enterprise version handles DB updates as well. Some of our larger clients running this system are: http://www.akingump.com http://www.venable.com http://www.munsch.com - j james curran technical di

RE: Scheduled Task Priority

2003-08-01 Thread Dave Watts
> Do tasks run from the cf scheduler (CF5) run at a different > priority than those called via a browser? I wouldn't think > there would be a difference, since the CF scheduler just > thinks it's making an HTTP request, but... No, they don't run at a different priority. However, they do keep tw

Re: Homesite and CF mappings

2003-08-01 Thread jon hall
One possibility is junctions. I'd rather not have to create a junction for each mapping though. -- jon mailto:[EMAIL PROTECTED] Friday, August 1, 2003, 2:57:18 PM, you wrote: T> Seeing that there's no way for HomeSite to get the mapping information from T> CFMX, I don't see how this is possib

Scheduled Task Priority

2003-08-01 Thread Jim McAtee
Do tasks run from the cf scheduler (CF5) run at a different priority than those called via a browser? I wouldn't think there would be a difference, since the CF schedulere just thinks it's making an HTTP request, but... ~| Archiv

RE: Querying a text file

2003-08-01 Thread B G
Thanks- I've got a couple options to import the file directly into the db without using cffile. That's a good thing. What this discussion has done, though, is presented the problem of preventing a user from uploading a file that's too big to begin with. It seems there are two solutions. One

Re: Homesite and CF mappings

2003-08-01 Thread Todd
Seeing that there's no way for HomeSite to get the mapping information from CFMX, I don't see how this is possible. ~Todd At 03:00 PM 8/1/2003, you wrote: >Sorry, MX type mappings. > >-- > jon > mailto:[EMAIL PROTECTED] -- Todd Rafferty ([EMAIL PROTECTED]) - http://www.web-rat.com/

Re: Homesite and CF mappings

2003-08-01 Thread jon hall
Sorry, MX type mappings. -- jon mailto:[EMAIL PROTECTED] Friday, August 1, 2003, 2:38:26 PM, you wrote: T> It's working for me on mappings? Please clarify what you mean by T> 'mappings' - are you talking about CFMX mappings or are you talking network T> mappings? I'm guessing cfmx mappings

Re: Host Headers vs. CGI vars (was "IIS Domain Naming Question")

2003-08-01 Thread David Delbridge
Holy cripes! I didn't think about that. Yes, I would consider that to be a significant factor in deciding between IIS host header configuration and CF scripts. Thank you. Dave -- David M. Delbridge Circa 3000 ColdFusion Hosting http://www.circa3k.com Kola Oyedeji wrote: > > Also I'm don't

Re: OT: selling blood

2003-08-01 Thread Jim Campbell
Thanks, but I'm on the wagon. - Jim LI, Chunshen (Don) wrote: >I'm ready to sell blood. Does anyone need any? >Thanks. > > > ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.hous

Re: Homesite and CF mappings

2003-08-01 Thread Todd
It's working for me on mappings? Please clarify what you mean by 'mappings' - are you talking about CFMX mappings or are you talking network mappings? I'm guessing cfmx mappings. Thanks, ~Todd At 02:36 PM 8/1/2003, you wrote: > This has been bugging me for a while, and I was wondering if an

RE: Querying a text file

2003-08-01 Thread Mark Stewart
Couple days late on this, but... I usually use SQL Server DTS packages to do my heavy file lifting - I set-up a connection to the file and place the contents into the db. If I'm not worried about real time data, I schedule the package. You can also run a dts package through cf using COM. You rea

Homesite and CF mappings

2003-08-01 Thread jon hall
This has been bugging me for a while, and I was wondering if anyone had thought of a creative solution. I love Homesite's right-click edit include file feature, but it wont work with mappings obviously. Any ideas? -- jon mailto:[EMAIL PROTECTED] ~~

Re: Page Context Bug?

2003-08-01 Thread Matt Liotta
Just to be clear, I didn't say it was impossible; just not efficient of scalable. In regards to RedSky, I can't answer that since I am not part of the beta program and even if I was I would be under NDA. Maybe in the future when RedSky is released it will be worth revisiting. -Matt On Frida

Re: selling blood

2003-08-01 Thread Michael Dinowitz
1. I sympathize with you if your posting because work is tight. I myself have the same problem and its mainly because I don't want to move to Washington where there is lots of work. 2. Be that as it may, this is kind of off topic for the CF-Talk list as it's not tech but a cry of frustration. CF-Jo

RE: OT: selling blood

2003-08-01 Thread Angel Stewart
Wowsies! Just what I've been looking for! What type??? -Count Gel -Original Message- From: jon hall [mailto:[EMAIL PROTECTED] No thanks...I get my blood for free. -- jon mailto:[EMAIL PROTECTED] Friday, August 1, 2003, 2:00:00 PM, you wrote: LCD> I'm ready to sell blood. Does a

Re: OT: selling blood

2003-08-01 Thread jon hall
No thanks...I get my blood for free. -- jon mailto:[EMAIL PROTECTED] Friday, August 1, 2003, 2:00:00 PM, you wrote: LCD> I'm ready to sell blood. Does anyone need any? LCD> Thanks. ~| Archives: http://www.houseoffusion.com/

Re: regular expression question

2003-08-01 Thread Michael Dinowitz
'(word1 |word2 |word3 ){2,} Word 1, 2 and 3 are all words in a sub expression. Each has a space after it. The RegEx is looking for any 2 or more of these in a row. Michael Dinowitz Finding technical solutions to the problems you didn't know you had yet > does anyone know how to write the regula

RE: selling blood

2003-08-01 Thread Richard Crawford
Perhaps an cry for help from a long-unemployed programmer? At 02:06 PM 8/1/2003 -0400, you wrote: >WTF? > >Is this a desperate cry for attention? > >M > >-Original Message- >From: LI, Chunshen (Don) [mailto:[EMAIL PROTECTED] >Sent: Friday, August 01, 2003 2:00 PM >To: CF-Talk >Subject: OT:

RE: selling blood

2003-08-01 Thread Haggerty, Mike
WTF? Is this a desperate cry for attention? M -Original Message- From: LI, Chunshen (Don) [mailto:[EMAIL PROTECTED] Sent: Friday, August 01, 2003 2:00 PM To: CF-Talk Subject: OT: selling blood I'm ready to sell blood. Does anyone need any? Thanks. ~

OT: selling blood

2003-08-01 Thread LI, Chunshen \(Don\)
I'm ready to sell blood. Does anyone need any? Thanks. ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4 FAQ: http:/

regular expression question

2003-08-01 Thread Jason Rogoz
does anyone know how to write the regular expression to find 2 out of three words in a row? I need to determine is a string has "and or" or "not and" etc in the string. Thanks ~| Archives: http://www.houseoffusion.com/cf_lists/in

RE: CF tag for highlighting text in a textfield?

2003-08-01 Thread Jeff Garza
Something like this should do the trick: function htmltotext(){ document.myform.plaintext.value = mycontent.innerHTML; } function text2HTML(){ mycontent.innerHTML = document.myform.plaintext.value; } HTH, Jeff Garza Manager, Phoenix CFUG Certified ColdFusion MX Developer [EMAIL PROTECT

Re: Page Context Bug?

2003-08-01 Thread zac spitzer
Matt Liotta wrote: >>It does make it difficult to write efficient frameworks using CFCs >>tho' so, for example, Mach II will require Red Sky to run efficiently. >> >> >> >I'm glad you finally admitted that. > so matt, you said a while back it was impossible to write mvc frameworks in cfmx, wi

RE: Page Context Bug?

2003-08-01 Thread Raymond Camden
> > And, as Ray says, the dread page context bug is fixed in Red Sky. > Coming soon! > And if it hasn't been said enough - RedSky fixes other CFC bugs as well as adding support for super(). In other words, RedSky kicks major butt. You can quote me on that. =

Re: Page Context Bug?

2003-08-01 Thread Matt Liotta
> It does make it difficult to write efficient frameworks using CFCs > tho' so, for example, Mach II will require Red Sky to run efficiently. > I'm glad you finally admitted that. -Matt ~| Archives: http://www.houseoffusion.com/c

RE: CF tag for highlighting text in a textfield?

2003-08-01 Thread Rafael Alan Bleiweiss
At 11:47 AM 8/1/03, you wrote: >editable DIV to hold the formatted text, and then when you go to submit, >copy the innerHTML or innerText value from the div to a hidden field... Just a pointer please - how to copy the innertext to a hidden field? ~

RE: CF tag for highlighting text in a textfield?

2003-08-01 Thread Rafael Alan Bleiweiss
>If you are in an Intranet setting and are using IE, you can use an >editable DIV to hold the formatted text, and then when you go to submit, Hey this is really good... its not an Intranet, but I think for the first time in my life I want to say screw my own rules... and require IE Now I need t

Re: CF tag for highlighting text in a textfield?

2003-08-01 Thread Rafael Alan Bleiweiss
At 11:40 AM 8/1/03, you wrote: >http://www.faqts.com/knowledge_base/view.phtml/aid/13562/fid/130 This allows manipulation of a "selection". I need to be able to parse through the submitted textarea content and feed it back into the form with numerous words html wrapped with Bold or Red... mul

Re: Page Context Bug?

2003-08-01 Thread Sean A Corfield
On Friday, Aug 1, 2003, at 08:09 US/Pacific, Raymond Camden wrote: >> How is this related to PageContext, though? > My understanding (and this is most likely wrong) is that the > PageContext > ob allows things like access to the scopes, access to output, etc. I'm > probably wrong about it - but yo

RE: CF tag for highlighting text in a textfield?

2003-08-01 Thread Rafael Alan Bleiweiss
>Unfortuneatly, a standard HTML textarea doesn't render HTML codes, so >you really can't highlite words - the textarea would show the or >style or font tags, etc.. > >You'll need to use an HTML editor object - I use SoEditor Lite >(http://www.siteobjects.com/pages/order.cfm). It's free and very >s

Re: CF tag for highlighting text in a textfield?

2003-08-01 Thread jon hall
Mozilla supports this as well. Some slight differences in syntax though. For that matter though, Flash would obviously support this as well... -- jon mailto:[EMAIL PROTECTED] Friday, August 1, 2003, 12:47:19 PM, you wrote: JG> If you are in an Intranet setting and are using IE, you can use an

RE: check through all open sessions?

2003-08-01 Thread Dave Wilson
> The problem with that is that I would be calculated the > "expected" timeout, and not the actual value that Coldfusion > is using. In theory they should be exactly the same, but in > practice I am trying to track down a problem where Coldfusion > is expiring sessions much earlier than it should.

RE: CF tag for highlighting text in a textfield?

2003-08-01 Thread Jeff Garza
If you are in an Intranet setting and are using IE, you can use an editable DIV to hold the formatted text, and then when you go to submit, copy the innerHTML or innerText value from the div to a hidden field... Just a thought... Might be easier to implement than a full WYSIWYG editor in the pag

Re: fusemail

2003-08-01 Thread Todd
Yeah, was by the same people that did fusetalk. They don't sell it anymore though because they stated they were having too many issues with CFPOP, CFMAIL, etc. ~Todd At 12:16 PM 8/1/2003, you wrote: >oi CF-Talk,!! > > wasn't there a cf based product around called fusemail? > > > Crit ~~~

Re: CF tag for highlighting text in a textfield?

2003-08-01 Thread zac spitzer
Jerry Johnson wrote: >I don't think you can highlight in a textarea. > you can do this actually... you can also move the cursor in a text field or select part of it... here's a good start .. mozilla is way ahead on the easiness too.. ie is a bit more difficult FAQTs - Knowledge Base - View En

RE: listcontains

2003-08-01 Thread Andy Ousterhout
listfind -Original Message- From: Wurst, Keith D. [mailto:[EMAIL PROTECTED] Sent: Friday, August 01, 2003 10:11 AM To: CF-Talk Subject: listcontains i have a list like this... 15,0,2,5 when i run a listcontains on it for the number 1 - i get back a positive response. i guess it is seei

RE: fusemail

2003-08-01 Thread Ken Wilson
Sure was...from e-zonemedia...the makers of FuseTalk. Now apparently known as FuseTalk, Inc. http://www.fusetalk.com/ Not sure whatever happened to FuseMail but it was pretty slick if you were committed to IE. Ken -Original Message- From: Critz [mailto:[EMAIL PROTECTED] Sent: Friday, A

RE: check through all open sessions?

2003-08-01 Thread Peter Theobald
The problem with that is that I would be calculated the "expected" timeout, and not the actual value that Coldfusion is using. In theory they should be exactly the same, but in practice I am trying to track down a problem where Coldfusion is expiring sessions much earlier than it should. If I co

RE: CF tag for highlighting text in a textfield?

2003-08-01 Thread Jeff Beer
Unfortuneatly, a standard HTML textarea doesn't render HTML codes, so you really can't highlite words - the textarea would show the or style or font tags, etc.. You'll need to use an HTML editor object - I use SoEditor Lite (http://www.siteobjects.com/pages/order.cfm). It's free and very straight

fusemail

2003-08-01 Thread Critz
oi CF-Talk,!! wasn't there a cf based product around called fusemail? Crit --- [This E-mail scanned for viruses by Declude Virus] ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http:

Re: CF tag for highlighting text in a textfield?

2003-08-01 Thread B G
I've been looking into a similar function myself. I would like to stay away from adding a rich text editor to the form. I'm starting to lean toward a Message Board Markup Language. Anyone have any insight? BG >From: [EMAIL PROTECTED] (Rafael Alan Bleiweiss) >Reply-To: [EMAIL PROTECTED] >To:

Re: CFMX Inquiry

2003-08-01 Thread Doug White
I am running CFMX on a Dual Processor box - works fine == Stop spam on your domain, use our gateway! For hosting solutions http://www.clickdoug.com ISP rated: http://www.forta.com/cf/isp/isp.cfm?isp_id=772 == If you are not sa

Re: Can CF Utilize Multiple Processors?

2003-08-01 Thread Matt Liotta
I can't really help you with configuration as that is specific to your needs. I would advise you to develop a testing methodology to determine the best configuration for your specific needs. However, you should be aware that using multiple instances of CFMX clustered together on a single se

Re: CF tag for highlighting text in a textfield?

2003-08-01 Thread Jerry Johnson
I don't think you can highlight in a textarea. If you need this combination of markup and editing, I thin kyou will need to switch to a WYSIWYG editor of some flavor or another. Jerry Johnson >>> [EMAIL PROTECTED] 08/01/03 12:52PM >>> Anyone ever do this or know of a custom tag? I've got a fo

RE: OT sql openrowset

2003-08-01 Thread Tim Do
Hmmm I'm trying to delete the file right after the stored proc completes.. I don't think its being released cause I can't seem to delete it. Even try to delete it manually. I have to wait approx 30 secs until I'm able to delete it. -Original Message- From: DURETTE, STEVEN J (AIT) [mailto

RE: OT sql openrowset

2003-08-01 Thread DURETTE, STEVEN J (AIT)
Tim, I use openrowset in a stored procedure to access an oracle database and AFAIK it closes the connection as soon as the procedure completes. If it didn't then the group that manages that oracle database would be out to kill me for all of the connections that would be created! Steve -Ori

Re: CFUPDATE problem.. HELP!!!

2003-08-01 Thread S . Isaac Dealey
> Usually I write SQL for this kind of stuff but figured > that the cfupdate > would have been quicker. Little did I know Ha! Yea, you gotta love those moments. :) s. isaac dealey972-490-6624 new epoch http://www.turnkey.to lead architect, tapestry cms

OT sql openrowset

2003-08-01 Thread Tim Do
Hello all, I'm using openrowset to read a dbase file in a stored proc. From what I've read, that opens up a db connection. Is there a way close it?? Thanks, Tim ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?

RE: check through all open sessions?

2003-08-01 Thread DURETTE, STEVEN J (AIT)
Wouldn't this be: session timeout - (now - last page hit) = time remaining Then you would get the information from that client variables. Since I have the client variables stored in a MSSQL table (instead of the registry) I can do the following query to get the last page hit information: select

CFMX Inquiry

2003-08-01 Thread Graham Pearson
I am looking into putting in acouple of new servers for this next school year and wanted to know if CFMX Professional would take advantage of a Dual Processor System or would I just be wasting money by going to a dual processor system to serve cfml pages.

RE: check through all open sessions?

2003-08-01 Thread Scott Weikert
At 11:40 AM 8/1/2003 -0400, you wrote: >This is a very good idea, but for my purposes (I didn't ask the original >question) I need to know when the session is scheduled to time-out. How do >I get that info for a session? >In other words, when a page request runs a session's last-used-time is >re

CF tag for highlighting text in a textfield?

2003-08-01 Thread Rafael Alan Bleiweiss
Anyone ever do this or know of a custom tag? I've got a form that needs to be checked against a list of bad words, and the refresh of the page needs to have the text in the textarea with the matched bad words highlighted in bold or red font... What's it take to do this? ~~~

RE: check through all open sessions?

2003-08-01 Thread Dave Wilson
Peter, You could set a variable to represent the application's sessiontimeout value, then simply run a datediff between the recorded time and current time (now()). Check this datediff result against the timeout value, then act accordingly i.e. datediff is larger then the session has expired. HTH,

RE: dynamic sql update

2003-08-01 Thread Adrian Lynch
If there is a variables called #active_week# and you have it in a cfquery you don't need a tag around it. Ade -Original Message- From: Wurst, Keith D. [mailto:[EMAIL PROTECTED] Sent: 01 August 2003 16:41 To: CF-Talk Subject: dynamic sql update i know i need a tag around #active_week#_wi

dynamic sql update

2003-08-01 Thread Wurst, Keith D.
i know i need a tag around #active_week#_winner but i cant remember what it is. can someone remind me? thanks. update tbl_pic set #active_week#_pic = #active_week#_win ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?f

Can CF Utilize Multiple Processors?

2003-08-01 Thread Avi Flax
Matt, thanks for the reply! I'm interested in what you said about configuration. We're using Dual-Xeon Machines and I've got the "Simultaneous Requests" setting at 12. Do you think we would see better results if we changed that? Is there anything else that would help us utilize both processors m

RE: check through all open sessions?

2003-08-01 Thread Peter Theobald
This is a very good idea, but for my purposes (I didn't ask the original question) I need to know when the session is scheduled to time-out. How do I get that info for a session? In other words, when a page request runs a session's last-used-time is reset to NOW(). But as times goes on the sessi

CFMX

2003-08-01 Thread Michael T. Tangorre
How does one go about creating virtual directories in the built in web server on CFMX? I have CF 5 installed to, running on IIS already... Mike ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

RE: The Ongoing Saga of the Dead Session Variable

2003-08-01 Thread Richard Crawford
At 07:08 AM 8/1/2003 -0700, Ian Skinner wrote: >But are ALL the Server Setting the same as well? They are indeed. I personally built both servers from scratch. The only difference is in the database servers. We have a production database and a development database, and both of them run MS-SQL

Re: Page Context Bug?

2003-08-01 Thread Alexander Sherwood
At 11:19 AM 8/1/2003 -0400, you wrote: >When JSPs are created they have no relationship to a request and its >subsequent response. Thus, they need a "context" to tie the request and > response to themselves. The Servlet engine does this by providing a >PageContext object. Since CFMs -- and unfor

  1   2   >