Is it possible to delete a local variable?

2001-07-30 Thread Aidan Whitehall
Umm, I guess the subject says it all. I know the variable doesn't exist when the page has been fully processed, but I want to bin it before then... and I don't mean just set it to null... I mean delete it so that IsDefined(var) returns 0. Thanks Aidan -- Aidan Whitehall [EMAIL PROTECTED]

ColdFusion FAQ updated

2001-07-30 Thread Aidan Whitehall
Yes folks, the ColdFusion FAQ at http://www.thenetprofits.co.uk/coldfusion/faq/ has had a sizable update. And all existing users can upgrade for free! Aidan -- Aidan Whitehall [EMAIL PROTECTED] Macromedia ColdFusion Developer Fairbanks Environmental +44 (0)1695 51775

RE: Does CF 4.5 Pro Support Advanced Security?

2001-07-30 Thread Thomas Chiverton
If you want to allow CF to query your NT SAM using the Advanced Security interface (using the CFAUTHENTICATE tag, for example), you need CF Enterprise. sigh I started this a few months back when we were looking to get our first CF server here. CF Pro (4.5+,5) DOES SUPPORT ADVANCED

RE: double post - JavaScript and windows

2001-07-30 Thread Will Swain
Thanks all who replied. Will -Original Message- From: Jordan Saardchit [mailto:[EMAIL PROTECTED]] Sent: 27 July 2001 17:07 To: CF-Talk Subject: RE: double post - JavaScript and windows window.opener.location.href = URL; -Original Message- From: Will Swain [mailto:[EMAIL

RE: Javascript Questions Answers

2001-07-30 Thread Will Swain
Thanks steve, signed up now :) Will -Original Message- From: Steve Reich [mailto:[EMAIL PROTECTED]] Sent: 27 July 2001 19:44 To: CF-Talk Subject: OT: Javascript Questions Answers I've noticed a lot of javascript posts lately and wanted to remind everyone about the JS-Jive javascript

Re: Sort by year

2001-07-30 Thread nyon
Hi, I have a few hundred articles collected over a few years. What is the proc. to list out articles from database based on year ie; 1. Show all 1995 articles 2. Show all 1996 articles 3. Show all 1997 articles My database has a year column in the table. Thanks Nyon

Re: Sort by year

2001-07-30 Thread Mak Wing Lok
select * from articles where year = the_year_you_want or sleect * from articles order by year mak wl - Original Message - From: nyon [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, July 30, 2001 6:33 PM Subject: Re: Sort by year Hi, I have a few hundred articles

RE: SQL Datatype Datetime

2001-07-30 Thread Andrew Scott
Both I keep getting the statement back that itis not consistent with the datatype or length I just did an insert an the DB reported the date back as 01/01/1900, I was trying to manually enter this into the db maybe I should just use this for manual insertions via the Enterprise Manager!

RE: SQL Datatype Datetime

2001-07-30 Thread Philip Arnold - ASP
Is it possible to have a null Datetime field although I have allowed nulls, it still complains. Or would it be better to have a very distant past date... OK, the question I have to ask is HOW are you inserting the information? If you do INSERT INTO myTable (myDateField) VALUES (NULL) That

Synchronize Web Based DataWith Oulokk

2001-07-30 Thread Mardi Himawan
I Have a problem, would you please advice me..how to synchronize data outlook on pc client...with data on server sql..through web base connection would you please.send me source code cfml, or another advice... thank you ~~ Structure your

OT: Ouch!

2001-07-30 Thread Tristram Charnley
I hope none of you is banking with this outfit! http://www.it-director.com/frame.php?name=Silicon.comurl=http%3A%2F%2Fwww.s ilicon.com%2Fpublic%2Fdoor%3FREQUNIQ%3D996479427%266004REQEVENT%3D%26REQINT1 %3D46106%26REQSTR1%3Dnewsnow Tristram Charnley

dbType=Query and Joins

2001-07-30 Thread Philip Arnold - ASP
Is it me, or do the Joins in Query a Query not work properly? I'm trying to import data from a text file and put it into a SQL Server 7 database, but I only want records which aren't already there... simple enough right? I get the text file via a query; CFQuery datasource=TextImport

Why are Query a Query errors so rubbish?

2001-07-30 Thread Philip Arnold - ASP
unknown exception condition PCodeRuntimeContextImp::executeSQLTagCFQuery::endTag What am I supposed to make of that? The SQL is about 6 lines long, it's not exactly useful, is it??? Philip Arnold Director Certified ColdFusion Developer ASP Multimedia Limited T: +44 (0)20 8680 1133 Websites

RE: how to re-enable CFREGISTRY?

2001-07-30 Thread Aidan Whitehall
OK I made a mistake. In the CFAdministrator, I disabled the CFREGISTRY tag. And then I discovered that once you do that, you can no longer use the CFAdministrator. Great. Easy. Read the FAQ (look in the footer). Aidan -- Aidan Whitehall [EMAIL PROTECTED] Macromedia ColdFusion

RE: Country - States Database

2001-07-30 Thread Aidan Whitehall
Just don't ask where it came from :) Where did it come from? (sorry, that was just *asking* for it ;-) Aidan -- Aidan Whitehall [EMAIL PROTECTED] Macromedia ColdFusion Developer Fairbanks Environmental +44 (0)1695 51775 ~~ Structure your

RE: CF Stock Quotes

2001-07-30 Thread Tim Bahlke
moreovernews.com offers stocks - they actually use yahoo! They're available in wddx and it's free. Tim Bahlke -Original Message- From: nyon [mailto:[EMAIL PROTECTED]] Sent: Sunday, July 29, 2001 10:40 PM To: CF-Talk Subject: Re: CF Stock Quotes Hi, I need some free live

RE: Ouch!

2001-07-30 Thread Angél Stewart
The expression on that guy's face is priceless! LOL! If he's an actor he did a great job. And its not all bad..Customers just have to wait for them to restore the records from their main banking systems. -Gel -Original Message- From: Tristram Charnley [mailto:[EMAIL PROTECTED]] I

CFIF Confusion

2001-07-30 Thread Ken Monroe
Hello! I'm working with SQL Server 2000 and I have a query I'm confused about. There's a field (FIELD1) that's defined as a VARCHAR. The field contains either Yes or No. I SELECT all records and then want to display somthing different if FIELD1 is a Yes or No. The following structure works:

RE: CFIF Confusion

2001-07-30 Thread Tangorre, Mike
I would use type 'bit' for the field instead of varchar. Where 1 is yes and 0 is no, then in your if check if it is EQ 1 or EQ 0. Mike Michael T. Tangorre Web Applications Developer Office Phone: 703-558-4746 Cellular Phone: 607-426-9277 AIM:

RE: CFIF Confusion

2001-07-30 Thread C. Hatton Humphrey
When in doubt, use Trim() and UCase() functions to make sure, so instead of cfif FIELD1 IS Yes try cfif Trim(UCase(FIELD1)) IS YES See if that helps. Hatton Humphrey -Original Message- From: Ken Monroe [mailto:[EMAIL PROTECTED]] Sent: Monday, July 30, 2001 10:07 AM To: CF-Talk

RE: CFIF Confusion

2001-07-30 Thread Bill Killillay
If you can change the data type of the Field1 you would be better to make it a bit field and then use 1 for yes and 0 for no, then your CF logic and your SQL will probably make more sense. Right now your trying to do String Comparisons when what you really want to be doing by what you have put

RE: Is it possible to delete a local variable?

2001-07-30 Thread Dave Watts
Subject: Is it possible to delete a local variable? Umm, I guess the subject says it all. I know the variable doesn't exist when the page has been fully processed, but I want to bin it before then... and I don't mean just set it to null... I mean delete it so that IsDefined(var)

Re: CFIF Confusion

2001-07-30 Thread Stephen Hait
You could check the value of the variable to see if it's really 'Yes' or not: cfoutput FIELD1='#FIELD1#'br /cfoutput Note single quotes surrounding variable output. Check to see if there might be trailing spaces - this might be the problem. HTH, Stephen Hello! I'm working with SQL

Re: CFIF Confusion

2001-07-30 Thread G
I've also notice that in SQL, if I do a: SELECT * FROM TableName WHERE (FIELD1 LIKE 'yes') it works, but SELECT * FROM TableName WHERE (Field1 IS 'yes') does not work... ??? Thx Thats because the correct syntax for SQL would be: WHERE Field1 =

RE: CFIF Confusion

2001-07-30 Thread Mark Warrick
I'm not certain why the SQL statements you noted below would work the way they do, but it's possible that the fields are padded with extra spaces around the yes which is causing a problem. Converting the field type from varchar to integer will solve the problem. ---mark

RE: CFIF Confusion

2001-07-30 Thread Kwang Suh
That's because IS is not a valid SQL keyword... I've also notice that in SQL, if I do a: SELECT * FROM TableName WHERE (FIELD1 LIKE 'yes') it works, but SELECT * FROM TableName WHERE (Field1 IS 'yes') does not work...

RE: query of queries in a custom tag

2001-07-30 Thread DeWitt, Steve
that did not work. Same error about the value in the from clause being a complex value. -Original Message- From: Brad Roberts [mailto:[EMAIL PROTECTED]] Sent: Friday, July 27, 2001 2:19 PM To: CF-Talk Subject: RE: query of queries in a custom tag I'm taking a wild guess without trying

CF Studio Trick

2001-07-30 Thread jperlmutter
I was at the 2001 cf odyssey event this past weekend. When one speaker was showing us some javascript I thought he typed 'scriptj' in studio, and bang the entire script header/footer tag and more appeared. I just tried this at work and it didn't work. Am I doing something wrong? Thanks Jan

RE: CFIF Confusion

2001-07-30 Thread Steve Martin
eh-oh: SELECT * FROM Wherever WHERE somefield IS NULL That's because IS is not a valid SQL keyword... ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ:

Re: CFIF Confusion

2001-07-30 Thread Ken Monroe
That did it! As the other responses indicated, things can get confusing between logical (boolean) comparisons and string comparisons. I really was trying to do a string comparison for the literal word Yes. As Stephen Hait indicated, there were trailing spaces or something that was messing up

RE: CF Studio Trick

2001-07-30 Thread Philip Arnold - ASP
I was at the 2001 cf odyssey event this past weekend. When one speaker was showing us some javascript I thought he typed 'scriptj' in studio, and bang the entire script header/footer tag and more appeared. I just tried this at work and it didn't work. Am I doing something wrong? You have to

Code Red Worm: Deadline For Action

2001-07-30 Thread Jay Sudowski - Handy Networks LLC
I know this is slightly off topic, but since most people are running CF Server on top of WinNT or Win2000, it's highly relevant. CERT believes that Code Red is likely to start spreading again on July 31, 2001, 8:00 PM EDT and has mutated so that it may be even more dangerous. If you are

Re: CF Studio Trick

2001-07-30 Thread Stephen Hait
Check out Code Templates - Options, Settings. Under Editor, click on Code Templates to see a list of default templates. On my systems, the following code is associated with scriptj and typing scriptj followed by alt+j pops this text into a document at the cursor. SCRIPT LANGUAGE=JavaScript

RE: CF Studio Trick

2001-07-30 Thread Ken Wilson
You'll want to setup a Code Template and keyword for it first. F8 -- EDITOR -- CODE TEMPLATES Works great and can save lots of time for things you use frequently. You can also use a Snippet Shortcut to achieve similar results. Ken -Original Message- From: [EMAIL PROTECTED]

RE: CF Studio Trick

2001-07-30 Thread Lomvardias, Christopher
After you type scriptj, you have to then hit CTL-J together. Chris -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, July 30, 2001 10:29 AM To: CF-Talk Subject: CF Studio Trick I was at the 2001 cf odyssey event this past weekend. When one speaker was

FYI

2001-07-30 Thread Stuart Miller
I found a wonderful bug in CF 4.5 It seems that the Duplicate() function can totally destroy your CF engine if the structure you are copying contains query objects. You will end up with great error messages like SomeVariableName is not a valid attribute for CFSET where the code is cfset

RE: SQL Datatype Datetime

2001-07-30 Thread Mark Warrick
Yes, it's fine to have a null value in a datetime field, but you have to be sure you're not passing anything other than a datetime value into it. It's possible that you're trying to send in a blank value, which is actually a set of spaces as opposed to nothing at all, which would be a null

Re: CF Studio Trick

2001-07-30 Thread Critter
Hello jperlmutter, hey, i was there too (the bald guy with piercings) :) what version of studio are you using? I am running the beta. scriptj then Ctrl-J worked for me -- Critter, MMCP Certified ColdFusion Developer Crit[s2k] - CF_ChannelOP Network=Efnet Channel=ColdFusion

RE: FYI

2001-07-30 Thread Raymond Camden
I found a wonderful bug in CF 4.5 Yep, that's why we fixed it. :) There is a patch, though, from the Knowledge Base (19107). Hope this is fixed in CF 5. Yes it is fixed in CF5. === Raymond Camden, Principal Spectra

Studio 5.0?

2001-07-30 Thread Tangorre, Mike
Is Studio 5.0 out yet in Beta for download? Anyone have it? Reviews? Mike ~~ 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

RE: FYI

2001-07-30 Thread Lomvardias, Christopher
Nice that it is fixed in CF5, but how about a fix for this in CF4.5 Professional? Chris -- Chris Lomvardias [EMAIL PROTECTED] Syscom, Inc. 400 E. Pratt Street, Suite 300 Baltimore, MD 21202 (410)539-3737 x1722 voice

RE: Studio 5.0?

2001-07-30 Thread Dylan Bromby
it's in beta now. to test it, you need to provide your existing CFStu serial number to [EMAIL PROTECTED] when you request participation. -Original Message- From: Tangorre, Mike [mailto:[EMAIL PROTECTED]] Sent: Monday, July 30, 2001 8:12 AM To: CF-Talk Subject: Studio 5.0? Is Studio 5.0

Re: CF Studio Trick

2001-07-30 Thread Jeffry Houser
Maybe he had it set up as a snippet? You can assign them to hot-keys, although I thought that was the number of keys you pressed at once, not in a specific order. At 10:28 AM 07/30/2001 -0400, you wrote: I was at the 2001 cf odyssey event this past weekend. When one speaker was showing us

Re: Studio 5.0?

2001-07-30 Thread Loryn C Williams
Mike, I've been using Studio beta 2 since last Thursday. Beta 1 was not fun. I got many fatal exceptions and file sharing violation errors. This version is behaving much better so far. The file tab also hung in beta 1 (didn't refresh when I switched directories) This problem also seems to be

