RE: An error with CFMAIL

2001-04-20 Thread Axiomatique (Vincent)

I am getting the same error message as the one below, we are not using
IMailv6. We started to get the error when sending a specific message. So I
broke down the message in 4 pieces and all 4 were sent successfully, but
when putting the message back together step by step when reaching a certain
size the error occurs again. The same application sent several messages
about 6 times bigger then this on and in raw and HTML text to over 400
adresses, approx. 1 month ago without any problems. We are suspecting a
memory allocation problem, but some light could help.

Thanks..
Vincent Michellod


-Message d'origine-
De : Brian Thornton [mailto:[EMAIL PROTECTED]]
Envoyé : jeudi, 19. avril 2001 11:01
À : CF-Talk
Objet : Re: An error with CFMAIL


I checked and your using IMAILv6 right? Either UDP, ICMP, or TCP/IP packets
couldn't be sent because the socket wouldn't close. That happens when a
system manually abort a connection and all the other unused ports are full
because it didn't close


Check out
http://support.ipswitch.com/kb/WSK-19980702-EM02.htm


...brian
- Original Message -
From: "Lord Skulbite" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Wednesday, April 18, 2001 7:47 PM
Subject: An error with CFMAIL


 Could someone give me a clue at what this error message means and possibly
 how to solve it?

 "Error","TID=844","04/18/01","03:36:25","Error occurred while attempting
to
 connect to mail server. - [PT_NOTCONNECTED] Attempt made to use a session
 that is not the PT_CONNECTED state (Send attempted with closed
 connection)  - Server = 'mail.webspinnersinc.com'"
 "Error","TID=844","04/18/01","03:36:25","Message not delivered due to
error
 in establishing connection - Undelivered message file archived to
 'C:\CFUSION\MAIL\UNDELIVR\CFM21D.TMP'"


 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Harpoon The Current Status

2001-04-20 Thread Thomas Chiverton

Is it gonna be free, or will some nominal charge apply ?

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



looking for a crystal/cf guy

2001-04-20 Thread Brian Thornton

We have a need for a remote Crystal Guy to develop Crystal Reports as part of our 
intranet... Please email me at [EMAIL PROTECTED] for more info...

Brian Thornton
702.341.0864 or 702.310.1010 x3050 


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



FW: Dates suddenly formatting incorrectly.

2001-04-20 Thread Will Swain


Hi all,

Strange one this, it has me totally perplexed on this Friday morning.

I have several sites which have events pages. The site admin can upload
details of new events, including their dates. This all worked fine until
yesterday, when two of them started acting strangely, like so:

User inputs date: 26/05/01
Date as shown in Access2000: 01/05/26

For some reason it seems to be swapping around the day and year. The date
field is a short date.

This is the code for uploading the date:

cfif IsDefined("Form.festdate")

cfset festdate = #CreateODBCDate(Form.festdate)#

/cfif


!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"

cfquery name="addfest" datasource="#datasourcename#"
INSERT INTO tblfestticks (production, festdate, notes)
VALUES (#Form.production#, #festdate#, '#Form.notes#');
/cfquery

So, I tried changing the date line to this:

cfset festdate = #CreateODBCDate(#DateFormat("#Form.festdate#",
"dd/mm/yy")#)#

and the date 26/05/01 became 05/01/26!!

Now I'm really confused, and whilst I'm sure one of you guys will take one
look at this and sort it out, I am completely stumped.

Regards,

Will Swain


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Dates suddenly formatting incorrectly.

2001-04-20 Thread Daniel Lancelot

I presume form.festdate is a text field?

The most reliable way of capturing dates correctly on a form is to have 3
select boxes, (day/month/year) with appropiate values in each one.

Then when the user submits use createdate(form.year,form.month,form.day) to
create an unambiguous (is that a word) date stamp.

Its normally a good idea to put that in cftry/cfcatch to catch invalid
dates entered (e.g. 30/02/01)

If you use createodbcdate() on that, then the data in db is correct.

You can then use dateformat() to display it how you want...

-Original Message-
From: Will Swain [mailto:[EMAIL PROTECTED]]
Sent: 20 April 2001 11:47
To: CF-Talk
Subject: FW: Dates suddenly formatting incorrectly.



Hi all,

Strange one this, it has me totally perplexed on this Friday morning.

I have several sites which have events pages. The site admin can upload
details of new events, including their dates. This all worked fine until
yesterday, when two of them started acting strangely, like so:

User inputs date: 26/05/01
Date as shown in Access2000: 01/05/26

For some reason it seems to be swapping around the day and year. The date
field is a short date.

This is the code for uploading the date:

cfif IsDefined("Form.festdate")

cfset festdate = #CreateODBCDate(Form.festdate)#

/cfif


!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"

cfquery name="addfest" datasource="#datasourcename#"
INSERT INTO tblfestticks (production, festdate, notes)
VALUES (#Form.production#, #festdate#, '#Form.notes#');
/cfquery

So, I tried changing the date line to this:

cfset festdate = #CreateODBCDate(#DateFormat("#Form.festdate#",
"dd/mm/yy")#)#

and the date 26/05/01 became 05/01/26!!

Now I'm really confused, and whilst I'm sure one of you guys will take one
look at this and sort it out, I am completely stumped.

Regards,

Will Swain
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Dates suddenly formatting incorrectly.

2001-04-20 Thread Tony Schreiber

My DTBoxes tag will create the form elements on the page and Ken Beards
AssembleDT will create valid date/time objects on the following page:

http://www.tbcfug.org/index.cfm?fuseaction=files.detailsfile_id=29

 The most reliable way of capturing dates correctly on a form is to have 3
 select boxes, (day/month/year) with appropiate values in each one.
 
 Then when the user submits use createdate(form.year,form.month,form.day) to
 create an unambiguous (is that a word) date stamp.
 
 Its normally a good idea to put that in cftry/cfcatch to catch invalid
 dates entered (e.g. 30/02/01)
 
 If you use createodbcdate() on that, then the data in db is correct.
 
 You can then use dateformat() to display it how you want...
 
 -Original Message-
 From: Will Swain [mailto:[EMAIL PROTECTED]]
 Sent: 20 April 2001 11:47
 To: CF-Talk
 Subject: FW: Dates suddenly formatting incorrectly.
 
 
 
 Hi all,
 
 Strange one this, it has me totally perplexed on this Friday morning.
 
 I have several sites which have events pages. The site admin can upload
 details of new events, including their dates. This all worked fine until
 yesterday, when two of them started acting strangely, like so:
 
 User inputs date: 26/05/01
 Date as shown in Access2000: 01/05/26
 
 For some reason it seems to be swapping around the day and year. The date
 field is a short date.
 
 This is the code for uploading the date:
 
 cfif IsDefined("Form.festdate")
 
   cfset festdate = #CreateODBCDate(Form.festdate)#
 
 /cfif
 
 
 !DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
 
 cfquery name="addfest" datasource="#datasourcename#"
 INSERT INTO tblfestticks (production, festdate, notes)
 VALUES (#Form.production#, #festdate#, '#Form.notes#');
 /cfquery
 
 So, I tried changing the date line to this:
 
 cfset festdate = #CreateODBCDate(#DateFormat("#Form.festdate#",
 "dd/mm/yy")#)#
 
 and the date 26/05/01 became 05/01/26!!
 
 Now I'm really confused, and whilst I'm sure one of you guys will take one
 look at this and sort it out, I am completely stumped.
 
 Regards,
 
 Will Swain

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Fw: looking for a crystal/cf guy

2001-04-20 Thread Brian Thornton

Apologize guys, this is only a remote opportunity for a individual familiar with 
working remotely via PCA or VNC.
- Original Message - 
From: Brian Thornton 
To: [EMAIL PROTECTED] 
Sent: Friday, April 20, 2001 1:44 AM
Subject: looking for a crystal/cf guy


We have a need for a remote Crystal Guy to develop Crystal Reports as part of our 
intranet... Please email me at [EMAIL PROTECTED] for more info...

Brian Thornton
702.341.0864 or 702.310.1010 x3050 


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



OLEDB

2001-04-20 Thread Kay Smoljak

Hi all,

I am trying to set up an Access database using OLEDB. I don't know what to
put in the "Provider" box, and the datasource won't verify. I am using MDAC
as a provider. The docs are very vauge on OLEDB.

Anyone have any ideas?

Thanks,
Kay.
__
Kay Smoljak - ColdFusion Developer - PerthWeb Pty Ltd
Internet Solutions for your business!

Level 9/105 St George's Tc - Perth - Western Australia
Ph: (08) 9226 1366 Fax: (08) 9226 1375 Mobile : 0419 949 007
Visit Perth online! : www.perthweb.com.au

Tools for Developers including CFX tags: http://developer.perthweb.com.au


Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Friendly e-mail addresses

2001-04-20 Thread Aidan Whitehall

ColdFusion Server Version 4, 0, 1, 0 Professional and Outlook 2000 as an
e-mail client.

===
http://www.thenetprofits.co.uk/coldfusion/faq/index.cfm#answer55
How do I make a CFMAIL display "friendly" e-mail addresses?

CFMAIL
   FROM="[EMAIL PROTECTED] (John Smith)"
   TO="[EMAIL PROTECTED] (List Members)"
   SUBJECT="List Mailing"Your e-mail here/CFMAIL
===

I'm doing what's described above not getting the "friendly" e-mail address I
was expecting... just the full FROM and TO e-mail addresses. Anyone got an
idea what I'm doing wrong?



Thanks

-- 
Aidan Whitehall [EMAIL PROTECTED]
Netshopperuk
Telephone +44 (01744) 648650

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Forging HTTP headers

2001-04-20 Thread Aidan Whitehall

 using netcat or telnet, pass a raw HTTP request like the following:
 User-Agent: n30/browser
 Host: www.speeddy3d.com
 Referer: http://www.speeddy3d.com/cgi-bin/news/news.cgi
 GET /cgi-bin/news/news.cgi?addAuthor HTTP/1.0

K, thanks.

Is it possible to then redirect the server's response to a browser, or is
this doable from within a browser?

I'm trying to simulate the scenario when someone saves an online form to
their hard drive, alters a hidden form field containing the price someone
should pay, reloads the local form in their browser, falsifies the
cgi.HTTP_REFERER value and resubmits the form.

The ability to benefit from forging the price will only be realised if they
can then purchase the item at the new, falsified price.


-- 
Aidan Whitehall [EMAIL PROTECTED]
Netshopperuk
Telephone +44 (01744) 648650

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: javascript question

2001-04-20 Thread Lonny Eckert

If I understand you correctly, you are attempting to run functions in the
parent window from a popup window?  If so use:
window.opener.functionInMainWindow();

I've attached a code snippet from a popup window.  The function SubmitIt()
is a function from the parent window.  FWIW, this was done to preclude
double submissions via the browser back button (popup window not added to
browser history).

Hope this helps.


Lonny Eckert
Hesta Corporation
[EMAIL PROTECTED]
Hesta 610-230-2500 x147


