Re: secure email...

2002-11-17 Thread Jochem van Dieten
Paris Lundis wrote:

> I was wondering how people were dealing with email from Cold Fusion
> applications to respond to such issues... Since CFMAIL doesn't support
> any login and password login type stuff...

Routers block incoming connections on port 25 to all but 2 IP addresses. 
On these IP addresses 2 mail gateways are running, which have correct 
anti-relay, anti-spam and anti-virus measures installed. Via an 
administrative system people can enter domains they want to receive mail 
for behind the gateways. Based on MX records with a higher priority the 
mailgateways are set up as fail-over servers. Outgoing mail is not 
protected in any way, but since no illegal incoming mail is possible 
that is no problem (provided you can handle anybody inside your network 
using an AUP with sufficient options for litigation).

Jochem

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



OO Programming Questions

2002-11-17 Thread Frank Mamone
Hi,

I'm learning OO Programming with ActionScript in order to do some Flash Apps. I was 
just wondering if anyone knew of a mailing list where I can ask general OO programming 
questions.


Thanks,

Frank

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



Re: OO Programming Questions

2002-11-17 Thread Michael Dinowitz
There are a number of flash related lists at chattyfig.figleaf.com which may
contain an Actionscript list. There is a CF-Flash list on HoF for talk specific
to connecting Flash to CF.
I'm sure that if the question came up here it would be discussed to the benefit
of the list members.


> Hi,
>
> I'm learning OO Programming with ActionScript in order to do some Flash Apps.
I was just wondering if anyone knew of a mailing list where I can ask general OO
programming questions.
>
>
> Thanks,
>
> Frank
>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



Re: OO Programming Questions

2002-11-17 Thread Michael Greenberg
Hi Frank,
I dont know of any lists, but I do know of a great tutorial as well as a
great book:

1 - http://www.debreuil.com/docs/ch01_Intro.htm - it's Flash 5 specific, but
an excellent starter.
2- Ben Forta's CFWACK for MX - He has a whole section on cfcs which helped
me get the concept
3 - An excellent book from what I hear:
Object Oriented Programming with Actionscript
http://www.amazon.com/exec/obidos/tg/detail/-/0735711836/ref=ase_devmx-20/10
4-5640365-8111961?v=glance&s=books

I think the first link I gave should really make it all click.

Thanks,
Michael

- Original Message -
From: "Frank Mamone" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Sunday, November 17, 2002 1:10 PM
Subject: OO Programming Questions


> Hi,
>
> I'm learning OO Programming with ActionScript in order to do some Flash
Apps. I was just wondering if anyone knew of a mailing list where I can ask
general OO programming questions.
>
>
> Thanks,
>
> Frank
>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



Re: OO Programming Questions

2002-11-17 Thread Michael Greenberg
I agree Michael,once you really start getting into cfcs you really see the
value of grasping the concept of OOP and Ben's examples really maked it all
click. It was hard for me to think of Cold Fusion in an object oreinted
manner, but that cleared it up :)

Thanks,
Michael

- Original Message -
From: "Michael Dinowitz" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Sunday, November 17, 2002 1:27 PM
Subject: Re: OO Programming Questions


> There are a number of flash related lists at chattyfig.figleaf.com which
may
> contain an Actionscript list. There is a CF-Flash list on HoF for talk
specific
> to connecting Flash to CF.
> I'm sure that if the question came up here it would be discussed to the
benefit
> of the list members.
>
>
> > Hi,
> >
> > I'm learning OO Programming with ActionScript in order to do some Flash
Apps.
> I was just wondering if anyone knew of a mailing list where I can ask
general OO
> programming questions.
> >
> >
> > Thanks,
> >
> > Frank
> >
> >
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



RE: OO Programming Questions

2002-11-17 Thread Dave Watts
> I'm learning OO Programming with ActionScript in order 
> to do some Flash Apps. I was just wondering if anyone 
> knew of a mailing list where I can ask general OO 
> programming questions.

As Mike Dinowitz mentioned, Fig Leaf hosts an ActionScript list, called
FlashCoders:
http://chattyfig.figleaf.com/

There's a lot of OO discussion on this list, among other things. A lot of it
centers around how ActionScript's OO differs from that in a lot of other OO
languages; ActionScript, like any JavaScript/ECMAScript derivative, is a
prototype-based object-oriented language, which is quite a bit different
from class-based OO languages like Java.