RE: Studio 5.0?

2001-07-30 Thread Chuck Hergenroeder
Studio 5 is out in Beta 2. -Original Message- From: Tangorre, Mike [mailto:[EMAIL PROTECTED]] Sent: Monday, July 30, 2001 11:12 AM To: CF-Talk Subject: Studio 5.0? Is Studio 5.0 out yet in Beta for download? Anyone have it? Reviews? Mike

RE: FYI

2001-07-30 Thread Ken Wilson
Nice that it is fixed in CF5, but how about a fix for this in CF4.5 Professional? If this is the patch to fix Duplicate() on Pro, I could never find it on the web site but a fellow developer was kind enough to point me to a private site to download it...sorry don't have the URL anymore.

RE: Studio 5.0?

2001-07-30 Thread Daniel Lancelot
how much does it differ from 4.52? -Original Message- From: Loryn C Williams [mailto:[EMAIL PROTECTED]] Sent: 30 July 2001 16:26 To: CF-Talk Subject: Re: Studio 5.0? Mike, I've been using Studio beta 2 since last Thursday. Beta 1 was not fun. I got many fatal exceptions and file

RE: FYI

2001-07-30 Thread Lomvardias, Christopher
Dylan, If you read the KB Article closely *you* will see that the fix applies only to Enterprise, hence my post. Thanks, Chris -Original Message- From: Dylan Bromby [mailto:[EMAIL PROTECTED]] Sent: Monday, July 30, 2001 11:31 AM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: RE:

Re: FYI

2001-07-30 Thread Howie Hamlin
That's why the original poster mentioned the KB article: http://www.allaire.com/Handlers/index.cfm?ID=19107Method=Full Regards, Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. www.CoolFusion.com 631-737-4668 x101 inFusion Mail Server (iMS) - The Intelligent Mail Server

RE: Calling Stored Proc....

2001-07-30 Thread DeWitt, Steve
could you send more information? Database you are using, the error, some code. -Original Message- From: BT [mailto:[EMAIL PROTECTED]] Sent: Saturday, July 28, 2001 8:29 PM To: CF-Talk Subject: Calling Stored Proc I'm getting SQL/ODBC Error when incorporating the following CF code

Re: FYI

2001-07-30 Thread Howie Hamlin
Ack - ignore my ramblings... Howie - Original Message - From: Howie Hamlin [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, July 30, 2001 11:34 AM Subject: Re: FYI That's why the original poster mentioned the KB article:

RE: FYI

2001-07-30 Thread Lomvardias, Christopher
You aren't the only one. I would say it looks like a few people definitely need more coffee this morning. Chris -Original Message- From: Dylan Bromby [mailto:[EMAIL PROTECTED]] Sent: Monday, July 30, 2001 11:38 AM To: 'Lomvardias, Christopher'; [EMAIL PROTECTED] Subject: RE: FYI more

CFMAIL Error w/ CF 5.0

2001-07-30 Thread David B Brooks
Heya all, Is anyone receiving the TagCFMail::sendMessage error with CF 5.0 Enterprise? I have seen the Allaire KB article, applied the patch, and have increased the delay setting multiple times, still keep receiving this error. Any info will be of great help. Thanks :) David.