**
script language="JavaScript1.2"
!-- HIDE SCRIPT FROM OLDER BROWSERS.
document.write("h3Dont Close This/h3");
cfif (#pendingExist.RecordCount# gt 0) AND (#pendingExist.process_mode# IS
"Process") AND (#pendingExist.run_type# IS "Automated")
if ("cfoutput#URL.process_mode#/cfoutput" == "Process") {

x = (confirm("The parameters you entered have already been scheduled to run
automatically this month.  Clicking OK will use the process log that was
already established for the automated run.  Clicking CANCEL will stop manual
processing of this month's data."));
if (!x) {
this.close();
}
else {
//  alert("A");
//  alert (window.name);
window.opener.SubmitIt();
this.close();
}
}
else {
//alert("B");
window.opener.SubmitIt();
this.close();
}
cfelse
//alert("C");
window.opener.SubmitIt();
this.close();
/cfif

// END OF HIDE SCRIPT FROM OLDER BROWSERS. --
/script

-Original Message-
From: Bruce, Rodney [mailto:[EMAIL PROTECTED]]
Sent: Thursday, April 19, 2001 5:33 PM
To: CF-Talk
Subject: ot: javascript question



I am having a problem with running javascript on in a second(popup) window.

from the calling page I use:

Script
windnow.open("file.cfm");
/Script

when the page first opens everything works fine,  but when I call a function
to rewrite the page, the next time I try to call any function, I get the
error message that its undefined.

sample:


Var 1;
Var 2;


function outsidefunction(){
Take new value and window.close;
}



MainFunction();

function MainFunction(){

var 3;
var 4;

function subfunction1(){
}

function subfunction2();{
}


subfunction2();
subfunction1();

more lines of code;

outsidefunction();

}


if I call the outside function first it works fine, but if I call one of the
subfunctions first,
the subfunction will work the first time,  but then any function call get
the undefined error.

Help please
Thanks
Rodney
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Forging HTTP headers

2001-04-20 Thread Thomas Chiverton

 I'm trying to simulate the scenario when someone saves an 
 online form to
 their hard drive, alters a hidden form field containing the 
 price someone
 should pay, reloads the local form in their browser, falsifies the
 cgi.HTTP_REFERER value and resubmits the form.

It depends if the server keeps state, if not, its trival to POST the form
back, with the altered elements, via telnet.

Of course, anyone using a hidden form field to hold confidential/sensitive
info like the price or credit card details should be shot, and their
authoring tools taken away, just in case they come back to life. We have
session variables that are held server side for holding info like that.


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Friendly e-mail addresses

2001-04-20 Thread Philip Arnold - ASP

 ColdFusion Server Version 4, 0, 1, 0 Professional and Outlook 2000 as an
 e-mail client.

 ===
 http://www.thenetprofits.co.uk/coldfusion/faq/index.cfm#answer55
 How do I make a CFMAIL display "friendly" e-mail addresses?

 CFMAIL
FROM="[EMAIL PROTECTED] (John Smith)"
TO="[EMAIL PROTECTED] (List Members)"
SUBJECT="List Mailing"Your e-mail here/CFMAIL
 ===

 I'm doing what's described above not getting the "friendly"
 e-mail address I was expecting... just the full FROM and TO
 e-mail addresses. Anyone got an idea what I'm doing wrong?

The problem with this is that different email clients treat the email
addresses differently

As a general rule though (and this won't work 100%)
FROM="John Smith [EMAIL PROTECTED]"
should work, but you may have to put quotes around the name...
FROM="""John Smith"" [EMAIL PROTECTED]"

Philip Arnold
Director
Certified ColdFusion Developer
ASP Multimedia Limited
T: +44 (0)20 8680 1133

"Websites for the real world"

**
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager.
**



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Friendly e-mail addresses

2001-04-20 Thread Mark Woods

If you enter the email addresses inside angle brackets, the server should 
interpret anything else as a comment. So...

CFMAIL
FROM="""John Smith""[EMAIL PROTECTED]"
etc. should do it

(BTW, that should is there for a reason - no guarantee this will always work)


Mark


At 01:29 PM 4/20/2001, you wrote:
ColdFusion Server Version 4, 0, 1, 0 Professional and Outlook 2000 as an
e-mail client.

===
http://www.thenetprofits.co.uk/coldfusion/faq/index.cfm#answer55
How do I make a CFMAIL display "friendly" e-mail addresses?

CFMAIL
FROM="[EMAIL PROTECTED] (John Smith)"
TO="[EMAIL PROTECTED] (List Members)"
SUBJECT="List Mailing"Your e-mail here/CFMAIL
===

I'm doing what's described above not getting the "friendly" e-mail address I
was expecting... just the full FROM and TO e-mail addresses. Anyone got an
idea what I'm doing wrong?



Thanks

--
Aidan Whitehall [EMAIL PROTECTED]
Netshopperuk
Telephone +44 (01744) 648650


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Forging HTTP headers

2001-04-20 Thread savan . thongvanh


how do you get the info to the session variable w/o the form?




Thomas Chiverton [EMAIL PROTECTED] on 04/20/2001 07:51:38 AM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  RE: Forging HTTP headers


 I'm trying to simulate the scenario when someone saves an
 online form to
 their hard drive, alters a hidden form field containing the
 price someone
 should pay, reloads the local form in their browser, falsifies the
 cgi.HTTP_REFERER value and resubmits the form.

It depends if the server keeps state, if not, its trival to POST the form
back, with the altered elements, via telnet.

Of course, anyone using a hidden form field to hold confidential/sensitive
info like the price or credit card details should be shot, and their
authoring tools taken away, just in case they come back to life. We have
session variables that are held server side for holding info like that.
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Tables on the fly

2001-04-20 Thread William J Wheatley

Ok i remember this being talked about a few months back but i cant find it
in the archives.

Whats the command you put in the Table structures for HTML ot make a TABLE
display on the fly?
You have to give it the command so it does not have to calculate on its own?

Thanks!


Bill Wheatley
Director of Development
AEPS INC
Allaire ColdFusion Consulting Partner
Allaire Certified ColdFusion Developer
http://www.aeps.com
ICQ: 417645
954-472-6684 X303

IMPORTANT NOTICE:
This e-mail and any attachment to it is intended only to be read or used by
the named addressee.  It is confidential and may contain legally privileged
information.  No confidentiality or privilege is waived or lost by any
mistaken transmission to you.  If you receive this e-mail in error, please
immediately delete it from your system and notify the sender.  You must not
disclose, copy or use any part of this e-mail if you are not the intended
recipient.  The RTA is not responsible for any unauthorized alterations to
this e-mail or attachment to it


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Forging HTTP headers

2001-04-20 Thread Thomas Chiverton

 how do you get the info to the session variable w/o the form?

If you asking how you store things like the price, then:

generate form
session.price=#price#
session.ID=generateGUID()
[output from, hidden field contating session.id]

action page for form
if form.id eq session.id
 price=session.price
 [take other actions, place order etc.]
else
 crash and burn
fi

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Client State Management? what storage method?

2001-04-20 Thread Paul Ihrig

Quick question.
how do you store your client variables?
in a bd, registry or cookie

i am just starting a redesign  lay out to our intranet./
since ldap seems to be out of reach do to 2 servers with the same name, i am
looking into using client management.

having fun playing with all the code out there!
ok, so i have this picture board app that i can have users auth into.

should i use the same phone/picboard db to store my client info?

pros/cons,  all suggestions greatly appreciated!

thank you!

-paul

Web Developer, NBBJ
Work:   [EMAIL PROTECTED]
614 241-3534
fax:614 485-5534

Home:   [EMAIL PROTECTED]
614 449-1681

icq:47658358

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Dates suddenly formatting incorrectly.

2001-04-20 Thread Will Swain

Absolutely agree, and to be honest thats what I do now. But this is code
written by another agency, and I would prefer to not have to re write it.
Infact, on one of the sites, that's exactly how I have done the dates. I
just don't get why it's suddenly started happening, and thats what is really
perplexing me.

Cheers

Will

-Original Message-
From: Tony Schreiber [mailto:[EMAIL PROTECTED]]
Sent: 20 April 2001 13:02
To: CF-Talk
Subject: RE: Dates suddenly formatting incorrectly.


My DTBoxes tag will create the form elements on the page and Ken Beards
AssembleDT will create valid date/time objects on the following page:

http://www.tbcfug.org/index.cfm?fuseaction=files.detailsfile_id=29

 The most reliable way of capturing dates correctly on a form is to have 3
 select boxes, (day/month/year) with appropiate values in each one.

 Then when the user submits use createdate(form.year,form.month,form.day)
to
 create an unambiguous (is that a word) date stamp.

 Its normally a good idea to put that in cftry/cfcatch to catch invalid
 dates entered (e.g. 30/02/01)

 If you use createodbcdate() on that, then the data in db is correct.

 You can then use dateformat() to display it how you want...

 -Original Message-
 From: Will Swain [mailto:[EMAIL PROTECTED]]
 Sent: 20 April 2001 11:47
 To: CF-Talk
 Subject: FW: Dates suddenly formatting incorrectly.



 Hi all,

 Strange one this, it has me totally perplexed on this Friday morning.

 I have several sites which have events pages. The site admin can upload
 details of new events, including their dates. This all worked fine until
 yesterday, when two of them started acting strangely, like so:

 User inputs date: 26/05/01
 Date as shown in Access2000: 01/05/26

 For some reason it seems to be swapping around the day and year. The date
 field is a short date.

 This is the code for uploading the date:

 cfif IsDefined("Form.festdate")

   cfset festdate = #CreateODBCDate(Form.festdate)#

 /cfif


 !DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"

 cfquery name="addfest" datasource="#datasourcename#"
 INSERT INTO tblfestticks (production, festdate, notes)
 VALUES (#Form.production#, #festdate#, '#Form.notes#');
 /cfquery

 So, I tried changing the date line to this:

 cfset festdate = #CreateODBCDate(#DateFormat("#Form.festdate#",
 "dd/mm/yy")#)#

 and the date 26/05/01 became 05/01/26!!

 Now I'm really confused, and whilst I'm sure one of you guys will take one
 look at this and sort it out, I am completely stumped.

 Regards,

 Will Swain

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Newbie question -- Dynamic form processing

2001-04-20 Thread Melissa Fraher

Thank you Clint and Rodney for your answers!

Melissa

"Bruce, Rodney" wrote:

 Melissa

 I haven't seen an answer back to you yet, so here is one possibly way.
 IF (assuming here) you are displaying all items for sale, with a text box to
 enter number of each item customer wants to buy: i.e (123, Shovels,
 garden,  []) (side comment you may want to display price):

 !--small change here, I would set default to 0(ZERO), for control and add a
 hidden to pass idnumber ---
 INPUT type="text" name="Item_#equipment.id#" SIZE="5" WIDTH="10" value="0"
 CLASS="monospace"

 INPUT type="hidden" name="Itemid_#equipment.id# value="#equipment.id#

 sample code for ACTION PAGE:

 CFQUERY name="equipment" datasource="DSN"
 SELECT  ID
 FROM Equipment
 ORDER BY  ID
 /CFQUERY

 CFOUTPUT query="equipment"
 CFSET quanity = "#EVALUATE("item_#equipment.id#")#"
 CFSET idnum = "#EVALUATE("itemid_#equipment.id#")#"
 CFIF quanity GT 0
 CFSET soldequipment= #quanity#
 CFSET eqiuipmentid = #idnum#
 /CFIF
 /CFOUTPUT

 This will get you the to vars for use on your action page,  you can expand
 on this to pass other vars you would want to work with.
 you might want to look at using a CFLOOP index instead of the id from the
 query.

 let me know if this helps, if someone has given you a better way, please let
 me know.  I have been working with this type of thing for awhile now and
 haven't gotten very far myself.

 -Original Message-
 From: Melissa Fraher [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, April 18, 2001 1:32 PM
 To: CF-Talk
 Subject: Newbie question -- Dynamic form processing

 Hello everyone.
 How do you handle processing dynamic forms?

 Here is my example code:

 CFQUERY name="equipment" datasource="DSN"
 SELECT  ID, Category, Item
 FROM Equipment
 ORDER BY  ID
 /CFQUERY

 HTML
 BODY

 FORM METHOD="post" action="ActionPage.cfm" 

 TABLE

   TR
  TD CLASS="title" WIDTH="141" HEIGHT="13"ID/TD
  TD CLASS="title" WIDTH="141" HEIGHT="13"Category/TD
  TD CLASS="title" WIDTH="248" HEIGHT="13"Item/TD
  TD CLASS="title" WIDTH="91" HEIGHT="13"Quantity
 /TD
   /TR

 CFOUTPUT query="equipment"
 TR
  TD CLASS="text" HEIGHT="5"#equipment.ID#/TD
  TD CLASS="text" HEIGHT="5"#equipment.category#/TD
  TD CLASS="text" HEIGHT="5"#equipment.item#/TD
  TD CLASS="text" HEIGHT="5"

  INPUT type="text" name="Item_#id#" SIZE="5" WIDTH="10" value=""
 CLASS="monospace"

  /TD
 /TR
 /CFOUTPUT

 /FORM
 /BODY
 /HTML

 This code will generate a form with over 150 text boxes.  The user
 should be able to order more than one item.

 Any suggestions on a clever way to process this form would be greatly
 appreciated.

 I would hate to hard code Item_1, Item_2, Item_3.Item_150.

 Thanks in advance.

 Melisas


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



CF Express

2001-04-20 Thread Allan Pichler

Does CF Express work with SQL server ?  

The following is from the documentation on CF Express:

ColdFusion Express, as with other editions of ColdFusion, supports any ODBC database. 
However, the Express installation process installs the following drivers, which we 
know to work well with ColdFusion: 

Windows: Microsoft drivers are supplied for Access, FoxPro, Visual FoxPro, Excel, 
Filemaker Pro ODBC, and text data sources. 

Does this mean that it'll work with SQL server as long as an odbc driver is available 
..

Any input would be appreciated!

Allan

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Client State Management? what storage method?

2001-04-20 Thread Dan G. Switzer, II

Paul,

First thing, go to the CF Administrator and go to Server  Variables. If
you're going to be using any datasources for client vars, here's where you'd
register them. You can also change the default storage mechanism for client
vars.

The next step would be to use the CLIENTSTORAGE attribute of the
CFAPPLICATION tag if you want to use something other than the default
storage setting.

http://webdev.oar.net/cfdocs/CFML_Language_Reference/2_ColdFusion_Tags/lr2_0
17.htm#1967438

--snippet from docs--
CLIENTSTORAGE
Optional. Specifies the mechanism for storing client variables:

o datasourcename -- ColdFusion stores client variables in the
specified ODBC or native data source. To use
this option you must create a client variable
storage repository using the Variables page of
the ColdFusion Administrator.
o Registry --   ColdFusion stores client variables in the system
registry. This is the default.
o Cookie -- ColdFusion stores client variables on the client
machine in a cookie. Storing client data in a
cookie is scalable to large numbers of clients,
but this storage mechanism has some limitations.
Chief among them is that if the client turns off
cookies in the browser, client variables won't work.
--snippet from docs--

-Dan

 -Original Message-
 From: Paul Ihrig [mailto:[EMAIL PROTECTED]]
 Sent: Friday, April 20, 2001 9:28 AM
 To: CF-Talk
 Subject: Client State Management? what storage method?


 Quick question.
 how do you store your client variables?
 in a bd, registry or cookie

 i am just starting a redesign  lay out to our intranet./
 since ldap seems to be out of reach do to 2 servers with the same
 name, i am
 looking into using client management.

 having fun playing with all the code out there!
 ok, so i have this picture board app that i can have users auth into.

 should i use the same phone/picboard db to store my client info?

 pros/cons,  all suggestions greatly appreciated!

 thank you!

 -paul

 Web Developer, NBBJ
 Work: [EMAIL PROTECTED]
   614 241-3534
 fax:  614 485-5534

 Home: [EMAIL PROTECTED]
   614 449-1681

 icq:  47658358


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Advanced CF5 Bootcamp format

2001-04-20 Thread JoshMEagle

The second format would go over better with the finance office (at least
ours) I believe. Most of our developers would be willing to pay their own
dinner just to get to attend.

Lodging is not included in this is it? Perhaps with early registration you'd
give us a room at the Super8 or something?

Joshua Miller
Web Development
Eagle Technologies Group
Technology Solutions for the Next Generation
www.eagletgi.com
[EMAIL PROTECTED]

-Original Message-
From: Adam Phillip Churvis [mailto:[EMAIL PROTECTED]]
Sent: Thursday, April 19, 2001 2:03 PM
To: CF-Talk
Subject: Re: Advanced CF5 Bootcamp format


Scholarship plan, huh...?  Now that's an idea!

Actually, you can probably get a signature loan for a small amount like that
at your local bank with just proof of employment.

But which of the two formats I mentioned would you prefer?  And most
importantly, why?

I want to make this course what people seeking to become truly advanced
developers really want.  I really am taking your input seriously.

Respectfully,

Adam Phillip Churvis
Productivity Enhancement, Inc.

http://www.ColdFusionTraining.com
http://www.ColdFusionSeminars.com
http://www.CommerceBlocks.com

E-mail:  [EMAIL PROTECTED]
Phone:   770-446-8866


 Wow! I'd love to attend ... got a scholarship plan? That's a boatload of
 money for the training. I'm sure it's worth it, but OUCH!!!

 How about the $1500 and we pack our own breakfast/lunch plan? Can we get a
 volume discount by taking the Bootcamp class and Fusebox class and
sleeping
 in the parking lot?

 THANKS!

 Joshua Miller
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: 4.5 Certification

2001-04-20 Thread Ben Forta

Actually, the current Study Guide already   covers most of the material in the
revised test (except for CF5 features, of course). I have not yet decided
whether I'll revise the book or not, I need to work out exactly how much of
it will change (the CF5 test is not done yet). If it is not enough to
warrant a new book I'll post electronic chapter updates online.

--- Ben


-Original Message-
From: C. Hatton Humphrey [mailto:[EMAIL PROTECTED]]
Sent: Thursday, April 19, 2001 9:18 PM
To: CF-Talk
Subject: RE: 4.5 Certification


A bit on the side I guess, but since 5.0 is coming out, is there going to be
a separate study guide for that version?  I've been given the green light by
my company to start studying for the test... but which book's going to be
the one to study if I'm not planning on taking the test for another 6 months
or so?

Hatton

-Original Message-
From: Ben Forta [mailto:[EMAIL PROTECTED]]
Sent: Thursday, April 19, 2001 7:48 PM
To: CF-Talk
Subject: RE: 4.5 Certification


Terry,

Congrats on passing the test, and I am glad the book helped. Part of the
reason that some of those topics were not covered is that there are actually
two different test, you got one set of questions, but there is another whole
set.

Also, FYI, when the test is revised for CF5 some of the topics not covered
will be included.

Again, congrats!

--- Ben


-Original Message-
From: Terry Bader [mailto:[EMAIL PROTECTED]]
Sent: Thursday, April 19, 2001 5:33 PM
To: CF-Talk
Subject: 4.5 Certification


just wanted to express some knowledge about the exam  which I just
passed...   =^)
my stats: 45 mins, 75% score...  not bad, will shoot for 85-90% on the 5.0
one when it comes out...

but what I just wanted to share was some of the stuff that was or really
what WASN'T on the exam

first off, I spotted about 8-10 questions that I would have hesitated on
more if I hadn't gone through Ben's Cert Study guide... So 8-10 questions on
a 61 question test is a big difference  and it reinforced other issues
as well...
However, if you are only interested in the book to pass the exam, then
concentrate on Chapters 1-25 and Chapters 32, 35 (only the stored procedures
area)...

I was slightly surprised that the I didn't see one cfobject, cfexecute,
wddx, verity, cfmail or any SQL harder then the keyword HAVING  guess
they cant all be impossibly hard...

but don't get me wrong, you do have to know your stuff...  some of the
questions were tricky and try to trip ya up...  I just wish I could get a
printout of the ones I did missed...  oh well

does anyone know if their are any other Allaire certifications beyond the
developer level available?



so I guess im going to Disney World now

=^)

p.s. do I get any goodies from Allaire for being certifiable?? hehe...


Terry Bader
IT/Web Specialist
Certified CF 4.5 Developer
EDO Corp - Combat Systems
(757) 424-1004 ext 361 - Work
[EMAIL PROTECTED]


(757)581-5981 - Mobile
[EMAIL PROTECTED]
icq: 5202487   aim: lv2bounce
http://www.cs.odu.edu/~bader
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



189,000K memory use - Way too high for CFAS 4.5.1?

2001-04-20 Thread Paul Sinclair

My memory useage for CFAS 4.5.1. SP2 slowly creeps up to about 189,000K (per
NT Server 4.0, SP6a Task Manager reading) and levels out there. I know that
the SmartHeap function in CFAS is not releasing memory back to the system on
the notion that CFAS will need it again. But I am wondering if 189,000K is
abnormally high? Should I look at my applications to see if there is
something causing excessive memory use or is this within reasonable bounds?

Thanks,
Paul Sinclair



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Forging HTTP headers

2001-04-20 Thread savan . thongvanh


thinking more along the lines of CC #'s




Thomas Chiverton [EMAIL PROTECTED] on 04/20/2001 08:27:50 AM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  RE: Forging HTTP headers


 how do you get the info to the session variable w/o the form?

If you asking how you store things like the price, then:

generate form
session.price=#price#
session.ID=generateGUID()
[output from, hidden field contating session.id]

action page for form
if form.id eq session.id
 price=session.price
 [take other actions, place order etc.]
else
 crash and burn
fi
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Cold Fusion Magazine? Any Good?

2001-04-20 Thread Jeff Fongemie

Hello cf-talk,

  I've seen the Cold Fusion magazine website "Cold Fusion Developers
  Journal" on the web.

  Is the magazine any good? I'm thinking of getting a subscription,
  but have never seen one. Fairly expensive magazine!


Best regards,
 Jeff Fongemie  mailto:[EMAIL PROTECTED]
 
Internet Guns For Hire
(603) 356-0768



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



New File Extension....

2001-04-20 Thread Neil Clark

Anyone know how to set up their Web server (in this case IIS 4 and 5) to
accept any file with the extension .xxx and then pass it to the CF server
for processing as if it was anyother .cfm file?

I have had a few replies from good sources from other sources indication
that this is easy, but I am unsure on how to go about it; any one give me
the instructions for a test?

Neil

!-
Neil Clark
Senior Web Applications Engineer
Spectra / CF / XML
MCB Digital
Premier Allaire [Macromedia] Partner
Tel: 020 8941 3232
Fax: 020 8941 4333
e-mail: [EMAIL PROTECTED]



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Sniffing WAP Browsers...

2001-04-20 Thread Tony Schreiber

For all the WAP resources out there, I've been finding remarkably little
content. I just finished building my first app last night (an inventory
lookup) and am now wandering in the dark about how to sniff out WAP
browsers - or more accurately, redirect NON-WAP browsers away from that
page. Links?


Tony Schreiber, Senior Partner  Man and Machine, Limited
mailto:[EMAIL PROTECTED]   http://www.technocraft.com

http://www.simplemessageboard.com ___Free Forum Software for Cold Fusion
http://www.is300.net ___The Enthusiast's Home of the Lexus IS300
http://www.digitacamera.com __DigitA Camera Scripts and Tips
http://www.linklabexchange.com _Miata Link ECU Data Exchange


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Friendly e-mail addresses

2001-04-20 Thread Aidan Whitehall

Thanks both. The e-mails don't seem to be getting sent using the format you
suggested:

CFMAIL
FROM="""John Smith""[EMAIL PROTECTED]"...

but seems to work with this

CFMAIL
FROM="John Smith [EMAIL PROTECTED]"...

I'll play around with the format and root around the badmail folder... see
what works best.



Thanks again.

-- 
Aidan Whitehall [EMAIL PROTECTED]
Netshopperuk
Telephone +44 (01744) 648650

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



studio upgrade

2001-04-20 Thread Greg Jordan

Does anyone know if CFStudio will be released in a 5.0 version? If so, does
anyone know what features will added, changed, etc?

Thanks.


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Cold Fusion Magazine? Any Good?

2001-04-20 Thread G

It is a bit pricey, but worth it, IMHO.  You'll find articles that run the
gamut, from novice to advanced, from programming tips to utilizing advanced
CF features.  What I particularly like about it, is that it doesn't remain
bogged down in CF particulars, but contains articles that deal with other
languages and technologies (always with a CF tint of course). If your
primary development environment is Cold Fusion, I'd highly recommend the
CFDJ.

Brian
- Original Message -
From: "Jeff Fongemie" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Friday, April 20, 2001 9:05 AM
Subject: Cold Fusion Magazine? Any Good?


 Hello cf-talk,

   I've seen the Cold Fusion magazine website "Cold Fusion Developers
   Journal" on the web.

   Is the magazine any good? I'm thinking of getting a subscription,
   but have never seen one. Fairly expensive magazine!


 Best regards,
  Jeff Fongemie  mailto:[EMAIL PROTECTED]
 
 Internet Guns For Hire
 (603) 356-0768




~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Strange CFHTTP Problem

2001-04-20 Thread cf_talk

Hi all,

I've got a strange problem going on here with using cfhttp tag.

Environment is NT4.0 IIS4 CF4.51 (Allow anon users disabled - Windows
Challenge/Response) I've also tried on Win2k IIS5 with same problem
arising.

I keep getting an "Access denied" message (cfhttp.filecontent) and was
wondering what exact permissions settings I should have to fix this.
I've tried allowing access to the relevant directories and even changed
the user under which CF Server runs

I've already tried passing valid NT account details in the username and
password attributes of the tag. No proxy is involved here as the cfhttp
is calling a script residing on the same site and server. CFServer is
running under the system account.

Any ideas or suggestions most welcome.

Dave

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Cold Fusion Magazine? Any Good?

2001-04-20 Thread Greg Jordan

Jeff

I'll put it this way regarding CFDJ: It cost me less than $200.00 for a two
year subscription, but I have learned more than $200.00 worth of coding
examples, tips and received different perspectives on the same issues I am
dealing with...

Also, check out one of their site at http://www.sys-con.com/coldfusion/ and
you can judge for yourself... they also have a very good mailing list at
http://www.sys-con.com/coldfusion/list.cfm



-Original Message-
From: Jeff Fongemie [mailto:[EMAIL PROTECTED]]
Sent: Friday, April 20, 2001 9:06 AM
To: CF-Talk
Subject: Cold Fusion Magazine? Any Good?


Hello cf-talk,

  I've seen the Cold Fusion magazine website "Cold Fusion Developers
  Journal" on the web.

  Is the magazine any good? I'm thinking of getting a subscription,
  but have never seen one. Fairly expensive magazine!


Best regards,
 Jeff Fongemie  mailto:[EMAIL PROTECTED]

Internet Guns For Hire
(603) 356-0768
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Sniffing WAP Browsers...

2001-04-20 Thread Dylan Bromby

sniff for the WAP MIME type in the browser's HTTP_ACCEPT string.

-Original Message-
From: Tony Schreiber [mailto:[EMAIL PROTECTED]]
Sent: Friday, April 20, 2001 7:14 AM
To: CF-Talk
Subject: Sniffing WAP Browsers...


For all the WAP resources out there, I've been finding remarkably little
content. I just finished building my first app last night (an inventory
lookup) and am now wandering in the dark about how to sniff out WAP
browsers - or more accurately, redirect NON-WAP browsers away from that
page. Links?


Tony Schreiber, Senior Partner  Man and Machine, Limited
mailto:[EMAIL PROTECTED]   http://www.technocraft.com

http://www.simplemessageboard.com ___Free Forum Software for Cold Fusion
http://www.is300.net ___The Enthusiast's Home of the Lexus IS300
http://www.digitacamera.com __DigitA Camera Scripts and Tips
http://www.linklabexchange.com _Miata Link ECU Data Exchange
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Friendly e-mail addresses

2001-04-20 Thread Dylan Bromby

i don't think that will work. however, i use this all the time and it works
perfectly:

FROM="John Smith[EMAIL PROTECTED]"

-Original Message-
From: Mark Woods [mailto:[EMAIL PROTECTED]]
Sent: Friday, April 20, 2001 5:59 AM
To: CF-Talk
Subject: Re: "Friendly" e-mail addresses


If you enter the email addresses inside angle brackets, the server should
interpret anything else as a comment. So...

CFMAIL
FROM="""John Smith""[EMAIL PROTECTED]"
etc. should do it

(BTW, that should is there for a reason - no guarantee this will always
work)


Mark


At 01:29 PM 4/20/2001, you wrote:
ColdFusion Server Version 4, 0, 1, 0 Professional and Outlook 2000 as an
e-mail client.

===
http://www.thenetprofits.co.uk/coldfusion/faq/index.cfm#answer55
How do I make a CFMAIL display "friendly" e-mail addresses?

CFMAIL
FROM="[EMAIL PROTECTED] (John Smith)"
TO="[EMAIL PROTECTED] (List Members)"
SUBJECT="List Mailing"Your e-mail here/CFMAIL
===

I'm doing what's described above not getting the "friendly" e-mail address
I
was expecting... just the full FROM and TO e-mail addresses. Anyone got an
idea what I'm doing wrong?



Thanks

--
Aidan Whitehall [EMAIL PROTECTED]
Netshopperuk
Telephone +44 (01744) 648650


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Query in between dates

2001-04-20 Thread Peter Benoit

Hi,

I know I've seen this but I cannot figure out what I'm doing wrong.

I have an Access Database with a field named outageDate which is a Date/Time
field.  I want to produce a report built off a query of dates between
certain dates.

what I have is :

cfquery name="dayData" datasource="#DSN#"
   SELECT *
   FROM outageReport
   WHERE outageDate = #then#
   AND outageDate = #now#
/cfquery

Which doesn't work.  The dates in my Database look like: 05/10/2001, #then#
and #now# look the same.  There is no error, just nothing returned even
though I have records which should return.

I'm confused!

Pete 


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: New File Extension....

2001-04-20 Thread Gavin Lilley

Okay in iis it is easy...

In the IIS config (or the mmc console in NT) goto the home directory tab and
click Application Configuration. Either change the .cfm to .xxx or create a new
mapping with the same properties.

You might also wish to se the default document.

--
Gavin Lilley
Internet / Intranet Developer
http://halesowen.ac.uk

-Original Message-
From: Neil Clark [mailto:[EMAIL PROTECTED]]
Sent: 20 April 2001 15:22
To: CF-Talk
Subject: New File Extension


Anyone know how to set up their Web server (in this case IIS 4 and 5) to
accept any file with the extension .xxx and then pass it to the CF server
for processing as if it was anyother .cfm file?

I have had a few replies from good sources from other sources indication
that this is easy, but I am unsure on how to go about it; any one give me
the instructions for a test?

Neil

!-
Neil Clark
Senior Web Applications Engineer
Spectra / CF / XML
MCB Digital
Premier Allaire [Macromedia] Partner
Tel: 020 8941 3232
Fax: 020 8941 4333
e-mail: [EMAIL PROTECTED]

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Cold Fusion Magazine? Any Good?

2001-04-20 Thread Benjamin S. Rogers

It is marginal.

There are a couple of really good writers/ColdFusion developers whose
articles routinely grace the magazine. However, much of the articles are
nothing but promotional pieces for software products written by the vendors
of those products.

There are often egregious errors such as missing examples or pictures that
appear 10 to pages away from the article. The layout, in general, is not the
clean, organized design you'd expect from a printed publication but, rather,
the chaotic, half-hearted attempt you'd expect from a Web site. Have a look
at the Web site and you'll get an idea of what I mean.

I signed up awhile back and have been the recipient of their spam ever
since. The content of the messages are not ColdFusion related, but pertain
to their other publications and the products/technologies show cased in
them.

Oddly enough, I've tried to join the ColdFusion mailing list that they
maintain several times. The first time, I was able to participate for a
month or so, but my e-mail address was dropped (I guess). I've not been able
to re-subscribe as the list subscription mechanism on their site doesn't
seem to work properly. Doesn't stop them from sending an advertisement to my
e-mail account every month asking me to join the list. :P

Oh well, my recommendation would be to just read the good articles on-line.
The site is atrocious to navigate, but there are some gems in the content
now and again.

Benjamin S. Rogers
Web Developer, c4.net
Voice: (508) 240-0051
Fax: (508) 240-0057




-Original Message-
From: Jeff Fongemie [mailto:[EMAIL PROTECTED]]
Sent: Friday, April 20, 2001 10:06 AM
To: CF-Talk
Subject: Cold Fusion Magazine? Any Good?


Hello cf-talk,

  I've seen the Cold Fusion magazine website "Cold Fusion Developers
  Journal" on the web.

  Is the magazine any good? I'm thinking of getting a subscription,
  but have never seen one. Fairly expensive magazine!


Best regards,
 Jeff Fongemie  mailto:[EMAIL PROTECTED]

Internet Guns For Hire
(603) 356-0768
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: New File Extension....

2001-04-20 Thread Bryan LaPlante

go to your IIS management console in NT4 it's under the option pack menu and
W2k it's in the computer manager. Right click on the web site in question
and go to properties and them to the home directory tab.
Click on configure and you will see the extensions in there.

Bryan

- Original Message -
From: "Neil Clark" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Friday, April 20, 2001 9:22 AM
Subject: New File Extension


 Anyone know how to set up their Web server (in this case IIS 4 and 5) to
 accept any file with the extension .xxx and then pass it to the CF server
 for processing as if it was anyother .cfm file?

 I have had a few replies from good sources from other sources indication
 that this is easy, but I am unsure on how to go about it; any one give me
 the instructions for a test?

 Neil

 !-
 Neil Clark
 Senior Web Applications Engineer
 Spectra / CF / XML
 MCB Digital
 Premier Allaire [Macromedia] Partner
 Tel: 020 8941 3232
 Fax: 020 8941 4333
 e-mail: [EMAIL PROTECTED]
 



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: New File Extension....

2001-04-20 Thread Terry Bader

im going to guess you are using windows and thusly and more then likely,
IIS...

so in ISS...  open the IIS manager, rickt-click on the main/default website
and click properties...
click on the home directory Tab
click configuration
click add...
type in the extension, and the executable (which should be the same as the
..cfm extenstion, iscf.dll)..
hit ok... 

not sure if you have to restart or not, but that should do ya...

this is a good practice if you dont want ppl to know what type of systems
you are running  i like the idea of having the .htm extension being used
for CF and .html for real HTML documents


Terry Bader
IT/Web Specialist
EDO Corp - Combat Systems
(757) 424-1004 ext 361 - Work
[EMAIL PROTECTED]   


(757)581-5981 - Mobile
[EMAIL PROTECTED]
icq: 5202487   aim: lv2bounce
http://www.cs.odu.edu/~bader






 -Original Message-
 From: Neil Clark [mailto:[EMAIL PROTECTED]]
 Sent: Friday, April 20, 2001 10:22 AM
 To: CF-Talk
 Subject: New File Extension
 
 
 Anyone know how to set up their Web server (in this case IIS 
 4 and 5) to
 accept any file with the extension .xxx and then pass it to 
 the CF server
 for processing as if it was anyother .cfm file?
 
 I have had a few replies from good sources from other sources 
 indication
 that this is easy, but I am unsure on how to go about it; any 
 one give me
 the instructions for a test?
 
 Neil
 
 !-
 Neil Clark
 Senior Web Applications Engineer
 Spectra / CF / XML
 MCB Digital
 Premier Allaire [Macromedia] Partner
 Tel: 020 8941 3232
 Fax: 020 8941 4333
 e-mail: [EMAIL PROTECTED]
 
 
 

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: studio upgrade

2001-04-20 Thread Patricia Lee

I've heard that Studio 5 won't be released until about 6 months after CF 5.
Which makes it somewhere around December I believe.

|
|Does anyone know if CFStudio will be released in a 5.0 
|version? If so, does
|anyone know what features will added, changed, etc?
|
|Thanks.

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: studio upgrade

2001-04-20 Thread Raymond Camden

Yes, it will be. It will not be released at the same time as Server 5.0, but
a 'language pack' of some kind will be. That way you can make your Studio
grok the new 5.0 tags. As for features, it's not my department so I really
have no idea.

===
Raymond Camden, Principal Spectra Compliance Engineer for Macromedia

Email   : [EMAIL PROTECTED]
ICQ UIN : 3679482

"My ally is the Force, and a powerful ally it is." - Yoda

 -Original Message-
 From: Greg Jordan [mailto:[EMAIL PROTECTED]]
 Sent: Friday, April 20, 2001 10:25 AM
 To: CF-Talk
 Subject: studio upgrade


 Does anyone know if CFStudio will be released in a 5.0 version?
 If so, does
 anyone know what features will added, changed, etc?

 Thanks.



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: cfincluded select box doesn't work

2001-04-20 Thread Allen Hudson

Well it is now working.  As was originally suggested the initial error turns
out to have been caused by a Javascript reference conflict (the form being
called an already used name.)  Since this problem was brought to me by a
subordinate, I came in halfway thru the error testing process.  One check I
did was to include the required code in a blank file with no other js in it
and it didn't work, leading me to believe that the problem was being caused
by the fact that it was being included.  But the initial error checking had
changed some of the form and select names which created a second error and
hence my confusion with my error checking.

Starting from scratch picked up the naming conflict and my world is once
again right side up.  Thank you, those who took the time to respond and
forgive me for bringing forward so simple a problem.
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Sniffing WAP Browsers...

2001-04-20 Thread Edward Chanter

It's a nightmare, short and simple. Aside from getting each of the phones
and testing it on them, there's no sure fire way of testing

Even using two different models of Nokia, an app I built works great on the
7110 but my 6210 doesn't display anything at all

If you come up with a solution let me know.

I did find a good WAP browser for windows at:

http://www.slobtrot.com/eng/index.html

That might prove useful

-= ed

 -Original Message-
 From: Tony Schreiber [mailto:[EMAIL PROTECTED]]
 Sent: 20 April 2001 3:14 PM
 To: CF-Talk
 Subject: Sniffing WAP Browsers...


 For all the WAP resources out there, I've been finding remarkably little
 content. I just finished building my first app last night (an inventory
 lookup) and am now wandering in the dark about how to sniff out WAP
 browsers - or more accurately, redirect NON-WAP browsers away from that
 page. Links?


 Tony Schreiber, Senior Partner  Man and Machine, Limited
 mailto:[EMAIL PROTECTED]   http://www.technocraft.com

 http://www.simplemessageboard.com ___Free Forum Software for Cold Fusion
 http://www.is300.net ___The Enthusiast's Home of the Lexus IS300
 http://www.digitacamera.com __DigitA Camera Scripts and Tips
 http://www.linklabexchange.com _Miata Link ECU Data Exchange




~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



It's not big and it's not clever...

2001-04-20 Thread Aidan Whitehall

I need a list of swear words to validate user input against. Anyone have
such a beast?

Saw CF_BadMouth but would rather get a list of words and write the code.


TIA

-- 
Aidan Whitehall [EMAIL PROTECTED]
Netshopperuk
Telephone +44 (01744) 648650

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



OT - SQL server memory usage

2001-04-20 Thread river

My SQL server on NT4 uses almost 20MB of the server memory all the time.  I
am wondering if there is something wrong.  Is this normal?  There is an CF
application that uses a database, that's frequently used all day, but it's
not used that much except that.  I am not using any of the stored procedure
stuff to access the database for that application.  Could it bring up the
performance and/or bring down memory usage?

Thanks for your help!



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Cold Fusion Magazine? Any Good?

2001-04-20 Thread Belfiori, Ross

Jeff,

I ordered it when I started with CF and have definitely picked up useful
information.  Not so much from the examples but the ideas or articles put me
on the rite path to upgrade and enhance the functionality of the web that I
am working on.  I have done a lot of search through the archived issues that
helped.  I am definitely counting on it to help with CF5 when it comes out.

-Original Message-
From: Jeff Fongemie [mailto:[EMAIL PROTECTED]]
Sent: Friday, April 20, 2001 9:06 AM
To: CF-Talk
Subject: Cold Fusion Magazine? Any Good?


Hello cf-talk,

  I've seen the Cold Fusion magazine website "Cold Fusion Developers
  Journal" on the web.

  Is the magazine any good? I'm thinking of getting a subscription,
  but have never seen one. Fairly expensive magazine!


Best regards,
 Jeff Fongemie  mailto:[EMAIL PROTECTED]
 
Internet Guns For Hire
(603) 356-0768
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Forging HTTP headers

2001-04-20 Thread Thomas Chiverton

 thinking more along the lines of CC #'s

Same applies, surly ?

In addition to my last mail - you shouldn't use 'session.' there if your
session variables are client side i.e. cookies :-)

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CFML not being executed

2001-04-20 Thread Daniel H

Hello All:

Considentially I have had the same problem. We have upgraded from NT 4.0 SP6
CF Enterprise 4.5.1 SP2 to a Windows 2000 system. Our mail server used to
reside on the same machine. Now we have it on a seperate machine; All email
accounts in Post Office appear to be working correctly and have been since
inception.

I made sure the settings in CF Administrator are set properly (with the mail
server name, port etc).

Whats really frustrating about this is that *some* of our CFMAIL tags are
going through!

Here is the information I find in the mail spool thats not going through...

==
x-cf-version: 4.5.0
x-cf-server: mail.mediacomm.com
x-cf-port: 25
x-cf-timeout: 60
x-cf-from: [EMAIL PROTECTED]
x-cf-to: [EMAIL PROTECTED]

Content-type: text/plain Date: Fri, 20 Apr 2001 10:28:38 -0400
From: [EMAIL PROTECTED]
Subject: The email subject
To: [EMAIL PROTECTED]

*email body here*

=


I have read the discussion so far indicating many things that need to be
taken a look at:

1) Look at application settings and see if you have an entry for the name
called default application. Click on the configure button and go to the add
mappings tab. Look an see if you have an entry for .cfm pointed to
c:\CFUSION\bin\iscf.dll
=== This is properly set up on our box.

2) I checked the ISAPI filters
=== I dont have any ISAPI filters set up in any of my sites?!? I dont recall
having any in our old server? What should I be looking for?