There are a couple of books that you might find helpful in this regard, as
well. First, I've personally found the O'Reilly book "JavaScript: The
Definitive Guide", by David Flanagan, to be incredibly useful in
understanding how OO works in JavaScript - this knowledge will be directly
applicable to ActionScript, even though it doesn't discuss ActionScript at
all. There is an O'Reilly book which similarly covers ActionScript, by Colin
Moock, but I haven't read it myself, so I can't comment on it directly other
than to say that it's very well respected by Flash people. Second, Branden
Hall and Sam Wan just released a book specifically aimed at using OO
principles in Flash development. It's called "Object Oriented Programming
with ActionScript":
http://www.wheelmaker.org/

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



RecordCount Question

2002-11-17 Thread Russ
I'm attempting to work-through a recordCount issue and display
information appropriately.  When the user has projects, I'll bulletpoint
them and list them appropriately.

When the user has no projects, I want to display a message that simply
tells them that they have no projects; otherwise, the table looks kind
of gangly just hanging out there.

My code is below, and when I run this, I still end up getting an empty
table, even though I've set the user to have no projects.

Can anyone help me understand where I've missed the bus?  Thanks. --Russ




 

#clientName# - #projectName#


You have currently have no
active projects.


 


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



RE: RecordCount Question

2002-11-17 Thread Dave Watts
> I'm attempting to work-through a recordCount issue 
> and display information appropriately. When the user 
> has projects, I'll bulletpoint them and list them 
> appropriately.
> 
> When the user has no projects, I want to display a 
> message that simply tells them that they have no 
> projects; otherwise, the table looks kind of gangly 
> just hanging out there.
> 
> My code is below, and when I run this, I still end up 
> getting an empty table, even though I've set the user 
> to have no projects.
> 
> 
>  
> 
> ...

You should put your CFIF around your CFOUTPUT, rather than the other way
around. If there are no records, the CFOUTPUT will loop zero times, so your
CFIF never gets to do anything.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



OT: FlashCom host

2002-11-17 Thread Michael Greenberg
Does anyone know of a good (any) Flash Communication server hosts? 

Any experience or advice on a host would be helpful.

Thanks,
Michael
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: RecordCount Question

2002-11-17 Thread Joe Eugene
Your output was not entering the loop, when there
were "0" records.. Below is one way of doing it.




#clientName# - #projectName#




 
 You have currently have no active projects.
 





Joe


> -Original Message-
> From: Russ [mailto:[EMAIL PROTECTED]]
> Sent: Sunday, November 17, 2002 2:57 PM
> To: CF-Talk
> Subject: RecordCount Question
>
>
> I'm attempting to work-through a recordCount issue and display
> information appropriately.  When the user has projects, I'll bulletpoint
> them and list them appropriately.
>
> When the user has no projects, I want to display a message that simply
> tells them that they have no projects; otherwise, the table looks kind
> of gangly just hanging out there.
>
> My code is below, and when I run this, I still end up getting an empty
> table, even though I've set the user to have no projects.
>
> Can anyone help me understand where I've missed the bus?  Thanks. --Russ
>
>
>
> 
> 
> 
>  href="ClientManage/ClientPageView.cfm?clientID=#qUsers.userClient#&projI
> D=#projectID#&Type=2" class="NavyCopy">#clientName# - #projectName#
> 
> 
> You have currently have no
> active projects.
> 
> 
> 
> 
>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



RE: RecordCount Question

2002-11-17 Thread Russ
Thanks for the response, Dave, but that logic doesn't make sense to me,
and I'm hoping you can help explain as to why that should work (I got a
massive puking error when I attempted it, too).

> > 
> > 
> > 
> > ...
> 
> You should put your CFIF around your CFOUTPUT, rather than 
> the other way around. If there are no records, the CFOUTPUT 
> will loop zero times, so your CFIF never gets to do anything.

Wouldn't I want the query to happen first?  That way the record count
would actually have something to go against?

By placing my CFIF around the output, it would seem as if I'd never have
the chance to run the query first, and then have something to count
against.

Since I'm saying "if there's more than zero records, which I should know
the instant I run the query, then go ahead and display those records,
otherwise, if there's not more than zero, display 'there are no
records'", that CFIF on the outside seems to (to me) make it fail.

Thanks,

Russ

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



