Re: Image Resizing tags

2001-08-03 Thread Len Conrad
Does anyone out there who's messed with tags like CF_ImageSize have any info on the nature of the files these tags produce, especially when it comes to running pre-compressed images through them? I'm digging around trying to settle on one of these tags, but I don't want to end up tossing, say, a

Re: Form question

2001-08-03 Thread Tim Painter
Not sure if this is what you are looking for, but if you have Adobe Acrobat, you can save it as pdf and create a form on top of it. The rub is that the user has to use Adobe reader to view/post the form. Tim P. - Original Message - From: Braver, Ben [EMAIL PROTECTED] To: CF-Talk [EMAIL

RE: Run a CF page from a mail link??

2001-08-03 Thread Thomas Chiverton
I want to log the usage of an a hrefmailto:; link by running a cf action page that will update the db. Hmmm - you could use onClick to open a new window, or reload a hidden frame... ~~ Structure your ColdFusion code with Fusebox. Get the

RE: [coldfusion-howto] CF5 adding extra quote marks to cfquery

2001-08-03 Thread Thomas Chiverton
I just wrote a UDF and tried to use it in a where clause using PreserveSingleQuotes, and it gave me the same error. Seems like you can't use your UDF with other CF functions. I am doing a little more research as it should work. Please let me know how you get on, this seems like a bug...

RE: CFSCHEDULE

2001-08-03 Thread Aidan Whitehall
Any comments, experiences that would enlighten me more on this strange semi-documented tag? None other than I've never managed to get the scheduler to work via the ColdFusion Administrator, let alone via the tag. I hope this has been fixed in v5, but I'm not holding my breath... Aidan --

RE: Stored Procedures

2001-08-03 Thread Bud
On 8/1/01, Dave Watts penned: Sounds like you may be confusing Stored Procedures, which can't be done in Access (actually, you can save a query in Access and call it using cfstoredproc, but I don't believe you can pass variables to it), with Scheduled Tasks. You can pass parameters to

Re: Stored Procedures

2001-08-03 Thread Bud
On 8/1/01, Bruce, Rodney penned: I have created a page of all the queries and have tried to add it to the CF Administrator Scheduled tasks. But when I try to run it, CF admin gives me a long list of possible reasons it can't run the task, all dealing with URL. it can't be resolved, needs the

PostgreSQL with CF

2001-08-03 Thread Michael Lugassy
Anyone tried PostgreSQL with Coldfusion? I'm trying to develop a full-text mechanisem of 10gb table with it. Possible? Recommended? All comments welcome! Michael. ~~ Structure your ColdFusion code with Fusebox. Get the official book at

RE: Apache 1.3.20

2001-08-03 Thread Deb Dickerson
The steps to rebuild the module for EAPI are here: http://www.allaire.com/Handlers/index.cfm?ID=16300Method=Full Deb -Original Message- From: Justin Greene [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 01, 2001 2:12 PM To: CF-Talk Subject: Apache 1.3.20 Is anyone running

Re: Where best to embed META tag?

2001-08-03 Thread Bud
On 8/2/01, JAIME HOI penned: i tried to log in twice using 2 different user_ids. The data from user_1 can be seen by user_2. It seems like they are still retriving my local disk instead of from the server. Why is this so ?? It's possible it could be your login scheme. For instance, if using

RE: Run a CF page from a mail link??