RE: FYI

2001-07-30 Thread Dylan Bromby
more coffee! -Original Message- From: Lomvardias, Christopher [mailto:[EMAIL PROTECTED]] Sent: Monday, July 30, 2001 8:32 AM To: '[EMAIL PROTECTED]'; [EMAIL PROTECTED] Subject: RE: FYI Dylan, If you read the KB Article closely *you* will see that the fix applies only to Enterprise,

RE: FYI

2001-07-30 Thread Dylan Bromby
had you read the original post closely, you would have seen the reference to knowledgebase article 19107. :) http://www.allaire.com/Handlers/index.cfm?ID=19107Method=Full -Original Message- From: Lomvardias, Christopher [mailto:[EMAIL PROTECTED]] Sent: Monday, July 30, 2001 8:20 AM

Outputing a Query In a different format Question...

2001-07-30 Thread David Burt
My problem is that I would like to change the way a query is outputed on the page in a table. A picture is worth a thousand words. see below: regular CFOUTPUT user1 user1phoneNumber user2 user2phoneNumber user3 user3phoneNumber user4 user4phoneNumber Instead of outputting it like this,

ANN: SF area Gathering Wed Aug 1

2001-07-30 Thread Matt Brown
You are invited to a gathering this Wednesday, Aug. 1 at the Thirsty Bear in San Francisco from 6 to 8. The goal of the gatherings is to get Macromedia users together in an informal, non-marketing setting where we can all talk and just share war stories about the Web. Macromedia takes care of