RE: RecordCount Question

2002-11-17 Thread Russ
Thanks, Joe!

I now understand what Dave was referring to--the cfif around the
cfoutput.

Thank you!

> -Original Message-
> From: Joe Eugene [mailto:[EMAIL PROTECTED]] 
> Sent: Sunday, November 17, 2002 2:29 PM
> To: CF-Talk
> Subject: RE: RecordCount Question
> 
> 
> Your output was not entering the loop, when there
> were "0" records.. Below is one way of doing it.
> 
> 
> 
> 
>  href="ClientManage/ClientPageView.cfm?clientID=#qUsers.userCli
> ent#&projI
> D=#projectID#&Type=2" class="NavyCopy">#clientName# - 
> #projectName# class="bullet">You have currently 
> have no active projects. 
> 
> 
> Joe
> 
> 
> > -Original Message-
> > From: Russ [mailto:[EMAIL PROTECTED]]
> > Sent: Sunday, November 17, 2002 2:57 PM
> > To: CF-Talk
> > Subject: RecordCount Question
> >
> >
> > I'm attempting to work-through a recordCount issue and display 
> > information appropriately.  When the user has projects, I'll 
> > bulletpoint them and list them appropriately.
> >
> > When the user has no projects, I want to display a message 
> that simply 
> > tells them that they have no projects; otherwise, the table 
> looks kind 
> > of gangly just hanging out there.
> >
> > My code is below, and when I run this, I still end up 
> getting an empty 
> > table, even though I've set the user to have no projects.
> >
> > Can anyone help me understand where I've missed the bus?  Thanks. 
> > --Russ
> >
> >
> >
> > 
> > 
> > 
> >  > 
> href="ClientManage/ClientPageView.cfm?clientID=#qUsers.userClient#&pro
> > jI
> > D=#projectID#&Type=2" class="NavyCopy">#clientName# - 
> #projectName#
> > 
> > 
> > You have currently have no
> > active projects.
> > 
> > 
> > 
> > 
> >
> > 
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



RE: RecordCount Question

2002-11-17 Thread Dave Watts
> Thanks for the response, Dave, but that logic doesn't 
> make sense to me, and I'm hoping you can help explain 
> as to why that should work (I got a massive puking error 
> when I attempted it, too).

Well, massive puking is always a bad thing.

> > > 
> > > 
> > > 
> > > ...
> > 
> > You should put your CFIF around your CFOUTPUT, rather 
> > than the other way around. If there are no records, the 
> > CFOUTPUT will loop zero times, so your CFIF never gets 
> > to do anything.
> 
> Wouldn't I want the query to happen first? That way the 
> record count would actually have something to go against?
> 
> By placing my CFIF around the output, it would seem as if 
> I'd never have the chance to run the query first, and then 
> have something to count against.
> 
> Since I'm saying "if there's more than zero records, which 
> I should know the instant I run the query, then go ahead 
> and display those records, otherwise, if there's not more 
> than zero, display 'there are no records'", that CFIF on 
> the outside seems to (to me) make it fail.

Here's some pseudocode to display what I'm getting at:


...





...




No records found!



I hope that makes it a little clearer.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



Re: FlashCom host

2002-11-17 Thread Massimo, Tiziana e Federica
> Does anyone know of a good (any) Flash Communication server hosts? 
> 
> Any experience or advice on a host would be helpful.
> 
I have no direct experience with them:

http://www.mediatemple.com/

Massimo

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



Re: CFMX & Classes

2002-11-17 Thread Sean A Corfield
On Monday, Nov 11, 2002, at 19:17 US/Pacific, Joe Eugene wrote:
> Can you point us to some MM docs on configuration or optimization
> techniques?

I searched the MM website but didn't find anything specific.

> Is there a way to force HOTSPOT VM, once the pages are compiled?

I don't know.

> Any MM docs on this?

I didn't find anything by searching the MM website.

Sean A Corfield -- Director, Architecture
Web Technology Group -- Macromedia, Inc.
tel: (415) 252-2287 -- cell: (415) 717-8473
aim: seancorfield -- http://www.macromedia.com
An Architect's View -- http://www.corfield.org/blog/

Introducing Macromedia Contribute. Web publishing for everyone.
Learn more at http://www.macromedia.com/contribute

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



Re: cfmx and cgi