Any thoughts and ideas would be appreciated.

TIA
Dan







~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Query in between dates

2001-04-20 Thread JLB

I had a problem like that and I believe what I ended up doing was using
dateformat on the form submitted date like
TodayDate='#DateFormat(formdate,"mm/dd/yy")#'

-Original Message-
From: Peter Benoit [mailto:[EMAIL PROTECTED]]
Sent: Friday, April 20, 2001 10:39 AM
To: CF-Talk
Subject: Query in between dates


Hi,

I know I've seen this but I cannot figure out what I'm doing wrong.

I have an Access Database with a field named outageDate which is a Date/Time
field.  I want to produce a report built off a query of dates between
certain dates.

what I have is :

cfquery name="dayData" datasource="#DSN#"
   SELECT *
   FROM outageReport
   WHERE outageDate = #then#
   AND outageDate = #now#
/cfquery

Which doesn't work.  The dates in my Database look like: 05/10/2001, #then#
and #now# look the same.  There is no error, just nothing returned even
though I have records which should return.

I'm confused!

Pete
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: studio upgrade

2001-04-20 Thread Jon Hall

The new VTM's will be released with CF Server 5 though.

jon
- Original Message -
From: "Patricia Lee" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Friday, April 20, 2001 10:50 AM
Subject: RE: studio upgrade


 I've heard that Studio 5 won't be released until about 6 months after CF