RE: Outputing a Query In a different format Question...

2001-07-30 Thread Rich Wild
try this as a quick fix (needs making beautiful as this'll give you an extra row at the end which you need to deal with, but the theory is sound...): tr cfoutput query=yourquery td#user#/td td#phonenumber#/td cfif NOT currentrow mod 2 /tr tr /cfif /cfoutput This will give you a 2 column table

RE: Outputing a Query In a different format Question...

2001-07-30 Thread Ryan Emerle
Here is something i threw together _real_ quick, it uses MOD to generate 'number_of_sections' divisions of the data in a table. And, number_of_sections is dynamic based on the recordcount of the query. (the query is named contacts) Snip --- cfquery name=contacts [...] [...] cfset

Fw: fusebox IIS 5

2001-07-30 Thread JAAV
Hello guys, I'm changing my web hosting plan to a dedicated one. In my share plan we had IIS 4 + CF 4.5. Well, almost everything is ok...but... our search-engine-friendly(Fusebox) urls don't WORK! www.help!.org/directory/index.cfm/var/val.htm Our hosting provider says: in IIS 5 (W2000) it

RE: CF Studio Trick - CORRECT

2001-07-30 Thread jperlmutter
Thanks to everyone who responded. The below responses not only told me to hit Ctrl-J after typing 'scriptj', but also showed me where I can define my own. I have already made my own Code Template called 'doc', which when executed with Ctrl-J inserts our 12 standard lines of document information

fusebox IIS 5 (II part: R.I.P. to fusebox?)

2001-07-30 Thread JAAV
what surprise guys! they say: The reason the behavior was changed was due to several security vulnerabilities associated with this form of passing parameters to scripts. Actually this should not work on IIS 4 either - there was a security fix released about 14 months ago which disabled this

Re: Studio 5.0?

2001-07-30 Thread Jeffry Houser
beta.allaire.com I believe you have to be a registered user of ColdFusion Studio 5.0 to participate. I think going into anymore details would be against the beta license / NDA / whatever. At 11:12 AM 07/30/2001 -0400, you wrote: Is Studio 5.0 out yet in Beta for download? Anyone have

RE: Studio 5.0?

2001-07-30 Thread Jeffry Houser
I think talking about it is against NDA. It seems to me that ColdFusion Studio 4.6 would be a better name. Seems to be very few additions, but some nice enhancements. At 04:30 PM 07/30/2001 +0100, you wrote: how much does it differ from 4.52? -Original Message- From: Loryn C

RE: fusebox IIS 5 (II part: R.I.P. to fusebox?)

2001-07-30 Thread John Lucas
We run Win2K advanced server IIS 5 (we have also done it in Win2K Server) and utilize search engine friendly urls. We have no problem. We did not do anything special to get this to work either. http://www.fastestisp.com for proof that this setup does work. John Lucas [EMAIL PROTECTED]

CFEXECUTE and the quote symbol

2001-07-30 Thread Chad Gray
Hello, Im trying to automate the Win2K command Net User to add users to the computer. The problem im running into is i need to use a inside of the argument. Well when CF sees the it thinks it is the end of the CFEXECUTE tag. Anyway to escape this quote symbol? I tried using quot; but

RE: Outputing a Query In a different format Question...

2001-07-30 Thread Christian L. Watt
This is good, but does anyone have an idea for filling one column, then a second with both columns being close to equal, but keeping grouping in the same column??? Alabama Texas Company 1 Company 4 John

RE: CFEXECUTE and the quote symbol

2001-07-30 Thread Philip Arnold - ASP
Im trying to automate the Win2K command Net User to add users to the computer. The problem im running into is i need to use a inside of the argument. Well when CF sees the it thinks it is the end of the CFEXECUTE tag. Anyway to escape this quote symbol? I tried using quot; but that

RE: CFEXECUTE and the quote symbol

2001-07-30 Thread Ryan Emerle
I think you should be able to double up on the quote within the quote to escape it. that is: cfset blah=hello world! blah - hello world! -Ryan -Original Message- From: Chad Gray [mailto:[EMAIL PROTECTED]] Sent: Monday, July 30, 2001 12:52 PM To: CF-Talk Subject: CFEXECUTE and the

OT: SirCam virus???

2001-07-30 Thread Wjreichard
I've been getting multiple emails for the last couple of days from gr and nl domains. All have a file attached with the same email body. I also read about a new virus making it's rounds ... the Sircam virus. Does anyone have any info on these emails or the SirCam virus? Email body: Hi! How

Re: CFEXECUTE and the quote symbol

2001-07-30 Thread Marius Milosav
Use single quotes for the internal argument: cfexecute name=c:\winnt\system32\net.exe arguments=user #GetUsers.Login# #GetUsers.Password# /add /fullname:'BILLYBOB' /expires:never /passwordchg:no /passwordreq:yes outputfile=c:\output.txt Marius Milosav www.scorpiosoft.com It's not about

Re: CFEXECUTE and the quote symbol

2001-07-30 Thread eric . laney
I recommend that you forego using cfexecute and look instead at two different resources: 1. CF_ADSI at http://www.cfcomet.com/ which is a COM .dll that encapsulates the ADSI calls to do this sort of thing so you can call it from cfobject. 2. Intranet / Hosting Toolkit at

Re: SirCam virus???

2001-07-30 Thread Howie Hamlin
Yep that's the virus. More info and repair utility here: http:[EMAIL PROTECTED] HTH, Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. www.CoolFusion.com 631-737-4668 x101 inFusion Mail Server (iMS) - The Intelligent Mail Server Join the DevCon community at

RE: SirCam virus???

2001-07-30 Thread John Fix 3rd
http:[EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, July 30, 2001 1:12 PM To: CF-Talk Subject: OT: SirCam virus??? I've been getting multiple emails for the last couple of days from gr and nl domains. All have a file

(MOT) Tamoye (COP: Communities of Practice)

2001-07-30 Thread Eric Dawson
Has anyone heard of, or know where I can get more info on tamoye? I thought they had a domain tamoye.com but I can't find it ... :( Eric Dawson ~~ Structure your ColdFusion code with Fusebox. Get the official book at

Re: OT: SirCam virus???

2001-07-30 Thread Paris Lundis
yeah the virus is spread by MS Outlook users... someone sends you mail... you click.. Outlook gets corrupted and starts emailing people in your contacts your random personal documents... Word files, excel, etc... I have received about 100 messages in one email box alone :) McAffee and

RE: SirCam virus???

2001-07-30 Thread Philip Arnold - ASP
I've been getting multiple emails for the last couple of days from gr and nl domains. All have a file attached with the same email body. I also read about a new virus making it's rounds ... the Sircam virus. Does anyone have any info on these emails or the SirCam virus? Email body: Hi!

Re: SirCam virus???

2001-07-30 Thread admin
it's a nasty little bugger - try and get the folks sending u the emails to apply the fix that is available from SARC - Original Message - From: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, July 30, 2001 10:12 AM Subject: OT: SirCam virus??? I've been getting multiple

CF_QUERYDUMP

2001-07-30 Thread Scott Van Vliet
FYI: For those in need of a Query Dumping tag, please check out CF_QUERYDUMP: http://devex.allaire.com/developer/gallery/info.cfm?ID=7691D794-84F8-11D5-83 F300508B94F85Amethod=Full This tag acts just like a CFQUERY tag in that it accepts a SQL Statement inside of the start and end tags. It can

RE: Is it possible to delete a local variable?

2001-07-30 Thread Hamid Hossain
Belongs to my information, you can not delete local variables and also you dont need to delete them! Only SESSION, APPLICATION and STRUCTUREs can be deleted. Regards, Hamid Hossain --- Dave Watts [EMAIL PROTECTED] wrote: Subject: Is it possible to delete a local variable? Umm, I guess

RE: Is it possible to delete a local variable?

2001-07-30 Thread Hamid Hossain
Belongs to my information, you can not delete local variables and also you dont need to delete them! Only SESSION, APPLICATION and STRUCTUREs can be deleted. Regards, Hamid Hossain --- Dave Watts [EMAIL PROTECTED] wrote: Subject: Is it possible to delete a local variable? Umm, I guess

RE: SirCam virus???

2001-07-30 Thread Pete Freitag
http:[EMAIL PROTECTED] I had the virus sent to me 10 times last week. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, July 30, 2001 1:12 PM To: CF-Talk Subject: OT: SirCam virus??? I've been getting multiple emails for the last couple of days from

RE: SirCam virus???

2001-07-30 Thread Russel Madere
Just that the subject will be variable and the body will be the same but close to what you posted. It could also possible come in in Spanish. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, July 30, 2001 12:12 PM To: CF-Talk Subject: OT: SirCam

RE: fusebox IIS 5 (II part: R.I.P. to fusebox?)

2001-07-30 Thread Stephen Moretti
Juan, This is true, but in no way means the end of Fusebox. I have to be honest and say I haven't kept up with all the latest advancements in Fusebox, but as I remember the tag FORMURL2ATTRIBUTES now picks up the query string and turns a safe URL into a bunch of variables. HTH Regards

Re: OT: SirCam virus???

2001-07-30 Thread Stuart Duncan
The sircam virus is particularly nasty... simple, but nasty. But only sometimes... basically, it pics random numbers... if it picks the right one, it might wipe out your hard drive, or fill it up or it might grab a random document on your computer and email it to everyone. This thing isn't

Re: Fw: fusebox IIS 5

2001-07-30 Thread Roger B .
On Mon, 30 Jul 2001 18:43:06 +0200, JAAV [EMAIL PROTECTED] wrote: Our hosting provider says: in IIS 5 (W2000) it doesn't work, the IIS 5 believes everything is a directory and... crash! it reports an error. is it True? if yes, Any ideas ? something at IIS 5 configuration? at CF ? All I can

Re: OT: SirCam virus???

2001-07-30 Thread Stephen Hait
Actually, the SirCam virus sports its own SMTP application to send mail, target e-mail addresses may come from a variety of sources including browser cache. You don't have to be an Outlook user to spread this. To get infected you must run the attached file. Stephen yeah the virus is

RE: OT: SirCam virus???

2001-07-30 Thread Russel Madere
Not all Outlook users I haven't been infected yet, but I've gotten the emails about 60 times. Just be careful opening attachments. -Original Message- From: Paris Lundis [mailto:[EMAIL PROTECTED]] Sent: Monday, July 30, 2001 12:23 PM To: CF-Talk Subject: Re: OT: SirCam virus???

Re: ANN: SF area Gathering Wed Aug 1

2001-07-30 Thread Paris Lundis
Wish I was in San Fran :) Read about the Thirsty Beer and share your opinions with us afterwards: http://www.pubcrawler.com/Template/ReviewWC.cfm?BrewerID=1844 -paris -Original Message- From: Matt Brown [EMAIL PROTECTED] Date: Mon, 30 Jul 2001 09:15:20 -0700 Subject: ANN: SF area