2002-11-17 Thread Sean A Corfield
On Friday, Nov 15, 2002, at 14:20 US/Pacific, Jason Burnett wrote:
> We have quite a few cfmx/linux/apache 2.0.40 servers here and have just
> today discovered a problem. We are unable to run cgi's while cold 
> fusion
> is running on them. We have tested PHP, Perl, and some shell code with
> no luck, until we kill the cfusion processes then the cgi's work fine.
> Any ideas?

Could you be a little bit more specific? What sort of failure do you 
get with a CGI? Since these are run by the web server itself, I don't 
see how ColdFusion can have any impact on CGIs at all.

Sean A Corfield -- Director, Architecture
Web Technology Group -- Macromedia, Inc.
tel: (415) 252-2287 -- cell: (415) 717-8473
aim: seancorfield -- http://www.macromedia.com
An Architect's View -- http://www.corfield.org/blog/

Introducing Macromedia Contribute. Web publishing for everyone.
Learn more at http://www.macromedia.com/contribute

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



RE: secure email...

2002-11-17 Thread Josh Trefethen
I was thinking the same thing...

There is no reference to a log in and password in your example...what am
I missing?

--
Josh Trefethen

:[ Exciteworks, Inc ]::[ http://exciteworks.com ]:. 
::[ cf hosting on linux ]::[ consulting ]::[ expertise ]::.
 

-Original Message-
From: Matt Robertson [mailto:[EMAIL PROTECTED]] 
Sent: Saturday, November 16, 2002 10:02 PM
To: CF-Talk
Subject: Re: secure email...


>Excuse me! But CFMAIL certainly does support Login and
>Passwords when sending out email. I am using CF 5.0 

I don't get it.  Your code sample shows no username or password parms
anywhere.  I've checked the CF docs and there is no such support for
what you describe in MX.  I don't have 5.0 docs handy.

What am I missing? 

fyi cfparaming in a message-id is another good idea alongside reply-to.
Both help keep some anti-spam systems (like Declude) from flagging the
message fo poor formatting. 



---
Matt Robertson, MSB Designs, Inc.
http://mysecretbase.com - Retail
http://foohbar.org - ColdFusion Tools
---


-- Original Message --
from: "samcfug" <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
date: Sat, 16 Nov 2002 21:09:30 -0600

>I imagine you can pass just about any variable you want to, however, it

>might be smart to try in some way to validate that the reply to is a 
>valid email address or to discard the email completely.
>
>One of the advantages I discovered using the REPLYTO is that when the 
>addressee had a vacation reply or auto-responder set up, it will not go

>into a mail loop.  Those make sys admins very mad at you.
>
>I am trying to write a custom tag that will do a SMTP
>verify, to try to catch bad email addresses, but it is not
>yet ready for prime time :-)
>
>For those that were talking about using Linux,  I have been 
>successfully using Sendmail and with Mailman to support the mailing 
>lists. (Imail on Windows has all this built-in)  but am in the
>process of switching the Linux mail server to Postfix, which
>is an all-in-one package that will handle email, list
>server, and web mail, and WebMin for remote administration.
>
>Both my Imail and my sendmail servers are high volume, as I support 
>free hosting for User groups, and their mail lists. Rarely is email 
>taking longer than one to two minutes to deliver, and in those cases, 
>it is usually a reluctant receiving mail server that causes the delay.
>Hotmail is the worst offender, but right in there is
>Verizon.net, and earthlink.
>
>
>=
>Douglas White
>group Manager
>mailto:[EMAIL PROTECTED]
>http://www.samcfug.org
>=
>- Original Message -
>From: "Paris Lundis" <[EMAIL PROTECTED]>
>To: "CF-Talk" <[EMAIL PROTECTED]>
>Sent: Saturday, November 16, 2002 8:31 PM
>Subject: Re: secure email...
>
>
>| Doug,
>|
>| I see how that sample utilizes the Reply-To as a
>parameterized value ..
>| pretty cool was to roll in the reply-to...
>|
>| Are you aware of any list or decision on what values can
>be used (ie:
>| does CF have open architecture to handle and pass any
>value like that
>| which might be SMTP standards compliant or did CF folks
>just allow a few
>| like this)...
>|
>| IMplemented that reply-to workaround on our mail to friend
>feature..
>| very cool.. thanks a bunch!
>|
>|
>|
>| Paris Lundis
>| Founder
>| Areaindex, L.L.C.
>| http://www.areaindex.com
>| http://www.pubcrawler.com
>| 412-292-3135
>| [finding the future in the past, passing the future in the
>present]
>| [connecting people, places and things]
>|
>|
>| -Original Message-
>| From: "samcfug" <[EMAIL PROTECTED]>
>| Date: Sat, 16 Nov 2002 20:14:57 -0600
>| Subject: Re: secure email...
>|
>| >  Dear #form.Name#,
>| >
>| > Thank you for your order. The total charge to your #form.USER7# was
>| > #TRIM(NumberFormat(form.USER5,"$999,999,999.99"))#.
>| >
>| >
>| > Sincerely,
>| > #storename# Customer Service Staff
>| > 
>| >
>| > also:
>| >
>| > 
>| >
>| >   Sending Your Greeting
>| >
>| >
>| > 
>| > 
>| > 
>| > 
>| > 
>| > 
>| > 
>| > 
>| > 
>| > 
>| > | > "&"#TimeFormat(Now(),"HH:mm:ss")#">
>| >
>| > | >
>| > TO="#form.to_email#"
>| > >From = "[EMAIL PROTECTED]"
>| > Subject = "Web Page from #form.from_name#">
>| > 
>| > Hello #form.to_name#!
>| >
>| > #form.from_name# sent you this page from the
>| > [yourdomainname] web site
>| >
>| >
>| > Comments from #form.from_name#:
>| > #form.comments# on this date #now#
>| > 
>| >  Message Sent
>| >  
>| > Your message to #Form.to_name# has been
>sent
>| > 
>| >  
>| >   | > DBTYPE="ODBC">
>| > insert into tellafriend_log (sending_date, from_email,
>| > from_name, to_email,
>| > to_name, message_comments)
>| > values ('#NOW#', '#form.from_email#',
>'#form.from_name#',
>| > '#form.to_email#',
>| > '#form.to_name#', '#form.comments#')
>| >
>| >   
>| >   
>| >   
>|