5.
 Which makes it somewhere around December I believe.

 |
 |Does anyone know if CFStudio will be released in a 5.0
 |version? If so, does
 |anyone know what features will added, changed, etc?
 |
 |Thanks.


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



NT Mail and e-mail forwarding

2001-04-20 Thread Aidan Whitehall

Can anyone give me any pointers on this...

 - user creates an account within a web-based application
 - they select a username
 - the enter an e-mail address
 - any e-mail sent to "[EMAIL PROTECTED]" gets forwarded to the e-mail
address they previously entered.

The network admin has told me that he's going to set up NT Mail on a
separate box (ie not the CF web server) to do this. He's briefly shown me
the web-based administration tools you can use.

Presumably to do this programmatically it's a case of reading in one or more
text files on the NT Mail box via a network share, then rewriting in with
the new account, setting up the forwarding on that account (somehow) and
stopping and starting the mail services?

For a start, is it doable... and have I got the gist about right?

Any shove(s) in the right direction (my knowledge of e-mail services is
next-to-nothing) would be much appreciated.



Thanks

-- 
Aidan Whitehall [EMAIL PROTECTED]
Netshopperuk
Telephone +44 (01744) 648650

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: It's not big and it's not clever...

2001-04-20 Thread Rich Wild

yeah - I've got quite a large list - in UK english too!