Re: Synchronize Web Based  DataWith Oulokk

2001-07-30 Thread Paris Lundis
Ahhh Outlook has comma delimited export ability on the CF side write a handler to parse the comma delimitted... that is the way I have seen it done... nothing really cool... I too would be interested in hearing about anyone else's approach... -paris -Original Message- From:

RE: SirCam virus???

2001-07-30 Thread Michael Dinowitz
Might as well one up you. I get about 10-15 a day on both my accounts. I've taken to emailing the sender as well as every domain in the send path to get it removed. It's actually worked. At 01:34 PM 7/30/01, you wrote: http:[EMAIL PROTECTED] I had the virus sent to me 10 times last week.

OT: IIS 4.0 and locking files

2001-07-30 Thread Percy Perez
Hello all, I am using Coldfusion to handle a couple of files. Unfortunately from time to time, I get a lock on a file that stays on for at least 10 minutes or so... I remember at one time someone mention that IIS produces locks on files being viewed, does any one know how to disable these

RE: $*^% Random Numbers!!!

2001-07-30 Thread ccook22
html head titleGenerate 5 Random Numbers/title /head body CFQUERY NAME=test DATASOURCE=Foo SELECT manager_id FROM manager_data /CFQUERY cfset templist = cfset tempnum = cfset counter = 0 !--- Beginning: Sets valid values for random number generation --- cfset checklist =