test

2002-11-17 Thread Mark A. Kruger - CFG
test


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: FlashCom host

2002-11-17 Thread Samuel Neff
I haven't used Media Temple, but I can say that I met one of their
people at DevCon and he appeared very knowledgeable about Flash Comm.

-Original Message-
From: Massimo, Tiziana e Federica [mailto:[EMAIL PROTECTED]] 
Sent: Sunday, November 17, 2002 3:45 PM
To: CF-Talk
Subject: Re: FlashCom host


> Does anyone know of a good (any) Flash Communication server hosts?
> 
> Any experience or advice on a host would be helpful.
> 
I have no direct experience with them:

http://www.mediatemple.com/

Massimo


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: CF Studio like free editor?

2002-11-17 Thread Tilbrook, Peter
Don't forget that if you upgrade to Studio MX (like more than 250,000 others
have already done according to MM - pretty good) HomeSite+ is included free.
It' basically a beefed up Studio/HomeSite 5 with MX support thrown in.

I still think I prefer Studio though after having used it daily for years
but HomeSite+ is still quite good.

-Original Message-
From: Li Chunshen (Don) [mailto:[EMAIL PROTECTED]]
Sent: Sunday, 17 November 2002 10:50 AM
To: CF-Talk
Subject: CF Studio like free editor?


Probably, I'm going to buy a copy of HomeSite soon
(for lack of alternatives), (HomeSite eval has
expired), but before that, I'd like to try some CF
Studio like free editor naturally without CF end TAG
insertion?  Does any one know anything like that
exist?  Thanks.

DL


**
The information contained in this e-mail, and any attachments to it, is
intended for the use of addressee and is confidential.  If you are not 
the intended recipient, you must not use, disclose, read, forward, copy or
retain any of the information.  If you have received this e-mail in 
error, please delete it and notify the sender by return e-mail or telephone.  
The Commonwealth does not warrant that any attachments are free from 
viruses or any other defects.  You assume all liability for any loss, damage, or 
other consequences which may arise from opening or using the attachments.

**
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



RE: forums software request

2002-11-17 Thread Tilbrook, Peter
I'm in the process of writing one right now based on the excellent (but not
perfect) PHP based PHP2BB forums (www.php2bb.com).

You might also want to check if Fusetalk has been update to address this
issue.