I'll mail ya off list

---
Rich Wild
Senior Web Designer

---
e-mango.com ltd  Tel: 01202 587 400
Lansdowne Place  Fax: 01202 587 401
17 Holdenhurst Road
Bournemouth   Mailto:[EMAIL PROTECTED]
BH8 8EW, UK  http://www.e-mango.com
---
This message may contain information which is legally
privileged and/or confidential.  If you are not the
intended recipient, you are hereby notified that any
unauthorised disclosure, copying, distribution or use
of this information is strictly prohibited. Such
notification notwithstanding, any comments, opinions,
information or conclusions expressed in this message
are those of the originator, not of e-mango.com ltd,
unless otherwise explicitly and independently indicated
by an authorised representative of e-mango.com ltd.
---




 -Original Message-
 From: Aidan Whitehall [mailto:[EMAIL PROTECTED]]
 Sent: 20 April 2001 15:55
 To: CF-Talk
 Subject: It's not big and it's not clever...
 
 
 I need a list of swear words to validate user input against. 
 Anyone have
 such a beast?
 
 Saw CF_BadMouth but would rather get a list of words and 
 write the code.
 
 
 TIA
 
 -- 
 Aidan Whitehall [EMAIL PROTECTED]
 Netshopperuk
 Telephone +44 (01744) 648650
 

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: It's not big and it's not clever...

2001-04-20 Thread Matt Rodosky

'macromedia'
;)

-Original Message-
From: Aidan Whitehall [mailto:[EMAIL PROTECTED]]
Sent: Friday, April 20, 2001 8:55 AM
To: CF-Talk
Subject: It's not big and it's not clever...


I need a list of swear words to validate user input against. Anyone have
such a beast?

Saw CF_BadMouth but would rather get a list of words and write the code.


TIA

--
Aidan Whitehall [EMAIL PROTECTED]
Netshopperuk
Telephone +44 (01744) 648650
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: It's not big and it's not clever...

2001-04-20 Thread Brad Comer

not a super list but a good start

-Original Message-
From: Aidan Whitehall [mailto:[EMAIL PROTECTED]]
Sent: Friday, April 20, 2001 9:55 AM
To: CF-Talk
Subject: It's not big and it's not clever...


I need a list of swear words to validate user input against. Anyone have
such a beast?

Saw CF_BadMouth but would rather get a list of words and write the code.


TIA

--
Aidan Whitehall [EMAIL PROTECTED]
Netshopperuk
Telephone +44 (01744) 648650
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



OT Javascript question

2001-04-20 Thread Will Swain


Hi,

Does anyone know if it is possible to capture key strokes with javascript.
In other words, can I create a onReturn event which fires when the user hits
the return button on their keyboard?

Cheers

Will Swain
Hot Horse Ltd


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: OT - SQL server memory usage

2001-04-20 Thread mherbene

You can configure SQL Server (my knowledge is based on 6.5) to use a certain
amount of memory, and it will pretty much use that whether it needs it or
not.  If you think it would be ok with less, you can adjust setting and
restart it.

-Original Message-
From: river [mailto:[EMAIL PROTECTED]]
Sent: Friday, April 20, 2001 11:01 AM
To: CF-Talk
Subject: OT - SQL server memory usage


My SQL server on NT4 uses almost 20MB of the server memory all the time.  I
am wondering if there is something wrong.  Is this normal?  There is an CF
application that uses a database, that's frequently used all day, but it's
not used that much except that.  I am not using any of the stored procedure
stuff to access the database for that application.  Could it bring up the
performance and/or bring down memory usage?

Thanks for your help!
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: 189,000K memory use - Way too high for CFAS 4.5.1?

2001-04-20 Thread mherbene

That seems pretty reasonable to me.  My servers run at between 120 and 150
MB of "committed bytes" (from perfmon).

-Original Message-
From: Paul Sinclair [mailto:[EMAIL PROTECTED]]
Sent: Friday, April 20, 2001 9:53 AM
To: CF-Talk
Subject: 189,000K memory use - Way too high for CFAS 4.5.1?


My memory useage for CFAS 4.5.1. SP2 slowly creeps up to about 189,000K (per
NT Server 4.0, SP6a Task Manager reading) and levels out there. I know that
the SmartHeap function in CFAS is not releasing memory back to the system on
the notion that CFAS will need it again. But I am wondering if 189,000K is
abnormally high? Should I look at my applications to see if there is
something causing excessive memory use or is this within reasonable bounds?

Thanks,
Paul Sinclair
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Sniffing WAP Browsers...

2001-04-20 Thread Tony Schreiber

Well, if someone's interested, please feel free to test my app:

http://galaga.technocraft.com/inv3.cfm

Enter a UPC from an audio cd. Should tell you the artist/title and whether
we have it in stock or not. Then you can find out where (shelf and bin
locations in the warehouse) it's stocked.

 It's a nightmare, short and simple. Aside from getting each of the phones
 and testing it on them, there's no sure fire way of testing
 
 Even using two different models of Nokia, an app I built works great on the
 7110 but my 6210 doesn't display anything at all
 
 If you come up with a solution let me know.
 
 I did find a good WAP browser for windows at:
 
 http://www.slobtrot.com/eng/index.html
 
 That might prove useful
 
   -= ed
 
  -Original Message-
  From: Tony Schreiber [mailto:[EMAIL PROTECTED]]
  Sent: 20 April 2001 3:14 PM
  To: CF-Talk
  Subject: Sniffing WAP Browsers...
 
 
  For all the WAP resources out there, I've been finding remarkably little
  content. I just finished building my first app last night (an inventory
  lookup) and am now wandering in the dark about how to sniff out WAP
  browsers - or more accurately, redirect NON-WAP browsers away from that
  page. Links?
 
 
  Tony Schreiber, Senior Partner  Man and Machine, Limited
  mailto:[EMAIL PROTECTED]   http://www.technocraft.com
 
  http://www.simplemessageboard.com ___Free Forum Software for Cold Fusion
  http://www.is300.net ___The Enthusiast's Home of the Lexus IS300
  http://www.digitacamera.com __DigitA Camera Scripts and Tips
  http://www.linklabexchange.com _Miata Link ECU Data Exchange
 
 
 
 

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Sniffing WAP Browsers...

2001-04-20 Thread Tony Schreiber

So, then I'm doing this for now:

CFIF NOT ListContains(CGI.HTTP_ACCEPT,'text/vnd.wap.wml')
Sorry, WAP browsers only.
CFABORT
/CFIF

But I don't know how many phones that will kill...

 sniff for the WAP MIME type in the browser's HTTP_ACCEPT string.
 
 -Original Message-
 From: Tony Schreiber [mailto:[EMAIL PROTECTED]]
 Sent: Friday, April 20, 2001 7:14 AM
 To: CF-Talk
 Subject: Sniffing WAP Browsers...
 
 
 For all the WAP resources out there, I've been finding remarkably little
 content. I just finished building my first app last night (an inventory
 lookup) and am now wandering in the dark about how to sniff out WAP
 browsers - or more accurately, redirect NON-WAP browsers away from that
 page. Links?
 
 
 Tony Schreiber, Senior Partner  Man and Machine, Limited
 mailto:[EMAIL PROTECTED]   http://www.technocraft.com
 
 http://www.simplemessageboard.com ___Free Forum Software for Cold Fusion
 http://www.is300.net ___The Enthusiast's Home of the Lexus IS300
 http://www.digitacamera.com __DigitA Camera Scripts and Tips
 http://www.linklabexchange.com _Miata Link ECU Data Exchange

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: NT Mail and e-mail forwarding

2001-04-20 Thread Tony Schreiber

Well, I used to do something like this, but we wrote the "aliases"
(username - [EMAIL PROTECTED]) to a text file on a samba share on our
linux mail server. A Cron job runs a script that picked up the text file
and ran the sendmail "makesend" on the list of aliases...

Another solution was instead of writing the file directly to a share, I
created a cf page that listed the aliases, restricted it to IP address of
the mail server, then that cron job would http-get the list and then
process the aliases.


 Can anyone give me any pointers on this...
 
  - user creates an account within a web-based application
  - they select a username
  - the enter an e-mail address
  - any e-mail sent to "[EMAIL PROTECTED]" gets forwarded to the e-mail
 address they previously entered.
 
 The network admin has told me that he's going to set up NT Mail on a
 separate box (ie not the CF web server) to do this. He's briefly shown me
 the web-based administration tools you can use.
 
 Presumably to do this programmatically it's a case of reading in one or more
 text files on the NT Mail box via a network share, then rewriting in with
 the new account, setting up the forwarding on that account (somehow) and
 stopping and starting the mail services?
 
 For a start, is it doable... and have I got the gist about right?
 
 Any shove(s) in the right direction (my knowledge of e-mail services is
 next-to-nothing) would be much appreciated.
 
 
 
 Thanks
 
 -- 
 Aidan Whitehall [EMAIL PROTECTED]
 Netshopperuk
 Telephone +44 (01744) 648650
 

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: OT - SQL server memory usage

2001-04-20 Thread Christopher Cortes

River,

Are you noticing performance problems or are you just concerned, and is this
machine a dedicated database server? Does this occur when there is no
database activity at all, or does memory usage drop as database activity
decreases?

- Chris

!---
Christopher Cortes   |Coming Q3 2001:
Consultant   |
Stonebridge Technologies, Inc.   | ’Optimizing ColdFusion’
 Putting Technology To Work  |   By
Visit us at www.sbti.com |   Christopher Cortes
Ofc: 713.985.6244 cel: 281.235.6100  | www.osborne.com
---!


-Original Message-
From: river [mailto:[EMAIL PROTECTED]]
Sent: Friday, April 20, 2001 10:01 AM
To: CF-Talk
Subject: OT - SQL server memory usage


My SQL server on NT4 uses almost 20MB of the server memory all the time.  I
am wondering if there is something wrong.  Is this normal?  There is an CF
application that uses a database, that's frequently used all day, but it's
not used that much except that.  I am not using any of the stored procedure
stuff to access the database for that application.  Could it bring up the
performance and/or bring down memory usage?

Thanks for your help!
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



CF Studio NOT setting archive bits?

2001-04-20 Thread Richard Colman

I have a situation developing where certain CF templates were not backed up
during an incremental back-up using Backup Exec. Upon closer examination,
the files did not have the ARCHIVE bit set even though the file was
overwritten with a new version by CF Studio.

I wonder why the bit was not set. Is there a possible problem with CF Studio
v4.5x not handling archive bits properly, or is it a system configuration
problem , or ... Has anyone else encountered this situation?

Not having a back-up when you expect one is a scary situation.

Richard Colman
Director of Computing
School of Biological Sciences
http://www.bio.uci.edu
http://comp.bio.uci.edu
[EMAIL PROTECTED]  949-824-8955
mobile: 949-275-4311


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: NT Mail and e-mail forwarding

2001-04-20 Thread Howie Hamlin

Gordano has a COM that can be used for NTMail admin (part of their option
pack).

You can download it from:

http://www.ntmail.co.uk/products/upgrades/download.htm?STD=Y

Not sure if it's compatible with CF or not (CF can only use COM Automation
Objects) but Gordano used to have a CFX that did the same thing and it seems
to have been replaced by the COM so I'm *assuming* that the COM will work
with CF.  However, I'm not sure if you can have the COM on one server and
NTMail on the other...