2001-08-03 Thread Rich Tretola
My javascript is not the best. How do I open a new window with onclick? Then is then anyway to autoclose that window once the code runs? Rich -Original Message- From: Thomas Chiverton [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 02, 2001 6:21 AM To: CF-Talk Subject: RE: Run a CF

RE: Verity: Searching multiple collections

2001-08-03 Thread Jason Blum
Hey Carlo, If I understand you correctly, you are trying to do a single search against three collections so that the results are all displayed in the same order of relevance? I am doing something very similar - two db collections and one doc collection - and am simply running three CFSEARCHes

default.ida?

2001-08-03 Thread Michael Lugassy
I keep seeing on the log files some default.ida request. are those hacking attempts? what is this file do? Michael. ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ:

OT: Run a CF page from a mail link??

2001-08-03 Thread Thomas Chiverton
My javascript is not the best. How do I open a new window with onclick? onclick=window.open('tes.cfm','tes','width=1000,height=700,scrollbars=auto, toolbar=no,location=no,directories=no,menubar=no,resizable=yes,status=yes') is then anyway to autoclose that window once the code runs? Not

RE: default.ida?

2001-08-03 Thread Neil Clark
.ida is part of the indexing service which is vulnerable to the hack via buffer overflow; you should remove the ISAP filter from the IIS manager configuration ~~ Structure your ColdFusion code with Fusebox. Get the official book at

RE: default.ida?

2001-08-03 Thread Thomas Chiverton
I keep seeing on the log files some default.ida request. are those hacking attempts? what is this file do? If your running IIS, you're probably in trouble. ~~ Structure your ColdFusion code with Fusebox. Get the official book at

RE: default.ida?

2001-08-03 Thread Craig Dudley
Index server, similar to .idq I think. I'm pretty sure that's one of the ways the code red worm tries to get in. We don't use index server here, so we disabled all references to it in IIS application management. -Original Message- From: Michael Lugassy [mailto:[EMAIL PROTECTED]] Sent:

RE: default.ida?

2001-08-03 Thread Steven P. Johnson
Michael, The .ida extension is used as part of Microsoft Indexing Services for IIS. It is currently the focal point for the Code Red worm that is in the press. If you have not patched you server you may want to download the patch from Microsoft and read the associated press release. - Steve

Subject: RE: Form question

2001-08-03 Thread Shannon Rhodes
Here's a tip if you end up considering the option of converting your Word form to HTML. To remove those nasty Office-specific tags, you can download this HTML clean-up: http://office.microsoft.com/downloads/2000/Msohtmf2.aspx Yes, you'll still have a little clean-up because it's still abusing

RE: Verity: Searching multiple collections

2001-08-03 Thread Craig Dudley
When you index the searches, add a collection specific identifier in one of the CUSTOM comulms, then when you get the results from your cfsearch tag, the identifier will tell you which place to link to. Here's a piece of code I use in a search results page whcih should help you understand what

RE: default.ida?

2001-08-03 Thread Edward Chanter
-Original Message- I keep seeing on the log files some default.ida request. are those hacking attempts? what is this file do? YOU ARE INFECTED WITH CODE RED Please shut down your IIS, patch it and then restart! best wishes, -= Ed If you want others to be

RE: Verity: Searching multiple collections

2001-08-03 Thread A . Little
You can put multiple collections in the cfsearch tag. cfSearch name=Combinedsearch collection=collection1,collection2,...etc criteria=#Searchterm# This will combine the output and it will be ready formatted. I've had to do this for database and file collections. For the database

Re: default.ida?

2001-08-03 Thread Jochem van Dieten
Michael Lugassy wrote: I keep seeing on the log files some default.ida request. are those hacking attempts? what is this file do? You've got to be kidding. Doesn't Code Red ring any bells? Jochem ~~ Structure your ColdFusion code with

RE: Dynamic Stored Procedure

2001-08-03 Thread Dave Watts
Also, its better practice to build your where clause outside of the CFQUERY. Out of curiosity, what's the reason for this? Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444 ~~ Structure your

RE: Inexact Duplicate queries

2001-08-03 Thread Daniel Lancelot
One way... If you have a uniqueidentifier across both databases (it should be possible to create one if you dont): Merge the two tables into a new table using a union query, including all fields from both tables. (mergedTable) (or create a view) Select max(uniqueIDfield) as uniqueField, (all

Re: default.ida?

2001-08-03 Thread Dirk De Bock
To find that entry in your logs does not mean that you're infected obviously. - Original Message - From: Edward Chanter [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, August 02, 2001 3:13 PM Subject: RE: default.ida? -Original Message- I keep seeing on the

Re: Cf code with ActivePDf

2001-08-03 Thread Susan Allen
Here is the asp code from the Adobe SDK (see FDFSetValue). You're basically creating a virtual FDF... I would think converting to CF would be fairly straightforward... %@ LANGUAGE = VBScript% !--#include virtual=/ADOVBS.INC-- % 'Response.ContentType = text/html Response.ContentType =

RE: Dynamic Stored Procedure

2001-08-03 Thread Jeffry Houser
At 09:28 AM 08/02/2001 -0400, you wrote: Also, its better practice to build your where clause outside of the CFQUERY. Out of curiosity, what's the reason for this? I'm jumping in during the middle of this conversation, so bear with me. If I understand correctly, I have heard this

RE: default.ida?

2001-08-03 Thread Richard Kuryk
Do you run IIS? If you don't run IIS or have applied the latest MS patches and rebooted you have nothing to worry about. Rich -Original Message- From: Chuck Hergenroeder [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 02, 2001 9:37 AM To: CF-Talk Subject: RE: default.ida? Here is

OT: Auto-reboot a server

2001-08-03 Thread John Fix 3rd
Is there a utility that I can run with NT scheduler that will restart an NT server? I'm trying to track down some memory leaks, but if I can't solve it before vacation time I want to just set up a way to restart the server every few days at some time in the early am. Thanks! John

RE: default.ida?

2001-08-03 Thread Thomas Chiverton
Here is my scenario. I view the stats on my web site, and the page requested is default.ida. Now those requests are on my list of error pages not found. Does this mean that I have Code Red, or does this mean that Code Red is trying to get into my system? If it's comming from

RE: default.ida?

2001-08-03 Thread Chuck Hergenroeder
Here is my scenario. I view the stats on my web site, and the page requested is default.ida. Now those requests are on my list of error pages not found. Does this mean that I have Code Red, or does this mean that Code Red is trying to get into my system? According to what you are saying, I

RE: Auto-reboot a server

2001-08-03 Thread Thomas Chiverton
There's one in the res. kit. ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives:

RE: Auto-reboot a server

2001-08-03 Thread Daniel Lancelot
Download the resource kit suppourt tools 4.0 for nt server - theres an app in there called Shutdown - set a scheduled task to run shutdown /c /r and it will force a reboot... I think this is it: http://www.microsoft.com/ntserver/nts/downloads/recommended/ntkit/default.as p -Original

RE: default.ida?

2001-08-03 Thread Carlisle, Eric
That's right (whoops). I'm getting this confused with something else. Not sure if there is a patch for this after all. -Original Message- From: Neil Clark [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 02, 2001 8:52 AM To: CF-Talk Subject: RE: default.ida? .ida is part of the

RE: default.ida?

2001-08-03 Thread Chuck Hergenroeder
Thanks Tom. Did you install it ? (YES) Have you verified it ? (YES) Has the .ida mapping been removed too (that would give you an error like your seeing) ? (YES) -Original Message- From: Thomas Chiverton [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 02, 2001 9:51 AM To:

Reboot windows 2K server?

2001-08-03 Thread Tangorre, Mike
is there a tool available for rebooting windows 2K server? Michael T. Tangorre Web Applications Developer Office Phone: 703-558-4746 Cellular Phone: 607-426-9277 AIM: CrazyFlash4 Personal Email: [EMAIL PROTECTED] Work Email: [EMAIL PROTECTED] School

RE: Auto-reboot a server

2001-08-03 Thread John Fix 3rd
Thanks...I'll look in there again. I figured there was something in Resource Kit but I didn't notice Shutdown. John -Original Message- From: Daniel Lancelot [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 02, 2001 9:52 AM To: CF-Talk Subject: RE: Auto-reboot a server

RE: default.ida?

2001-08-03 Thread Edward Chanter
I don't actually think it's hysteria mate, do you want to see a copy of my IDS logs There are a large number of attacks going on as I write this and anyone running an unpatched/unprotected IIS server needs to do something about it asap. best wishes, -= Ed If you want

RE: default.ida?

2001-08-03 Thread Thomas Chiverton
Has the .ida mapping been removed too (that would give you an error like your seeing) ? (YES) Well, guess why your .ida URL fails then ? ~~ Structure your ColdFusion code with Fusebox. Get the official book at

RE: default.ida?

2001-08-03 Thread Thomas Chiverton
I don't actually think it's hysteria mate, do you want to see a copy of my IDS logs Not really, no. They tend to be boring and full of kidz getting 404's. There are a large number of attacks going on as I write this Woo-wee - where have you been ? An ongoing scan of your system is

Re: default.ida?

2001-08-03 Thread Jochem van Dieten
Edward Chanter wrote: I don't actually think it's hysteria mate, do you want to see a copy of my IDS logs There are a large number of attacks going on as I write this and anyone running an unpatched/unprotected IIS server needs to do something about it asap. So let's establish first

RE: default.ida?

2001-08-03 Thread Dave Watts
I don't actually think it's hysteria mate, do you want to see a copy of my IDS logs There are a large number of attacks going on as I write this and anyone running an unpatched/ unprotected IIS server needs to do something about it asap. I think that Mr. Chiverton's complaint was that

RE: default.ida?

2001-08-03 Thread Dylan Bromby
the point is this: if your logging requests for default.ida, it does NOT necessarily mean you are infected with code red. and whether you see requests for .ida or .idq, it is practical - especially with the recent release of free tools - to scan your system and take appropriate measures to best

RE: default.ida?

2001-08-03 Thread Carlisle, Eric
Yup. Some hole in IIS that permits viewing the source of ASP pages (wonder if it works for CF as well). There's a patch for it. Search around at http://www.microsoft.com/security/ . Regards, Eric Carlisle -Original Message- From: Michael Lugassy [mailto:[EMAIL

RE: default.ida?

2001-08-03 Thread Edward Chanter
-Original Message- I don't actually think it's hysteria mate, do you want to see a copy of my IDS logs Not really, no. They tend to be boring and full of kidz getting 404's. :-) I did say IDS logs though, they filter out all the crap and only show me the ISAPI Extension

Re: My header/footer inclusion scheme hinders Verity searches!

2001-08-03 Thread Jamie Jackson
Thank you both for your responses, I had thought this thread was a dud. I'll read the reference at Pete's URL. Andy: Yes, I comment out the title too, but I forgot the comment markers in my post. This workaround sure does nullify some of the benefit of the custom tag solution, though. Thanks

RE: Icalendar doesn't work after server security patches?

2001-08-03 Thread Paul Ihrig
any one? -paul the ponds here are drying up. if your not a mud skipper you are likely to be bird food.. web developer, nbbj work: [EMAIL PROTECTED] 614 241-3534 fax:614 485-5534 home: [EMAIL PROTECTED] 614 449-1681 icq:47658358 -Original Message- From:

RE: default.ida?

2001-08-03 Thread Tangorre, Mike
whats yur ip? :-) Michael T. Tangorre Web Applications Developer Office Phone: 703-558-4746 Cellular Phone: 607-426-9277 AIM: CrazyFlash4 Personal Email: [EMAIL PROTECTED] Work Email: [EMAIL PROTECTED] School Email: [EMAIL PROTECTED]

RE: default.ida?

2001-08-03 Thread Edward Chanter
193.122.20.5 - Production 193.122.20.8 - Development Why? -Original Message- From: Tangorre, Mike [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 02, 2001 3:34 PM To: CF-Talk Subject: RE: default.ida? whats yur ip? :-) Michael T. Tangorre

RE: default.ida?

2001-08-03 Thread Carlisle, Eric
I apologize for my out of context responses to this issue. Exchange server problems earlier this morning delayed the messages and sent them in the wrong order. :/ Sincerely, Eric Carlisle x4739 ~~ Structure your ColdFusion code

RE: default.ida?

2001-08-03 Thread James Maltby
doh! If you didn't have red wormy you'll probably get it now - posting ip's to a chat list - shame on you... ;-) J -Original Message- From: Edward Chanter [mailto:[EMAIL PROTECTED]] Sent: 02 August 2001 15:50 To: CF-Talk Subject: RE: default.ida? 193.122.20.5 - Production

RE: default.ida?

2001-08-03 Thread Neil Clark
you are talking about the .htr bug ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives:

RE: default.ida?

2001-08-03 Thread Rich Wild
James! Back to the UK cfug list! do some work! -Original Message- From: James Maltby [mailto:[EMAIL PROTECTED]] Sent: 02 August 2001 15:52 To: CF-Talk Subject: RE: default.ida? doh! If you didn't have red wormy you'll probably get it now - posting ip's to a chat list -

RE: default.ida?

2001-08-03 Thread Tangorre, Mike
i know, i said it as a joke Gesh, shame on you! Michael T. Tangorre Web Applications Developer Office Phone: 703-558-4746 Cellular Phone: 607-426-9277 AIM: CrazyFlash4 Personal Email: [EMAIL PROTECTED] Work Email: [EMAIL PROTECTED] School

RE: default.ida?

2001-08-03 Thread Richard Kuryk
Your system is Patched! NT 4 system According to the code red scanner. Rich -Original Message- From: Edward Chanter [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 02, 2001 10:50 AM To: CF-Talk Subject: RE: default.ida? 193.122.20.5 - Production 193.122.20.8 - Development Why?

RE: default.ida?

2001-08-03 Thread Shawn Grover
Agreed, but only if you are not using the index server, or have no .ida files in your sites. Your best bet is to get the Patch from microsoft (if you haven't already). If you are only seeing the request in your log files, then you are probably seeing the Code Red Worm trying to get at your

POSTgreSQL

2001-08-03 Thread Michael Lugassy
Anyone tried PostgreSQL with Coldfusion? I'm trying to develop a full-text mechanisem of 10gb table with it. Possible? Recommended? All comments welcome! Michael. ~~ Structure your ColdFusion code with Fusebox. Get the official book at

RE: default.ida?

2001-08-03 Thread Carlisle, Eric
1st Ask Why, THEN give info. :) Eric Carlisle -Original Message- From: James Maltby [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 02, 2001 10:52 AM To: CF-Talk Subject: RE: default.ida? doh! If you didn't have red wormy you'll probably get it now - posting ip's to a

RE: default.ida?

2001-08-03 Thread Stephen Moretti
Might be an idea to go away and change the IP addresses on your servers now and abandon these two for all eternity Never put this kind of information out on the list. You are openning yourself up to abuse by the few unscrupulous people on this list... Stephen -Original Message-

Old Java controls with CF 5.0?

2001-08-03 Thread Bill Davidson
Anyone know of a way to use the old (4.5) Java applets with CF 5.0? I am building a web-app for a client who is all Mac and the older applets run fine, the new ones - not so much. Any help is much appreciated. -Bill www.brainbox.tv ~~ Structure

RE: default.ida?

2001-08-03 Thread Jay Sudowski - Handy Networks LLC
FWIW, I don't believe that Michael is being infected. I remember reading somewhere, that if the machine was vulnerable to the expliot, the code execution would occur before the request was ever written to the log file, and thus there would be no trace of it. On the flip side of things, if the

Re: OOT: ListServ Software?

2001-08-03 Thread Howie Hamlin
- Original Message - From: Dennis Powers [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, August 02, 2001 9:11 PM Subject: RE: OOT: ListServ Software? Mike, Can you run IMS on a dedicated mail server that doesn't have a web server? iMS is a mail server. It doesn't

RE: graphing

2001-08-03 Thread David Shadovitz
I do IDL programming, and its vendor, RSI, also dropped GIF support in favor of PNG. -David On Thursday, August 02, 2001 12:53 PM, Ben Forta [SMTP:[EMAIL PROTECTED]] wrote: Nick, I said GIF on April 22nd, that is an OLD message. At that time GIF was in there. It was pulled (and replaced with

RE: MM :: WACK :: Forta Weiss

2001-08-03 Thread Ben Forta
Amazon has the right cover now, they fixed it yesterday. --- Ben -Original Message- From: Bruce Sorge [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 02, 2001 4:48 PM To: CF-Talk Subject: Re: MM :: WACK :: Forta Weiss Amazon and Barnes and Nobel both are selling it. Interesting

RE: Names of Structures that contain CF Metadata

2001-08-03 Thread Dave Watts
What are the names of the structures that contain all querynames available in a page? Is there any documentation/ listing of all available structs that CF has in a page? There is no structure containing just query objects; queries are simply a type of variable, so that if your query is

Re: MM :: WACK :: Forta Weiss

2001-08-03 Thread Scott Weikert
Ok. I'm a 'tard. :) Just didn't look far enough down the page, I suppose. *bonk.* --Scott - Original Message - From: Dylan Bromby [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, August 02, 2001 5:08 PM Subject: RE: MM :: WACK :: Forta Weiss nope. here's the link.

SERVER IP Address

2001-08-03 Thread PEREZ, RICHARD D (SBCSI)
What is the variable for your server IP address. Is it a CGI Variable? I know for remote it is CGI.REMOTE_ADDR but what about for your own server. I can get the CGI.SERVER_NAME but the MIMEATTACH on the CFMAIL can only accept the IP address... i don't know why. Please help.

RE: graphing

2001-08-03 Thread Dylan Bromby
woop dave's right...unisys owns the license. heh. damn unisys. ;) -Original Message- From: Dylan Bromby [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 02, 2001 1:52 PM To: CF-Talk Subject: RE: graphing damn compuserve. ;) -Original Message- From: Ben Forta [mailto:[EMAIL

Re: Home Office Firewall

2001-08-03 Thread Jochem van Dieten
Mark Warrick wrote: Sounds like a good idea. Is there a minimum hardware requirement for that? Is it easy to setup? I've got a spare PII 233 I could use. Do think that's sufficient? Go for it. It has many additional benefits, like the ability to use it as a router, remote configuration

Names of Structures that contain CF Metadata

2001-08-03 Thread Chris Mosier
What are the names of the structures that contain all querynames available in a page? Is there any documentation/listing of all available structs that CF has in a page? I've seen this list(below) from KB article 14192. What I'm looking for are the names of queries run on the page.

Re: [Alternative to Verity search?]

2001-08-03 Thread Alex
http://swishe.sourceforge.net/ Angél Stewart [EMAIL PROTECTED] wrote: There's a client who insists that Verity Serach is a resource hog and would put too much load on their server, but they want to be able to do a full search across their entire website and webpages... What are the

E-commerce question

2001-08-03 Thread John Allred
With no experience with shopping carts, SSL certificates and gateways, I don't have an answer to my banker, who asks if my software is Global Payment Systems (NDC) approved. I don't recall a discussion on this list where this was mentioned. Can anyone help me with the terminology I need to speak

Re: [Alternative to Verity search?]

2001-08-03 Thread Alex
apache.org uses swish-e ...its free Angél Stewart [EMAIL PROTECTED] wrote: There's a client who insists that Verity Serach is a resource hog and would put too much load on their server, but they want to be able to do a full search across their entire website and webpages... What are the

The 0 byte CFMail bug

2001-08-03 Thread Carlisle, Eric
Macromedia says they have the problem with the 0 byte files clogging the mail spool fixed in v5. I popped a 0 btye file (called 6.cfmail) in the spool folder and got 100% CPU utilization. Also, all future mail dosn't get sent until the file is removed and the application service is restarted.

RE: graphing

2001-08-03 Thread Dylan Bromby
damn compuserve. ;) -Original Message- From: Ben Forta [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 02, 2001 12:53 PM To: CF-Talk Subject: RE: graphing Nick, I said GIF on April 22nd, that is an OLD message. At that time GIF was in there. It was pulled (and replaced with PNG) in

Re: MM :: WACK :: Forta Weiss

2001-08-03 Thread Bruce Sorge
And Amazon just updated their page as well. - Original Message - From: Neil H. [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, August 02, 2001 3:11 PM Subject: Re: MM :: WACK :: Forta Weiss Who has it for sale?! Neil - Original Message - From: Paul Ihrig

Re: MM :: WACK :: Forta Weiss

2001-08-03 Thread Bruce Sorge
Amazon and Barnes and Nobel both are selling it. Interesting point is that they are showing the covers for the 4.0 versions of the book. - Original Message - From: Neil H. [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, August 02, 2001 3:11 PM Subject: Re: MM :: WACK ::

RE: form field parameter not recognized

2001-08-03 Thread Joel Parramore
How do you know the form field is there? It's on the HTML form? If it's blank, that particular browser may not be passing it back to the server. Just in case, use CFIF IsDefined(form.gname) And form.gname IS /CFIF instead to test for its existence, or use a CFPARAM tag to initialize the

RE: OOT: ListServ Software?

2001-08-03 Thread John Fix 3rd
Check out www.lyris.com. The pricing varies depending on the size of your lists. We use it for two lists that have about 900 members each and about twenty messages per day. John www.cornells.com -Original Message- At 03:01 PM 8/2/01, you wrote: I hate to do this, but you guys know

RE: Cold Fusion Free Forum Software?

2001-08-03 Thread John Fix 3rd
http://www.forumspot.org/ This is the open source version of the old Allaire Forums product. -Original Message- From: Tony Garrido [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 02, 2001 2:51 PM To: CF-Talk Subject: Cold Fusion Free Forum Software? I came across a web

RE: graphing

2001-08-03 Thread Ben Forta
Nick, I said GIF on April 22nd, that is an OLD message. At that time GIF was in there. It was pulled (and replaced with PNG) in May because of licensing restrictions. :-) --- Ben -Original Message- From: Nick Gompper [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 02, 2001 3:21 PM

RE: Reboot windows 2K server?

2001-08-03 Thread Nick McClure
If you have the Windows Resource Kit installed, then there is a command line utility called shutdown. it has some parameters that will do just about whatever you want. At 01:30 PM 8/2/2001 -0500, you wrote: Ummm, the tag gallery says the CFX_RestartMachine tag was last modified October 3,

RE: MM :: WACK :: Forta Weiss

2001-08-03 Thread Ben Forta
Glad to hear it is in folks' hands finally. Enjoy. And feel free to send me comments and feedback (only positive, of course g). --- Ben -Original Message- From: Paul Ihrig [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 02, 2001 2:58 PM To: CF-Talk Subject: MM :: WACK :: Forta

CFHeader

2001-08-03 Thread Janine Jakim
Everytime I try to use CFHEADER I get the message: The tag name CFHEADER not found in currently active versions. This is the code I was using: cfheader NAME=Content-Disposition VALUE=inline; filename= TESTlocal.fdf I can't find any docs about it not being usable. Also could this be the reason

RE: graphing

2001-08-03 Thread Nick Gompper
GIF? Your article in CF Dev. Journal says Flash, JPEG and PNG but not GIF though, sorry Which Ben Forta guru should I believe? ;-) -Original Message- From: Ben Forta [mailto:[EMAIL PROTECTED]] Sent: Sunday, April 22, 2001 8:24 PM To: CF-Talk Subject: RE: graphing GIF, JPEG,

Learning Management Software (LMS)

2001-08-03 Thread Jeff Beer
Has anyone ever worked with the Docent Enterprise LMS? A client has expressed interest in using this software. My basic research shows that it offers an API. Has anyone actually manipulated the range of administrative functions using the API? Thanks in advance! Jeff Beer Senior Programmer

form field parameter not recognized

2001-08-03 Thread Mark
We're having a strange problem with form field parameters not being recognized when being passed to a second page even though all the code is there and the form field is present. Here's the code on the original page: form action=http://www.fancyblooms.com/test.cfm; method=post INPUT NAME=gname

ORLAND CFUG MEETING TONIGHT!!!!

2001-08-03 Thread Robert Everland
First meeting of the new Orlando CFUG. We will be meeting in research park in Orlando (right by UCF) the first time and will alternate between Lake Mary and there. Our guest speaker will be Jason Montilla (co-author of a new article in August's ColdFusion Developers Journal on Flash and

RE: Home Office Firewall

2001-08-03 Thread Duane Boudreau
I use blackice from networkice (www.networkice.com). A little expensive ($300) for the server version but I have been very happy it so far. Duane -Original Message- From: Tangorre, Mike [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 02, 2001 1:27 PM To: CF-Talk Subject: Home Office

Re: [Home Office Firewall]

2001-08-03 Thread Alex
If you want something prewritten and looks good I have heard good things about zonealarm. If you want something highly customizable I recommend OpenBSD with IPFilter as you firewall/gateway/router. There are alot of howtos that can get you up and running fairly quickly if you are familiar with

RE: Reboot windows 2K server?

2001-08-03 Thread Dave Watts
As long as we are being snippy...I doubt a tag from 98 is going to do the trick. snip from docsThis tag was designed for Windows NT, using InitiateSystemShutdownA from the Windows API. As far as I know, it will not work under Windows 95. Not sure about Windows 98, but I doubt it. If

Re: Home Office Firewall

2001-08-03 Thread Dave Hannum
Zone Alarm! For individual is free. Only $40 for business (the features make it worth it!) Worth its weight in gold! Easy to use and reliable! Very reliable! www.zonealarm.com Dave - Original Message - From: Tangorre, Mike [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent:

RE: Home Office Firewall

2001-08-03 Thread Mark Warrick
I hear Blackice is pretty good. I've used McAfee's firewall as well. They both do a great job of blocking traffic. Unfortunately, on a development server that caused me problems and I ended up passing on that idea. They're more trouble than they're worth for me. Your situation may be

RE: Home Office Firewall

2001-08-03 Thread Dylan Bromby
run a combo of zonealarm and black ice. -Original Message- From: Tangorre, Mike [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 02, 2001 10:27 AM To: CF-Talk Subject: Home Office Firewall Any ideas on home firewall software? I run a cold fusion server and ftp server from home so I

Eprise and ColdFusion

2001-08-03 Thread S R
Is anyone using Eprise Participant server and ColdFusion? What do you guys think about it? ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ:

RE: Reboot windows 2K server?

2001-08-03 Thread John Lucas
As long as we are being snippy...I doubt a tag from 98 is going to do the trick. snip from docsThis tag was designed for Windows NT, using InitiateSystemShutdownA from the Windows API. As far as I know, it will not work under Windows 95. Not sure about Windows 98, but I doubt it. If anyone

RE: default.ida?

2001-08-03 Thread Dave Watts
I'm getting quite a few requests like this: 00:38:13 202.109.105.67 GET /default.ida 401 ... Interestingly though, my server is password protected. Does IIS log the request even if the page doesn't exist, and even if it did, couldn't be access due to the password protection anyway?

Re: Home Office Firewall

2001-08-03 Thread Michael Dinowitz
zonealarm.com very good and covers just about anything you'll need. At 01:26 PM 8/2/01, you wrote: Any ideas on home firewall software? I run a cold fusion server and ftp server from home so I can backup work, and work remotely and when I am at school and what not. What would be some good

grouping dilemna

2001-08-03 Thread Deanna Schneider
Hi Folks, So, I'm working on this project management system. We have projects and tasks within projects. Both are in the same table. Not all projects have tasks, but a task must be associated with a project. Output might look like so: PROJECTduedate task1duedate

  1   2   3   >