-Original Message-
From: sebastian palmigiani [mailto:[EMAIL PROTECTED]]
Sent: Saturday, 16 November 2002 12:00 AM
To: CF-Talk
Subject: forums software request


Does anyone know of a forums ColdFusion program that has the new thread/not
new thread and new message/not new message function database driven and not
cookies or session variable based?

I have the fusetalk software which bases the new/not new on cookies. If you
leave and  return from the forum and have not read any of the new topics
when you return they are shown as being not new and read. The users of the
fusetalk software find this confusing.

Sebastian 


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



Re: FlashCom host

2002-11-17 Thread Michael Greenberg
Thanks Sam,

I'll give them a shot. They seem to be the only game in town :)

Michael
- Original Message -
From: "Samuel Neff" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Sunday, November 17, 2002 4:55 PM
Subject: RE: FlashCom host


> I haven't used Media Temple, but I can say that I met one of their
> people at DevCon and he appeared very knowledgeable about Flash Comm.
>
> -Original Message-
> From: Massimo, Tiziana e Federica [mailto:[EMAIL PROTECTED]]
> Sent: Sunday, November 17, 2002 3:45 PM
> To: CF-Talk
> Subject: Re: FlashCom host
>
>
> > Does anyone know of a good (any) Flash Communication server hosts?
> >
> > Any experience or advice on a host would be helpful.
> >
> I have no direct experience with them:
>
> http://www.mediatemple.com/
>
> Massimo
>
>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



Re: FlashCom host

2002-11-17 Thread Michael Dinowitz
I'm trying to convince a friend of mine who has some huge pipes to do flashcom
hosting. He may do it. He's going to be doing some other stuff for the community
that I can't mention yet.


> Thanks Sam,
>
> I'll give them a shot. They seem to be the only game in town :)
>
> Michael
> - Original Message -
> From: "Samuel Neff" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Sunday, November 17, 2002 4:55 PM
> Subject: RE: FlashCom host
>
>
> > I haven't used Media Temple, but I can say that I met one of their
> > people at DevCon and he appeared very knowledgeable about Flash Comm.
> >
> > -Original Message-
> > From: Massimo, Tiziana e Federica [mailto:[EMAIL PROTECTED]]
> > Sent: Sunday, November 17, 2002 3:45 PM
> > To: CF-Talk
> > Subject: Re: FlashCom host
> >
> >
> > > Does anyone know of a good (any) Flash Communication server hosts?
> > >
> > > Any experience or advice on a host would be helpful.
> > >
> > I have no direct experience with them:
> >
> > http://www.mediatemple.com/
> >
> > Massimo
> >
> >
> >
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



Re: OO Programming Questions

2002-11-17 Thread Frank Mamone
Hi,

I already did that tutorial and it was nothing short of excellent! But now I
have specific questions about some code examples I'm working with. That's
why I need a continual resource.

I ordered that book. I'm glad you give it a thumbs up as I went by the
reviews.

Thanks for your feedback!


- Original Message -
From: "Michael Greenberg" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Sunday, November 17, 2002 1:35 PM
Subject: Re: OO Programming Questions


> Hi Frank,
> I dont know of any lists, but I do know of a great tutorial as well as a
> great book:
>
> 1 - http://www.debreuil.com/docs/ch01_Intro.htm - it's Flash 5 specific,
but
> an excellent starter.
> 2- Ben Forta's CFWACK for MX - He has a whole section on cfcs which helped
> me get the concept
> 3 - An excellent book from what I hear:
> Object Oriented Programming with Actionscript
>
http://www.amazon.com/exec/obidos/tg/detail/-/0735711836/ref=ase_devmx-20/10
> 4-5640365-8111961?v=glance&s=books
>
> I think the first link I gave should really make it all click.
>
> Thanks,
> Michael
>
> - Original Message -
> From: "Frank Mamone" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Sunday, November 17, 2002 1:10 PM
> Subject: OO Programming Questions
>
>
> > Hi,
> >
> > I'm learning OO Programming with ActionScript in order to do some Flash
> Apps. I was just wondering if anyone knew of a mailing list where I can
ask
> general OO programming questions.
> >
> >
> > Thanks,
> >
> > Frank
> >
> >
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



RE: forums software request

2002-11-17 Thread Jim Davis
> I'm in the process of writing one right now based on the 
> excellent (but not
> perfect) PHP based PHP2BB forums (www.php2bb.com).