HTH,

Howie Hamlin - inFusion Project Manager
On-Line Data Solutions, Inc.
www.CoolFusion.com
631-737-4668 x101
inFusion Mail Server (iMS) - the World's most configurable mail server


- Original Message -
From: "Aidan Whitehall" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Friday, April 20, 2001 11:28 AM
Subject: NT Mail and e-mail forwarding


 Can anyone give me any pointers on this...

  - user creates an account within a web-based application
  - they select a username
  - the enter an e-mail address
  - any e-mail sent to "[EMAIL PROTECTED]" gets forwarded to the
e-mail
 address they previously entered.

 The network admin has told me that he's going to set up NT Mail on a
 separate box (ie not the CF web server) to do this. He's briefly shown me
 the web-based administration tools you can use.

 Presumably to do this programmatically it's a case of reading in one or
more
 text files on the NT Mail box via a network share, then rewriting in with
 the new account, setting up the forwarding on that account (somehow) and
 stopping and starting the mail services?

 For a start, is it doable... and have I got the gist about right?

 Any shove(s) in the right direction (my knowledge of e-mail services is
 next-to-nothing) would be much appreciated.



 Thanks

 --
 Aidan Whitehall [EMAIL PROTECTED]
 Netshopperuk
 Telephone +44 (01744) 648650



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: It's not big and it's not clever...

2001-04-20 Thread Angél Stewart

You..umm..want me to send them to your personal emailbiatch!??
^_^

hee hee hee

-Gel

-Original Message-
From: Matt Rodosky [mailto:[EMAIL PROTECTED]]
Sent: Friday, 20 April 2001 11:45
To: CF-Talk
Subject: RE: It's not big and it's not clever...


'macromedia'
;)

-Original Message-
From: Aidan Whitehall [mailto:[EMAIL PROTECTED]]


I need a list of swear words to validate user input against. Anyone have
such a beast?

Saw CF_BadMouth but would rather get a list of words and write the code.


TIA


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Harpoon The Current Status COST

2001-04-20 Thread mbrunt

Sorry for the delay in replying to your question.  It will be free.

Kind Regards - Mike Brunt
Macromedia Consulting
Tel 562.243.6255
Fax 401.696.4335
http://www.macromedia.com


-Original Message-
From: Thomas Chiverton [mailto:[EMAIL PROTECTED]]
Sent: Friday, April 20, 2001 1:28 AM
To: CF-Talk
Subject: RE: Harpoon The Current Status


Is it gonna be free, or will some nominal charge apply ?
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: It's not big and it's not clever...

2001-04-20 Thread JoshMEagle

Could I get a copy of that too? I'm writing a Message Board and would like
to have such a database ... plus it'll give me new and fresh ideas for
swearing when my boss wants the project yesterday ;)

Joshua Miller
Web Development
Eagle Technologies Group
Technology Solutions for the Next Generation
www.eagletgi.com
[EMAIL PROTECTED]

-Original Message-
From: Rich Wild [mailto:[EMAIL PROTECTED]]
Sent: Friday, April 20, 2001 11:30 AM
To: CF-Talk
Subject: RE: It's not big and it's not clever...


yeah - I've got quite a large list - in UK english too!

I'll mail ya off list

---
Rich Wild
Senior Web Designer

---
e-mango.com ltd  Tel: 01202 587 400
Lansdowne Place  Fax: 01202 587 401
17 Holdenhurst Road
Bournemouth   Mailto:[EMAIL PROTECTED]
BH8 8EW, UK  http://www.e-mango.com
---
This message may contain information which is legally
privileged and/or confidential.  If you are not the
intended recipient, you are hereby notified that any
unauthorised disclosure, copying, distribution or use
of this information is strictly prohibited. Such
notification notwithstanding, any comments, opinions,
information or conclusions expressed in this message
are those of the originator, not of e-mango.com ltd,
unless otherwise explicitly and independently indicated
by an authorised representative of e-mango.com ltd.
---




 -Original Message-
 From: Aidan Whitehall [mailto:[EMAIL PROTECTED]]
 Sent: 20 April 2001 15:55
 To: CF-Talk
 Subject: It's not big and it's not clever...


 I need a list of swear words to validate user input against.
 Anyone have
 such a beast?

 Saw CF_BadMouth but would rather get a list of words and
 write the code.


 TIA

 --
 Aidan Whitehall [EMAIL PROTECTED]
 Netshopperuk
 Telephone +44 (01744) 648650


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Cold Fusion Magazine? Any Good?

2001-04-20 Thread zac

Jeff Fongemie wrote:

 Is the magazine any good? I'm thinking of getting a subscription,
 but have never seen one. Fairly expensive magazine!

Some issues are just throwaways and in general, as has been noted, the
layout, error checking and general attention to detail is sometimes sorely
lacking. And some of of the article are pure filler (YMMV but I thought this
month's issue with the article on directory structures was just a total
waste)

I'd check out the website and go through the articles there and see if you
find anything worth while. I typically just grab the odd issue from the
newsstand when it has a few good articles and then just use the website for
the, more common occurrence, when the articles just don't make it worth the
cover price.


-- 

Every cloud has its silver lining, and lightning kills hundreds of
people each year who are trying to find it.



email: [EMAIL PROTECTED]
web: http://www.pixelgeek.com/


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Cold Fusion Magazine? Any Good?

2001-04-20 Thread Jeffry Houser


   I heard at my last user group meeting that starting in July it's going 
to be given out free to everyone w/ Registered ColdFusion products.  I'd at 
least wait 2-3 months before spending a fortune on it.  ;)

At 10:05 AM 04/20/2001 -0400, you wrote:
Hello cf-talk,

   I've seen the Cold Fusion magazine website "Cold Fusion Developers
   Journal" on the web.

   Is the magazine any good? I'm thinking of getting a subscription,
   but have never seen one. Fairly expensive magazine!


Best regards,
  Jeff Fongemie  mailto:[EMAIL PROTECTED]

Internet Guns For Hire
(603) 356-0768




~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Cold Fusion Magazine? Any Good?

2001-04-20 Thread John Wilker

I've subscribed for two years now and with only one or two exceptions each
month has something I didn't know at all or didn't know enough about. It is
a bit pricey but I definitely think it's worth it. Besides take it as a tax
write-off :-))

I also think it's a good way to share information, they seem pretty easy
going over at Sys-Con and really easy to work with if you want to write an
article for the mag.

I'd definitely recommend it.

J.

John Wilker
Web Applications Consultant
Allaire Certified ColdFusion Developer

www.red-omega.com http://www.red-omega.com

Lessons learned from movies:
5. It does not matter if you are heavily outnumbered in a fight involving
martial arts, your enemies will wait patiently to attack you one by one by
dancing around in a threatening manner until you have knocked out their
predecessors.


-Original Message-
From: Jeff Fongemie [mailto:[EMAIL PROTECTED]]
Sent: Friday, April 20, 2001 7:06 AM
To: CF-Talk
Subject: Cold Fusion Magazine? Any Good?


Hello cf-talk,

  I've seen the Cold Fusion magazine website "Cold Fusion Developers
  Journal" on the web.

  Is the magazine any good? I'm thinking of getting a subscription,
  but have never seen one. Fairly expensive magazine!


Best regards,
 Jeff Fongemie  mailto:[EMAIL PROTECTED]

Internet Guns For Hire
(603) 356-0768
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: OT Javascript question

2001-04-20 Thread Semrau, Steven L Mr SRA

Yes you can, it's call the 'Event Object'.  Although NN and MSIE are
dramatically different in the way that they handle this currently (not sure
about Netscape 6).

Steven Semrau
SRA International, Inc.
Senior Member, Professional Staff
[EMAIL PROTECTED]
[EMAIL PROTECTED]
Com:  (703) 805-1095
DSN:  (703) 655-1095


-Original Message-
From: Will Swain [mailto:[EMAIL PROTECTED]]
Sent: Friday, April 20, 2001 11:49 AM
To: CF-Talk
Subject: OT Javascript question



Hi,

Does anyone know if it is possible to capture key strokes with javascript.
In other words, can I create a onReturn event which fires when the user hits
the return button on their keyboard?

Cheers

Will Swain
Hot Horse Ltd
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Display query processing in real-time?

2001-04-20 Thread WebMaster


Is there a way to show query processing in "real-time",  so you can see 
which row is processing at any given moment?

Thanks,

Mike


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Advanced CF5 Bootcamp format

2001-04-20 Thread Erika L Walker

I agree. I was wavering on signing up...but if you switch to the second
format, I believe that would topple me off the fence...

:)

Erika

-Original Message-
From: JoshMEagle [mailto:[EMAIL PROTECTED]]
Sent: Friday, April 20, 2001 9:44 AM
To: CF-Talk
Subject: RE: Advanced CF5 Bootcamp format


The second format would go over better with the finance office (at least
ours) I believe. Most of our developers would be willing to pay their own
dinner just to get to attend.

Lodging is not included in this is it? Perhaps with early registration you'd
give us a room at the Super8 or something?

Joshua Miller
Web Development
Eagle Technologies Group
Technology Solutions for the Next Generation
www.eagletgi.com
[EMAIL PROTECTED]

-Original Message-
From: Adam Phillip Churvis [mailto:[EMAIL PROTECTED]]
Sent: Thursday, April 19, 2001 2:03 PM
To: CF-Talk
Subject: Re: Advanced CF5 Bootcamp format


Scholarship plan, huh...?  Now that's an idea!

Actually, you can probably get a signature loan for a small amount like that
at your local bank with just proof of employment.

But which of the two formats I mentioned would you prefer?  And most
importantly, why?

I want to make this course what people seeking to become truly advanced
developers really want.  I really am taking your input seriously.

Respectfully,

Adam Phillip Churvis
Productivity Enhancement, Inc.

http://www.ColdFusionTraining.com
http://www.ColdFusionSeminars.com
http://www.CommerceBlocks.com

E-mail:  [EMAIL PROTECTED]
Phone:   770-446-8866


 Wow! I'd love to attend ... got a scholarship plan? That's a boatload of
 money for the training. I'm sure it's worth it, but OUCH!!!

 How about the $1500 and we pack our own breakfast/lunch plan? Can we get a
 volume discount by taking the Bootcamp class and Fusebox class and
sleeping
 in the parking lot?

 THANKS!

 Joshua Miller
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: It's not big and it's not clever...

2001-04-20 Thread Bruce, Rodney

Could I get that as well,  Its amazing what some people will enter in a
survey form. 



-Original Message-
From: Rich Wild [mailto:[EMAIL PROTECTED]]
Sent: Friday, April 20, 2001 8:30 AM
To: CF-Talk
Subject: RE: It's not big and it's not clever...


yeah - I've got quite a large list - in UK english too!

I'll mail ya off list

---
Rich Wild
Senior Web Designer

---
e-mango.com ltd  Tel: 01202 587 400
Lansdowne Place  Fax: 01202 587 401
17 Holdenhurst Road
Bournemouth   Mailto:[EMAIL PROTECTED]
BH8 8EW, UK  http://www.e-mango.com
---
This message may contain information which is legally
privileged and/or confidential.  If you are not the
intended recipient, you are hereby notified that any
unauthorised disclosure, copying, distribution or use
of this information is strictly prohibited. Such
notification notwithstanding, any comments, opinions,
information or conclusions expressed in this message
are those of the originator, not of e-mango.com ltd,
unless otherwise explicitly and independently indicated
by an authorised representative of e-mango.com ltd.
---




 -Original Message-
 From: Aidan Whitehall [mailto:[EMAIL PROTECTED]]
 Sent: 20 April 2001 15:55
 To: CF-Talk
 Subject: It's not big and it's not clever...
 
 
 I need a list of swear words to validate user input against. 
 Anyone have
 such a beast?
 
 Saw CF_BadMouth but would rather get a list of words and 
 write the code.
 
 
 TIA
 
 -- 
 Aidan Whitehall [EMAIL PROTECTED]
 Netshopperuk
 Telephone +44 (01744) 648650
 

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: It's not big and it's not clever...

2001-04-20 Thread Erika L Walker

Me too! Me too! waving hand in air

Pretty please? With sugar on top?

Erika

"Friendship is never an accident. It is always the result of high
intentions, sincere effort, intelligent direction and skillful execution. It
represents the wise choice of many alternatives." - unknown

-Original Message-
From: JoshMEagle [mailto:[EMAIL PROTECTED]]
Sent: Friday, April 20, 2001 12:43 PM
To: CF-Talk
Subject: RE: It's not big and it's not clever...


Could I get a copy of that too? I'm writing a Message Board and would like
to have such a database ... plus it'll give me new and fresh ideas for
swearing when my boss wants the project yesterday ;)

Joshua Miller
Web Development
Eagle Technologies Group
Technology Solutions for the Next Generation
www.eagletgi.com
[EMAIL PROTECTED]

-Original Message-
From: Rich Wild [mailto:[EMAIL PROTECTED]]
Sent: Friday, April 20, 2001 11:30 AM
To: CF-Talk
Subject: RE: It's not big and it's not clever...


yeah - I've got quite a large list - in UK english too!

I'll mail ya off list

---
Rich Wild
Senior Web Designer

---
e-mango.com ltd  Tel: 01202 587 400
Lansdowne Place  Fax: 01202 587 401
17 Holdenhurst Road
Bournemouth   Mailto:[EMAIL PROTECTED]
BH8 8EW, UK  http://www.e-mango.com
---
This message may contain information which is legally
privileged and/or confidential.  If you are not the
intended recipient, you are hereby notified that any
unauthorised disclosure, copying, distribution or use
of this information is strictly prohibited. Such
notification notwithstanding, any comments, opinions,
information or conclusions expressed in this message
are those of the originator, not of e-mango.com ltd,
unless otherwise explicitly and independently indicated
by an authorised representative of e-mango.com ltd.
---




 -Original Message-
 From: Aidan Whitehall [mailto:[EMAIL PROTECTED]]
 Sent: 20 April 2001 15:55
 To: CF-Talk
 Subject: It's not big and it's not clever...


 I need a list of swear words to validate user input against.
 Anyone have
 such a beast?

 Saw CF_BadMouth but would rather get a list of words and
 write the code.


 TIA

 --
 Aidan Whitehall [EMAIL PROTECTED]
 Netshopperuk
 Telephone +44 (01744) 648650


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Cold Fusion Magazine? Any Good?

2001-04-20 Thread Dave

I agree with what Zac said - mostly filler, occasional article of interest,
*very* occasional "must-have".


 Hello cf-talk,

   I've seen the Cold Fusion magazine website "Cold Fusion Developers
   Journal" on the web.

   Is the magazine any good? I'm thinking of getting a subscription,
   but have never seen one. Fairly expensive magazine!



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: OT Javascript question

2001-04-20 Thread savan . thongvanh


i know there is in NS but i'm not sure about IE

in NS you can enable event capturing and inherent to that is the type of
event.  i.e., a key stroke and the key depressed
see developer.netscape.com for more on this

script
document.captureEvents(ONKEYPRESS);

function myHandler(e){ //where e is the event type
return e.type;
}

document.onkeypress=myHandler;
/script


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Advanced CF5 Bootcamp format

2001-04-20 Thread William J Wheatley

Even without the change its still a Great class and i would pay out of
pocket the whole thing if i could to attend i believ eits that worth it.

Its just so many things you would never have thought of and you go back to
work with a notepad of ggreat ideas and time saving things and i've done
everything 100% different since i left before and it was such a help


Bill Wheatley
Director of Development
AEPS INC
Allaire ColdFusion Consulting Partner
Allaire Certified ColdFusion Developer
http://www.aeps.com
ICQ: 417645
954-472-6684 X303

IMPORTANT NOTICE:
This e-mail and any attachment to it is intended only to be read or used by
the named addressee.  It is confidential and may contain legally privileged
information.  No confidentiality or privilege is waived or lost by any
mistaken transmission to you.  If you receive this e-mail in error, please
immediately delete it from your system and notify the sender.  You must not
disclose, copy or use any part of this e-mail if you are not the intended
recipient.  The RTA is not responsible for any unauthorized alterations to
this e-mail or attachment to it
- Original Message -
From: "Erika L Walker" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Friday, April 20, 2001 1:20 PM
Subject: RE: Advanced CF5 Bootcamp format


 I agree. I was wavering on signing up...but if you switch to the second
 format, I believe that would topple me off the fence...

 :)

 Erika

 -Original Message-
 From: JoshMEagle [mailto:[EMAIL PROTECTED]]
 Sent: Friday, April 20, 2001 9:44 AM
 To: CF-Talk
 Subject: RE: Advanced CF5 Bootcamp format


 The second format would go over better with the finance office (at least
 ours) I believe. Most of our developers would be willing to pay their own
 dinner just to get to attend.

 Lodging is not included in this is it? Perhaps with early registration
you'd
 give us a room at the Super8 or something?

 Joshua Miller
 Web Development
 Eagle Technologies Group
 Technology Solutions for the Next Generation
 www.eagletgi.com
 [EMAIL PROTECTED]

 -Original Message-
 From: Adam Phillip Churvis [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, April 19, 2001 2:03 PM
 To: CF-Talk
 Subject: Re: Advanced CF5 Bootcamp format


 Scholarship plan, huh...?  Now that's an idea!

 Actually, you can probably get a signature loan for a small amount like
that
 at your local bank with just proof of employment.

 But which of the two formats I mentioned would you prefer?  And most
 importantly, why?

 I want to make this course what people seeking to become truly advanced
 developers really want.  I really am taking your input seriously.

 Respectfully,

 Adam Phillip Churvis
 Productivity Enhancement, Inc.

 http://www.ColdFusionTraining.com
 http://www.ColdFusionSeminars.com
 http://www.CommerceBlocks.com

 E-mail:  [EMAIL PROTECTED]
 Phone:   770-446-8866


  Wow! I'd love to attend ... got a scholarship plan? That's a boatload of
  money for the training. I'm sure it's worth it, but OUCH!!!
 
  How about the $1500 and we pack our own breakfast/lunch plan? Can we get
a
  volume discount by taking the Bootcamp class and Fusebox class and
 sleeping
  in the parking lot?
 
  THANKS!
 
  Joshua Miller

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: It's not big and it's not clever...

2001-04-20 Thread Douglas Knudsen



Rich,

sounds like a money making venture here.  I'm a VC looking to drop
lots of dough on this sort of thing.  We could go IPO and rake in a
bunch of money before we put the list together.  I bet we could even
get govt funding.  Is badwords.com taken?  It is.  We will just take
them to court and get it from them 'legally'

HA!  :}



DK



From: [EMAIL PROTECTED] AT INTERNET on 04/20/2001 01:26 PM

To:   [EMAIL PROTECTED] AT INTERNET@CCMAIL
cc:(bcc: Douglas Knudsen/ATL/ALLTELCORP)

Subject:  RE: It's not big and it's not clever...


Me too! Me too! waving hand in air

Pretty please? With sugar on top?

Erika

"Friendship is never an accident. It is always the result of high
intentions, sincere effort, intelligent direction and skillful
execution. It
represents the wise choice of many alternatives." - unknown

-Original Message-
From: JoshMEagle [mailto:[EMAIL PROTECTED]]
Sent: Friday, April 20, 2001 12:43 PM
To: CF-Talk
Subject: RE: It's not big and it's not clever...


Could I get a copy of that too? I'm writing a Message Board and would
like
to have such a database ... plus it'll give me new and fresh ideas for
swearing when my boss wants the project yesterday ;)

Joshua Miller
Web Development
Eagle Technologies Group
Technology Solutions for the Next Generation
www.eagletgi.com
[EMAIL PROTECTED]

-Original Message-
From: Rich Wild [mailto:[EMAIL PROTECTED]]
Sent: Friday, April 20, 2001 11:30 AM
To: CF-Talk
Subject: RE: It's not big and it's not clever...


yeah - I've got quite a large list - in UK english too!

I'll mail ya off list

---
Rich Wild
Senior Web Designer

---
e-mango.com ltd  Tel: 01202 587 400
Lansdowne Place  Fax: 01202 587 401
17 Holdenhurst Road
Bournemouth   Mailto:[EMAIL PROTECTED]
BH8 8EW, UK  http://www.e-mango.com
---
This message may contain information which is legally
privileged and/or confidential.  If you are not the
intended recipient, you are hereby notified that any
unauthorised disclosure, copying, distribution or use
of this information is strictly prohibited. Such
notification notwithstanding, any comments, opinions,
information or conclusions expressed in this message
are those of the originator, not of e-mango.com ltd,
unless otherwise explicitly and independently indicated
by an authorised representative of e-mango.com ltd.
---




 -Original Message-
 From: Aidan Whitehall [mailto:[EMAIL PROTECTED]]
 Sent: 20 April 2001 15:55
 To: CF-Talk
 Subject: It's not big and it's not clever...


 I need a list of swear words to validate user input against.
 Anyone have
 such a beast?

 Saw CF_BadMouth but would rather get a list of words and
 write the code.


 TIA

 --
 Aidan Whitehall [EMAIL PROTECTED]
 Netshopperuk
 Telephone +44 (01744) 648650


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Advanced CF5 Bootcamp format

2001-04-20 Thread Bruce, Rodney

What would the location for the camp be?  and as for the format, yes it
would be a lot easier to talk the boss into on the second format.  As user I
like the first,  I believe the more hands on training the better.

-Original Message-
From: Erika L Walker [mailto:[EMAIL PROTECTED]]
Sent: Friday, April 20, 2001 10:20 AM
To: CF-Talk
Subject: RE: Advanced CF5 Bootcamp format


I agree. I was wavering on signing up...but if you switch to the second
format, I believe that would topple me off the fence...

:)

Erika

-Original Message-
From: JoshMEagle [mailto:[EMAIL PROTECTED]]
Sent: Friday, April 20, 2001 9:44 AM
To: CF-Talk
Subject: RE: Advanced CF5 Bootcamp format


The second format would go over better with the finance office (at least
ours) I believe. Most of our developers would be willing to pay their own
dinner just to get to attend.

Lodging is not included in this is it? Perhaps with early registration you'd
give us a room at the Super8 or something?

Joshua Miller
Web Development
Eagle Technologies Group
Technology Solutions for the Next Generation
www.eagletgi.com
[EMAIL PROTECTED]

-Original Message-
From: Adam Phillip Churvis [mailto:[EMAIL PROTECTED]]
Sent: Thursday, April 19, 2001 2:03 PM
To: CF-Talk
Subject: Re: Advanced CF5 Bootcamp format


Scholarship plan, huh...?  Now that's an idea!

Actually, you can probably get a signature loan for a small amount like that
at your local bank with just proof of employment.

But which of the two formats I mentioned would you prefer?  And most
importantly, why?

I want to make this course what people seeking to become truly advanced
developers really want.  I really am taking your input seriously.

Respectfully,

Adam Phillip Churvis
Productivity Enhancement, Inc.

http://www.ColdFusionTraining.com
http://www.ColdFusionSeminars.com
http://www.CommerceBlocks.com

E-mail:  [EMAIL PROTECTED]
Phone:   770-446-8866


 Wow! I'd love to attend ... got a scholarship plan? That's a boatload of
 money for the training. I'm sure it's worth it, but OUCH!!!

 How about the $1500 and we pack our own breakfast/lunch plan? Can we get a
 volume discount by taking the Bootcamp class and Fusebox class and
sleeping
 in the parking lot?

 THANKS!

 Joshua Miller
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: OT Javascript question

2001-04-20 Thread Bryan LaPlante

In IE4  and up event.keyCode(13) is the enter key

- Original Message -
From: [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Friday, April 20, 2001 12:45 PM
Subject: Re: OT Javascript question



 i know there is in NS but i'm not sure about IE

 in NS you can enable event capturing and inherent to that is the type of
 event.  i.e., a key stroke and the key depressed
 see developer.netscape.com for more on this

 script
 document.captureEvents(ONKEYPRESS);

 function myHandler(e){ //where e is the event type
 return e.type;
 }

 document.onkeypress=myHandler;
 /script



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Long Processing time of queries

2001-04-20 Thread Semrau, Steven L Mr SRA

I would turn on debugging to get the output of the execution time for the
queries (showing at the bottom of your template).

Then I would run those same queries on the database server it's self
(through whatever interface... ie. if you are using Oracle - run through SQL
Plus).

Then compare the execution times.

I had to do this on a project once to show that the queries were taking the
same amount of time and that it wasn't the network causing the slow down.

Steven Semrau
SRA International, Inc.
Senior Member, Professional Staff
[EMAIL PROTECTED]
[EMAIL PROTECTED]
Com:  (703) 805-1095
DSN:  (703) 655-1095


-Original Message-
From: Tracy Bost [mailto:[EMAIL PROTECTED]]
Sent: Friday, April 20, 2001 2:00 PM
To: CF-Talk
Subject: Long Processing time of queries


If the coldfusion server is all of a sudden taking a really,really, long
time to process pages(ie. the database driven pages,  queries specifically)
and the people on the db server have ya convinced its not them, where would
you look next?

NT 4 sp 6a
CF 4.5 sp 2

The CF server shows no sign of memory strain or anything else. Only the
database connections are extremely long.
So far I have re installed the latest odbc driver. Haven't found anything
else to do yet.
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Getting DSNs from a crashed machine

2001-04-20 Thread Richard Colman

Does anyone know how to get DSN information from a crashed server, i.e. I
can get to files on the system volume through a "back door" but cannot bring
up the server itself. Is it in the registry?

Richard Colman
Director of Computing
School of Biological Sciences
http://www.bio.uci.edu
http://comp.bio.uci.edu
[EMAIL PROTECTED]  949-824-8955
mobile: 949-275-4311


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



FTP files timezone

2001-04-20 Thread David Shadovitz

CF Studio's Files tab displays the Name, Title, Size, Modified and Type of each 
file.  When displaying this info for files on an FTP site, what controls the 
timezone of the "Modified" field?  It's determined by the FTP server, right?

Thanks.
-David

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: 4.5 Certification

2001-04-20 Thread Brian Simmons

Terry,

Congrats on passing.  You should receive a package from Allaire/Macromedia
in about 2 - 4 weeks with your paper certificate, logos on a floppy, and a
gift (mine was a duffel bag, pretty cool).

For those of you thinking of taking the exam, check out CF_Buster, the
ultimate testing tool specifically designed to help ColdFusion developers
earn their ColdFusion 4.5 certification through the Allaire Certified
Professional Program. (http://www.centrasoft.com)

There's a demo version on our website that contains one whole test (61
questions), and the full version has over 500 questions.

Kudos again Terry.

Thanks,
Brian Simmons
[EMAIL PROTECTED]
Check out CF_Buster at: http://www.centrasoft.com

 -Original Message-
 From: Terry Bader [mailto:[EMAIL PROTECTED]]
 Subject: 4.5 Certification

 just wanted to express some knowledge about the exam  which I just
 passed...   =^)
 my stats: 45 mins, 75% score...  not bad, will shoot for 85-90% on the 5.0
 one when it comes out...

 but what I just wanted to share was some of the stuff that was or really
 what WASN'T on the exam

 first off, I spotted about 8-10 questions that I would have hesitated on
 more if I hadn't gone through Ben's Cert Study guide... So 8-10
 questions on
 a 61 question test is a big difference  and it reinforced other issues
 as well...
 However, if you are only interested in the book to pass the exam, then
 concentrate on Chapters 1-25 and Chapters 32, 35 (only the stored
 procedures
 area)...

 I was slightly surprised that the I didn't see one cfobject, cfexecute,
 wddx, verity, cfmail or any SQL harder then the keyword HAVING  guess
 they cant all be impossibly hard...

 but don't get me wrong, you do have to know your stuff...  some of the
 questions were tricky and try to trip ya up...  I just wish I could get a
 printout of the ones I did missed...  oh well

 does anyone know if their are any other Allaire certifications beyond the
 developer level available?

 so I guess im going to Disney World now

 =^)

 p.s. do I get any goodies from Allaire for being certifiable?? hehe...

 Terry Bader
 IT/Web Specialist
 Certified CF 4.5 Developer
 EDO Corp - Combat Systems
 (757) 424-1004 ext 361 - Work
 [EMAIL PROTECTED]

 (757)581-5981 - Mobile
 [EMAIL PROTECTED]
 icq: 5202487   aim: lv2bounce
 http://www.cs.odu.edu/~bader


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Cold Fusion Magazine? Any Good?

2001-04-20 Thread Joseph Thompson

Excellent magazine (yes, very pricey).  Occasionally I treat myself and am
never disappointed.




~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Advanced CF5 Bootcamp format

2001-04-20 Thread Howie Hamlin

All the info is here:

http://www.lmnotv.com/new/shows/bc/bc_master.htm

HTH,

Howie

- Original Message -
From: "Bruce, Rodney" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Friday, April 20, 2001 2:11 PM
Subject: RE: Advanced CF5 Bootcamp format


 What would the location for the camp be?  and as for the format, yes it
 would be a lot easier to talk the boss into on the second format.  As user
I
 like the first,  I believe the more hands on training the better.



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: FTP files timezone

2001-04-20 Thread Simon Horwith

I believe so, yes.

~Simon

Simon Horwith
Macromedia Certified Instructor
Certified ColdFusion Developer
Fig Leaf Software
1400 16th St NW, # 500
Washington DC 20036
202.797.6570 (direct line)
www.figleaf.com



-Original Message-
From: David Shadovitz [mailto:[EMAIL PROTECTED]]
Sent: Friday, April 20, 2001 2:47 PM
To: CF-Talk
Subject: FTP files timezone


CF Studio's Files tab displays the Name, Title, Size, Modified and Type of
each 
file.  When displaying this info for files on an FTP site, what controls the

timezone of the "Modified" field?  It's determined by the FTP server, right?

Thanks.
-David
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Image size

2001-04-20 Thread Skip Ogden

The Allaire Developers forum used to have a tag called cfx_imagesize (or 
something close to that). It isn't there any more, or I can't locate it.

Does anyone know of ANY way to automatically create a thumbnail from an 
image as it is uploaded (with cffile)

Thanks...


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Getting DSNs from a crashed machine

2001-04-20 Thread Aaron Johnson

Hi Richard,

HKEY_LOCAL_MACHINE\SOFTWARE\Allaire\ColdFusion\CurrentVersion\DataSources

Aaron Johnson, MCSE, MCP+I
Allaire Certified ColdFusion Developer
MINDSEYE, Inc.
phn617.350.0339
fax617.350.8884
icq66172567
[EMAIL PROTECTED] 

 -Original Message-
 From: Richard Colman [mailto:[EMAIL PROTECTED]]
 Sent: Friday, April 20, 2001 2:32 PM
 To: CF-Talk
 Subject: Getting DSNs from a crashed machine
 
 
 Does anyone know how to get DSN information from a crashed server, i.e. I
 can get to files on the system volume through a "back door" but 
 cannot bring
 up the server itself. Is it in the registry?
 
 Richard Colman
 Director of Computing
 School of Biological Sciences
 http://www.bio.uci.edu
 http://comp.bio.uci.edu
 [EMAIL PROTECTED]  949-824-8955
 mobile: 949-275-4311
 
 

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Is CF still relevant?

2001-04-20 Thread Joseph Grossberg

Now, before you dismiss this as a troll, please let me elaborate. This isn't 
so much an instigation or a whine as it is a call for us to take a step back 
and reevalutate things periodically.

Over the course of my career as a web programmer/developer, I have worked 
with a variety of sever-side languages and technologies: ColdFusion, ASP, 
JSP, PHP, Perl and Python. I like some more than others, but I'm not an 
evangelist for any; they each have their uses. And I recognize some of CF's 
strengths: easy to learn for people who know only tag-based HTML or don't 
have significant programming experience; built-in admin tool; specialized 
editor; comes with pre-built tags and web-based administrator. There are 
also major flaws: broken/sketchy tags; no XML parsing; not OOP; relatively 
small community; etc.

Right now, I work at a web development firm that is primarily "a CF house" 
(besides me). Our more senior programmers are looking at honing their CF 
skills, while our less experienced webmasters are trying to learn 
ColdFusion. But, I can't help but wonder whether they are wasting their 
time. Would they be better off spending their time learning ASP, Java or 
another non-CF solution? Why or why not?

And how would we tell if and when it was time to give up CF and try 
something else, as all but the most stubborn experts in also-ran languages 
(Ada, SmallTalk), applications (Netscape, Lotus Notes) and Operating Systems 
(Amiga) have resignedly done?

Lastly, why do *you* still use CF? Is it because it's what you're best at, 
and you don't want to try something new (where, temporarily, you'd be a 
novice again)? Is it because your ccompany's legacy code is all in CF? Is it 
because you genuinely think that ColdFusion is, generally speaking, the best 
solution for web application development in 2001?

Joe
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Getting DSNs from a crashed machine

2001-04-20 Thread Dain Anderson

Richard,

You can access the ODBC.ini file in the system directory. On Win NT and
2000, it should be in:

c:\WINNT\ODBC.ini

Dain Anderson
Caretaker, CF Comet
http://www.cfcomet.com/




- Original Message -
From: "Richard Colman" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Friday, April 20, 2001 2:31 PM
Subject: Getting DSNs from a crashed machine


 Does anyone know how to get DSN information from a crashed server, i.e. I
 can get to files on the system volume through a "back door" but cannot
bring
 up the server itself. Is it in the registry?

 Richard Colman
 Director of Computing
 School of Biological Sciences
 http://www.bio.uci.edu
 http://comp.bio.uci.edu
 [EMAIL PROTECTED]  949-824-8955
 mobile: 949-275-4311



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Image size

2001-04-20 Thread Howie Hamlin

You can get it here:

http://www.intrafoundation.com/cf.html

HTH,

Howie Hamlin - inFusion Project Manager
On-Line Data Solutions, Inc.
www.CoolFusion.com
631-737-4668 x101
inFusion Mail Server (iMS) - the World's most configurable mail server


- Original Message -
From: "Skip Ogden" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Friday, April 20, 2001 3:07 PM
Subject: Image size


 The Allaire Developers forum used to have a tag called cfx_imagesize (or
 something close to that). It isn't there any more, or I can't locate it.

 Does anyone know of ANY way to automatically create a thumbnail from an
 image as it is uploaded (with cffile)

 Thanks...




~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Image size

2001-04-20 Thread Todd Ashworth

http://devex.allaire.com/developer/gallery/info.cfm?ID=CA3475C6-2830-11D4-AA
9700508B94F380method=Full

Todd Ashworth --

- Original Message -
From: "Skip Ogden" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Friday, April 20, 2001 3:07 PM
Subject: Image size


| The Allaire Developers forum used to have a tag called cfx_imagesize (or
| something close to that). It isn't there any more, or I can't locate it.
|
| Does anyone know of ANY way to automatically create a thumbnail from an
| image as it is uploaded (with cffile)
|
| Thanks...
|
|
|
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Weekly Date Driven Content in Cold Fusion?

2001-04-20 Thread SHEETS, DAYV (PB)

I tried your recommendation, but am still not able to get it to work
properly. For reference, I am including the code used.

--weekly.cfm--
cfset today=Now()

cfquery name="weekly" datasource="temp"
select * 
from 
weekly 
BETWEEN 
my_date_column = #form.start_date# and
my_date_column = #form.end_date#
/cfquery

cfoutput#Quote#br#Author#/cfoutput

I am currently using an Access DB. On my database, I have the following
feilds:

QuoteID =AutoNumber
Quote   =Memo
Author  =Memo
start_date  =Date/Time
end_date=Date/Time
my_date_column  =Date/Time

When the page is executed, I receive the following error:

snip
Error Diagnostic Information

An error occurred while evaluating the expression: 


#form.start_date#



Error near line 8, column 23.



Error resolving parameter FORM.START_DATE


The specified form field cannot be found. This problem is very likely due to
the fact that you have misspelled the form field name.



The error occurred while processing an element with a general identifier of
(#form.start_date#), occupying document position (8:22) to (8:38).
 
/snip


-Ack!-

What do I need to correct in order to get it to work? If anyone sees what
the problem is, please include the relevent codes entirety for the fix.

A million thank you's!

Dayv

-Original Message-
From: Peter Tilbrook [mailto:[EMAIL PROTECTED]]
Sent: Thursday, April 19, 2001 4:51 PM
To: CF-Talk
Subject: RE: Weekly Date Driven Content in Cold Fusion?


Assuming your database contains a date field use the BETWEEN function in
your SQL to select records dated between Now() (ie: today) minus however
days you want to go back.

-Original Message-
From: SHEETS, DAYV (PB) [mailto:[EMAIL PROTECTED]]
Sent: Friday, 20 April 2001 07:13
To: CF-Talk
Subject: Weekly Date Driven Content in Cold Fusion?


Is there a way to do a date range from start to end (e.g. a five day span)?
I want to be able to have content automatically change every week from
information being stored in a database. The information will be displayed
only if it falls within that date range criteria (I would build two fields
"start_date" and "end_date".

Is something like this possible in Cold Fusion?

TIA,

Dayv
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Newbie Server problems

2001-04-20 Thread Gina K. Anderson

Hi everyone,

I am just beginning to learn ColdFusion, and I am having problems with my local
server. It is so *slow*.

I have a Win98 machine running PWS, and ColdFusion Server Express. I tried this
code just to see if everything worked:

body
CFOUTPUT
 Hello,br
 Your IP address is: b#REMOTE_ADDR#/bbr
 Your browser is: b#HTTP_USER_AGENT/b
/CFOUTPUT
/body

This came up no problem using http://MyMachineName/test.cfm, immediately, in my
browser on execute. And it pulled the right stuff, so I assume CF Express and
PWS are working fine...so I go onto this code:

body
Hello,br
CFIF IsDefined("name")
  CFOUTPUT
  The name you entered is b#name#/b
  /CFOUTPUT
CFELSE
 You did not pass a parameter called NAME.
/CFIF
/body

And it is taking forever for the browser to render it, whether I try calling
http://MyMachineName/test2.cfm, or passing the parameter name by using
http://MyMachineName/test2.cfm?NAME=Gina. It's still trying to pull up the page
and I started before I began writing this.

Does anyone have any idea where to start troubleshooting this? This code is in
The ColdFusion 4 Web Application Construction Kit book.

Thanks,
Gina


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Image size

2001-04-20 Thread Peter Froh

I typically use a percentage multiplier (like 25%) for the width and height
to create a thumbnail.  I realize that it's not the best way, especially
since the images will be as large in file size as their "full size"
counterparts, but it is a simple solution.  I guess it only becomes an issue
when the page either has a lot of thumbnails or the file size is large.

Here is the link to the cfx_imagesize website
(http://www.intrafoundation.com/freeware.html).

Peter



-Original Message-
From: Skip Ogden [mailto:[EMAIL PROTECTED]]
Sent: Friday, April 20, 2001 12:08 PM
To: CF-Talk
Subject: Image size


The Allaire Developers forum used to have a tag called cfx_imagesize (or
something close to that). It isn't there any more, or I can't locate it.

Does anyone know of ANY way to automatically create a thumbnail from an
image as it is uploaded (with cffile)

Thanks...
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Image size

2001-04-20 Thread chris

We use cfx_image here.  Works fine.
You can find it in the allaire dex exchange

Chris Martin

-Original Message-
From: Skip Ogden [mailto:[EMAIL PROTECTED]]
Sent: Friday, April 20, 2001 3:08 PM
To: CF-Talk
Subject: Image size


The Allaire Developers forum used to have a tag called cfx_imagesize (or
something close to that). It isn't there any more, or I can't locate it.

Does anyone know of ANY way to automatically create a thumbnail from an
image as it is uploaded (with cffile)

Thanks...
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: It's not big and it's not clever...

2001-04-20 Thread ron

 I need a list of swear words to validate user input against.
 Anyone have such a beast?

Here's the best slang dictionary I've seen... and you can pick from about
120 languages, so as not to leave out our non-English speaking frieds.


Ron Allen Hornbaker
President/CTO
Humankind Systems, Inc.

(: http://www.BookCrossing.com ~ Read and Release! :)









~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



  1   2   >