Got the fellow, but....

2001-07-30 Thread Michael Lugassy
I'm doing a pretty intensive watch on my server stastics and log files in real-time. sometimes I see people who try stupid stuff like: /winnt/system32/cmd.exe and trying to url hack (with ;drop tables) . my question is: when I'm seeing the guy's IP address in the stas server or log files, and

OT: Bar codes

2001-07-30 Thread Jacob
I am looking for a way to printout bar codes onto a label. I want to pull out information for a SQL Server and print it onto a label with a thermal printer. If there is some type of software that works with Cold Fusion Server or is just ODBC complaint, that would be great. Has anybody done

Re: OT: Bar codes

2001-07-30 Thread t nelson
Jacob, One of the companies I was contracting for flirted with the idea of doing something like this. However, we decided not to go this route. The good thing is that I did find a web site which may help you out: http://www.adams1.com/pub/russadam/webapps.html HTH Nelson Original

RE: Bar codes

2001-07-30 Thread Lee Fuller
Jacob, Try this... http://devex.allaire.com/developer/gallery/SearchResults.cfm?Keywords=ba rcodesubmit=searchcategory=*searchOptions=0 Lee Fuller Chief Technical Officer PrimeDNA Corporation / AAA Web Hosting Corporation We ARE the net. http://www.aaawebhosting.com -Original

OT: FoxPro to SQL/Oracle

2001-07-30 Thread Shawn Regan
Hey guys has anyone upsized a FoxPro database to MS SQL or Oracle. If so can you give me any hints on problems you faced or articles that could help me on this type of conversion? Shawn Regan Applications Developer Pacific Technology Solutions

RE: Synchronize Web Based  DataWith Oulokk

2001-07-30 Thread Noel Flatters
Maybe I'm not understanding the question correctly, but... You could use CDO in conjunction with asp to pull data from Outlook on the Exchange server, then create a wddx packet in asp which would get retrieved from the Exchange server by CF thru cfhttp. -Original Message- From: Paris

Re: Got the fellow, but....

2001-07-30 Thread Paris Lundis
Hmmm the best thing would to be try banning him at the IIS level by IP.. you might also write an application.cfm level screener to rip certain IPs and redirect them to the FBI.GOV site on hacking or others... That is in part how I do my redirections of about 450 domains in our portfolio... I

  1   2   >