I had consider doing that as well - but no time.  I did complete the
BBML parser however - I'm pretty pleased with it.

If you'd like to take a look at it, it here (long URL):

http://dev.depressedpress.com/DepressedPress/Content/ColdFusion/CustomTa
gs/DP_ParseBBML/Index.cfm

Lemme know what you think... Or if you'd like to collaborate.

Jim Davis


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



RE: forums software request

2002-11-17 Thread Parker, Kevin
I don't know how it works in the areas you are discussing but we've used
Snitz Forums a few times and even though its an ASP based product it is
extremely good.

>From memory there is an Admin option where you can configure how it deals
with revisits. I seem to recall fiddling with this but couldn't get it to
work on our system so we relied on the cookie option.

www.snitz.com


**

Kevin Parker
Web Services Manager
WorkCover Corporation

[EMAIL PROTECTED]
www.workcover.com

p: 08 82332548
f: 08 82332000
m: 0418 806 166

**


-Original Message-
From: Jim Davis [mailto:[EMAIL PROTECTED]]
Sent: Monday, 18 November 2002 10:32 AM
To: CF-Talk
Subject: RE: forums software request


> I'm in the process of writing one right now based on the 
> excellent (but not
> perfect) PHP based PHP2BB forums (www.php2bb.com).

I had consider doing that as well - but no time.  I did complete the
BBML parser however - I'm pretty pleased with it.

If you'd like to take a look at it, it here (long URL):

http://dev.depressedpress.com/DepressedPress/Content/ColdFusion/CustomTa
gs/DP_ParseBBML/Index.cfm

Lemme know what you think... Or if you'd like to collaborate.

Jim Davis



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



Re: [OT] Zip Code Lookup

2002-11-17 Thread Sim Graves
Hello Charlie,

I just built me one of those Zip Code Distance thingies and would be happy to share it 
with you if you haven't
found what you want yet.

I'm using the 1999 Census Database for my Zip Codes and Latitudes and Longitudes.  It 
seems to be working fine.

Sim

charlie griefer wrote:

> Hey List:
>
> I'm building an application where i need to do the 'search within x miles of
> zip code 12345'
>
> Can anybody make a recommendation?  The client would like something that
> offers updates fairly regularly.  Maybe even some sort of XML feed direct
> from the (a) source?
>
> Any leads would be greatly appreciated.
>
> Oh, and would be nice if it integrated easily with CF (to kinda bring this
> question a little bit on topic) :)
>
> Thx,
> charlie
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



OT: Preventing URL Display in Status bar

2002-11-17 Thread Srimanta
Hello Forum,

Is there a way to stop the status bar from displaying the URL / path when
the pointer is over a hypertext link on a website.

I remember reading an article somewhere (probably in this forum) some time
back but now cant find it.
Any Help would be much appreciated.


Regards,

Srimanta

http://www.digitalshop.co.nz


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



RE: Preventing URL Display in Status bar

2002-11-17 Thread Steve Reich
> Is there a way to stop the status bar from displaying the URL / path when
> the pointer is over a hypertext link on a website.

Use JavaScript

Home


. this will put the text 'Click for home page...' in the status bar instead
of the URL.


HTH,
Steve

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



Re: Preventing URL Display in Status bar

2002-11-17 Thread Srimanta
Thanks Steve.

Srimanta

http://www.digitalshop.co.nz
- Original Message -
From: "Steve Reich" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Sunday, November 17, 2002 8:38 PM
Subject: RE: Preventing URL Display in Status bar


> > Is there a way to stop the status bar from displaying the URL / path
when
> > the pointer is over a hypertext link on a website.
>
> Use JavaScript
>
> Home
>
>
> . this will put the text 'Click for home page...' in the status bar
instead
> of the URL.
>
>
> HTH,
> Steve
>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



Re: cfmx and cgi

2002-11-17 Thread Jason Burnett
There is no error logged anywhere. Basically if I try to execute a cgi
while cf is running the webserver returns the code of the cgi, as if it
were just a text file. Once I stop cold fusion cgi's work fine. 

on Sun Nov 17 Sean A Corfield spoke forth with the blessed manuscript
> On Friday, Nov 15, 2002, at 14:20 US/Pacific, Jason Burnett wrote:
> > We have quite a few cfmx/linux/apache 2.0.40 servers here and have just
> > today discovered a problem. We are unable to run cgi's while cold 
> > fusion
> > is running on them. We have tested PHP, Perl, and some shell code with
> > no luck, until we kill the cfusion processes then the cgi's work fine.
> > Any ideas?

> Could you be a little bit more specific? What sort of failure do you 
> get with a CGI? Since these are run by the web server itself, I don't 
> see how ColdFusion can have any impact on CGIs at all.

> Sean A Corfield -- Director, Architecture
> Web Technology Group -- Macromedia, Inc.
> tel: (415) 252-2287 -- cell: (415) 717-8473
> aim: seancorfield -- http://www.macromedia.com
> An Architect's View -- http://www.corfield.org/blog/

> Introducing Macromedia Contribute. Web publishing for everyone.
> Learn more at http://www.macromedia.com/contribute

> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



Re: [OT] Zip Code Lookup

2002-11-17 Thread Charlie Griefer
Thanks, Slim (and all who responded)...

I actually did find something that looks to be exactly what i wantedi
know i originally asked about zip codes, but ideally wanted to be able to do
distance calculations globally.

http://www.meridianworlddata.com/Product-Overview.asp?ItemID=731

$995.  plus they've got a zip code product as well (which includes lat/long)
for $119.  Showed it to the client and they're ready to buy :)

thx again,
charlie


- Original Message -
From: "Sim Graves" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Sunday, November 17, 2002 8:47 PM
Subject: Re: [OT] Zip Code Lookup


> Hello Charlie,
>
> I just built me one of those Zip Code Distance thingies and would be happy
to share it with you if you haven't
> found what you want yet.
>
> I'm using the 1999 Census Database for my Zip Codes and Latitudes and
Longitudes.  It seems to be working fine.
>
> Sim
>
> charlie griefer wrote:
>
> > Hey List:
> >
> > I'm building an application where i need to do the 'search within x
miles of
> > zip code 12345'
> >
> > Can anybody make a recommendation?  The client would like something that
> > offers updates fairly regularly.  Maybe even some sort of XML feed
direct
> > from the (a) source?
> >
> > Any leads would be greatly appreciated.
> >
> > Oh, and would be nice if it integrated easily with CF (to kinda bring
this
> > question a little bit on topic) :)
> >
> > Thx,
> > charlie
> >
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



Re: [OT] Zip Code Lookup

2002-11-17 Thread cf-talk
Hi Sim,

I currently offer a FREE zip code database complete with latitude and
longitude  (http://www.cfdynamics.com/zipbase).  I would be interested in
obtaining a copy of you distance calculator.

-Novak

- Original Message -
From: "Charlie Griefer" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Sunday, November 17, 2002 11:04 PM
Subject: Re: [OT] Zip Code Lookup


> Thanks, Slim (and all who responded)...
>
> I actually did find something that looks to be exactly what i wantedi
> know i originally asked about zip codes, but ideally wanted to be able to
do
> distance calculations globally.
>
> http://www.meridianworlddata.com/Product-Overview.asp?ItemID=731
>
> $995.  plus they've got a zip code product as well (which includes
lat/long)
> for $119.  Showed it to the client and they're ready to buy :)
>
> thx again,
> charlie
>
>
> - Original Message -
> From: "Sim Graves" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Sunday, November 17, 2002 8:47 PM
> Subject: Re: [OT] Zip Code Lookup
>
>
> > Hello Charlie,
> >
> > I just built me one of those Zip Code Distance thingies and would be
happy
> to share it with you if you haven't
> > found what you want yet.
> >
> > I'm using the 1999 Census Database for my Zip Codes and Latitudes and
> Longitudes.  It seems to be working fine.
> >
> > Sim
> >
> > charlie griefer wrote:
> >
> > > Hey List:
> > >
> > > I'm building an application where i need to do the 'search within x
> miles of
> > > zip code 12345'
> > >
> > > Can anybody make a recommendation?  The client would like something
that
> > > offers updates fairly regularly.  Maybe even some sort of XML feed
> direct
> > > from the (a) source?
> > >
> > > Any leads would be greatly appreciated.
> > >
> > > Oh, and would be nice if it integrated easily with CF (to kinda bring
> this
> > > question a little bit on topic) :)
> > >
> > > Thx,
> > > charlie
> > >
> >
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm