Re: Page hanging in netscape

2000-10-04 Thread Mark Adams

Hey all, I've got it! I use multi nested tables to layout pages, mainly for
border effects but I guess I have never nested tables this deep before. With
IE there is no limit and no noticeable rendering speed difference that I
found but with NN after 10 tables deep it slows tremendously add 12 or 15
and it locks it completely.

Another knock for NN


Hope this is helps someone.

-Mark :o)


- Original Message -
From: Mark Adams <[EMAIL PROTECTED]>
To: CF-Talk <[EMAIL PROTECTED]>
Sent: Tuesday, October 03, 2000 6:23 PM
Subject: Re: Page hanging in netscape


> YA, its a mystery. I'll keep staring at this, until I fix it, or my brain
> melts. Whichever comes first. ;)
>
> -Mark :o)
>
>
> - Original Message -
> From: Peter Tilbrook <[EMAIL PROTECTED]>
> To: CF-Talk <[EMAIL PROTECTED]>
> Sent: Tuesday, October 03, 2000 5:53 PM
> Subject: RE: Page hanging in netscape
>
>
> > Hmmm. Happens on Navigator 4.08 too.
> >
> > Eventually the page appears however. Interesting in that it doesn't seem
> to
> > hang on other pages.
> >
> > Nice looking site by the way.
> >
> > Peter Tilbrook
> > Internet Applications Developer
> > Aspect Computing Pty. Ltd.
> > 19-25 Moore Street
> > Turner, ACT, 2612
> > AUSTRALIA
> >
> > http://www.aspect.com.au
> >
> > Phone: (02) 6247 7677
> > Fax: (02) 6249 1620
> > Mobile: 0428 765 020
> > ICQ: 666275
> >
> > ACT ColdFusion Users Group - http://203.37.24.198
> >
> >
> > -Original Message-
> > From: Mark Adams [mailto:[EMAIL PROTECTED]]
> > Sent: Wednesday, 4 October 2000 9:01
> > To: CF-Talk
> > Cc: [EMAIL PROTECTED]
> > Subject: Re: Page hanging in netscape
> >
> >
> > That was my first guess to, but I am using a cfinclude for the header
for
> > all the pages and the rest come up fine weird AY!
> >
> > - Original Message -
> > From: Jon Tillman <[EMAIL PROTECTED]>
> > To: CF-Talk <[EMAIL PROTECTED]>
> > Sent: Tuesday, October 03, 2000 3:26 PM
> > Subject: Re: Page hanging in netscape
> >
> >
> > > On Tue, 03 Oct 2000, Mark Adams spake thusly:
> > > > Ok GURU's
> > > >
> > > > I can't seem to locate the problem can someone take a look at this
> page
> > and
> > > > see why netscape hangs on it?
> > > >
> > > > Thanks for any hints on this.
> > > >
> > > > http://www.madronalinks.com/rates.cfm
> > >
> > > without looking at it my guess is malformed javascript or Java, does
it
> > every
> > > time
>
> --
> 
> > Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> > To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.
> >
>
> --

> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
>

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Report generation in Unix (Solaris)

2000-10-04 Thread JustinMacCarthy

You might try the cf-linux list , it's low noise / high signal

Sign up at houseOfFusion.com

Justin

- Original Message -
From: "Larry W. Virden" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, October 03, 2000 6:22 PM
Subject: Report generation in Unix (Solaris)


> What are the Unix/Solaris ColdFusion developers on this list using
> for report generation?
>
>
> --
> Never apply a Star Trek solution to a Babylon 5 problem.
> Larry W. Virden  http://www.purl.org/NET/lvirden/>
> Even if explicitly stated to the contrary, nothing in this posting should
> be construed as representing my employer's opinions.
> -><-
> --

> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
>
>

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Stored Procedures??

2000-10-04 Thread Andy Ewings

I haven't come across any problems with nvarchar but there are problems with
ntext

--
Andrew Ewings
Project Manager
Thoughtbubble Ltd
--


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: 04 October 2000 03:00
To: CF-Talk
Subject: Re: Stored Procedures??


Check you field type. nvarchar vs varchar and ntext vs text. If the field
types
in your tables are nvarchar or ntext I would expect other problems. However
you have your input vars defined as nvarchar in your stored procedure.
> @cfid nvarchar,
> @member_id nvarchar (50),
> @member_password nvarchar (10),
> @password_hint nvarchar (50)
but are passing  -- cfsqltype="CF_SQL_VARCHAR"

 CF is not happy with nvarchar and ntext.
Jeff Craig


- Original Message -
From: "Bill Killillay" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, October 03, 2000 7:46 PM
Subject: Stored Procedures??


> Can anybody see what I am doing wrong here?  I am not getting any errors,
> but it's not updating either.  On the SQL server I have the permissions
> execute box checked for the dbo user (the only user in there).  This same
> exact task works just fine if I use a standard CFQUERY instead of the
method
> below.
>
> 
>  datasource="#request.maindsn#">
>  cfsqltype="CF_SQL_VARCHAR">
>  cfsqltype="CF_SQL_VARCHAR">
>  value="#attributes.password#" cfsqltype="CF_SQL_VARCHAR">
>  value="#attributes.pass_hint#" cfsqltype="CF_SQL_VARCHAR">
> 
>
>
>
> 
> CREATE PROCEDURE update_member_id_and_pass
> (
> @cfid nvarchar,
> @member_id nvarchar (50),
> @member_password nvarchar (10),
> @password_hint nvarchar (50)
> )
> AS UPDATE member
>
> SET  member_id = @member_id,
> member_password = @member_password,
> password_hint = @password_hint
> WHERE
> (
> cfid = @cfid
> )
>
>
> The syntax checker in the SQL SP builder says it's correct.
>
> Bill
>
> --

> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
>


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RDS stopped working

2000-10-04 Thread Philip Arnold - ASP

I must be having a brain dead moment...

Our Intranet server has been working fine for ages and ages (CF Server Pro
4.5.1), but this morning it seems that RDS has quit working on me

I can't for the life of me think how to check that it SHOULD be... the
server handles CF pages quite happily, but since it's running all sorts of
things, I don't want to run SQL Enterprise Manager on it, thus I'll rather
use RDS to update databases and stuff

I've been through the Administrator, but can't find anything (apart from the
Studio Password) regarding RDS

I'm pulling my hair out - Especially since we only recently upgraded 4.0.1
to 4.5.1, so I don't know the Administrator very well...

In the words of Penelope Pitstop... "Haylp Haylp" (or however it's spelt the
way she says it)

Philip Arnold
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.
**


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: OT BUT CRITICALLY IMPORTANT...

2000-10-04 Thread Jon Tillman

On Tue, 03 Oct 2000, Thomas Ortega II spake thusly:
> As far as I know, there is no IT union.  The demand for workers has been way 
> too high, so unions have not been needed.  This is just an email talking 
> about the number of H-1 work visas being expanded.



I know what the email is talking about, but it got me thinking about
the political pressure you could bring to bear, not to mention economic, if you
did think this was a bad thing (i dont) if there was an IT union.
I personally would be in favor of a union, since most of my family has been
union workers for several generations (mostly construction and longshoremen).
the first benefit for an IT union would be those of us who happen to be what
has been called "micro-serfs", contract workers without benefits, who are only
on contract to avoid paying us a decent wage or giving us bennies.

okay, ill get off the soapbox next



> 
> Here's less extreme coverage.
> http://news.cnet.com/news/0-1004-200-2924010.html
> 
> 
> >From: "William J Wheatley" <[EMAIL PROTECTED]>
> >Reply-To: [EMAIL PROTECTED]
> >To: CF-Talk <[EMAIL PROTECTED]>
> >Subject: Re: OT BUT CRITICALLY IMPORTANT...
> >Date: Wed, 4 Oct 2000 18:28:06 -0400
> >
> >What in the hell is all this about
> >
> >
> >"Please forward all Complaints to /dev/null"
> >
> >Bill Wheatley
> >Director of Development
> >AEPS INC
> >Allaire Coldfusion Consulting Partner
> >www.aeps.com
> >www.aeps2000.com
> >954-472-6684 X303
> >ICQ: 417645
> >
> >
> >- Original Message -
> >From: "Peter Theobald" <[EMAIL PROTECTED]>
> >To: "CF-Talk" <[EMAIL PROTECTED]>
> >Sent: Tuesday, October 03, 2000 6:21 PM
> >Subject: Re: OT BUT CRITICALLY IMPORTANT...
> >
> >
> > > Your IT skills getting a little rusty? :-)
> > >
> > > At 04:17 PM 10/3/00 -0500, Clinton Gallagher wrote:
> > > >My apology for taking this risk but...
> > > >
> > > >Death of U.S. IT Industry: Neo-Nazi Fascist
> > > >Scum Sell Out Native Sons
> > > >
> > > >BREAKING NEWS FROM CONGRESS:
> > > >
> > > >Today, the neo-nazi fascist scum - Congress - passed
> > > >into law the approval for the import of 200,000
> > > >foreign IT scabs.Each and every year for the next
> > > >three years there will be 200,000 scabs imported
> > > >into our nation to be pitted against native American
> > > >workers in the IT industry.
> > > >
> > > >Let's do some simple arithmetic even a neo-nazi
> > > >fascist scum supporter should understand...
> > > >
> > > >200,000 imported scabs / year
> > > >x 3 yrs
> > > >
> > > >600,000 Total Scabs in 3 years
> > > >
> > > >Assume there is one major metropolitan area in
> > > >each state. This equivocates to 3,000 scabs per
> > > >metropolitan area!!!
> > > >
> > > >These scabs can work here for 6 years.
> > > >This equivocates to:
> > > >
> > > >18 YEARS OF 600,000 SCABS ON AMERICAN SOIL!
> > > >
> > > >TOTAL DECIMATION OF THE AMERICAN
> > > >   IT WORKFORCE!!!
> > > >
> > > >This move will pit native American jobs and
> > > >those of us who have worked our asses off to pay
> > > >for university degrees and then sacrifice our
> > > >days and nights and weeks and months of endless
> > > >post-graduate study and work to be successful.
> > > >
> > > >Within a year we will start getting laid off and
> > > >then the labor pimps will force people to accept
> > > >work - if there will even be a job offer - for
> > > >wages that will be reduced to those of the garbage man.
> > > >
> > > >The scabs get all their expenses paid and their taxes
> > > >are entirely different. They pay nothing for school.
> > > >They will likely pay nothing for housing for their
> > > >first year until they 'get on their feet'. The scabs
> > > >are *supposed* to be getting paid a rumored $60,000
> > > >annual salary which the neo-nazi fascist scum claim
> > > >will not undermine American jobs.
> > > >
> > > >BULLSHIT! It will mean a reduction of wages of at least
> > > >$30,000 a year or more for native American workers.
> > > >
> > > >Let's not be fools and misunderstand my simple scenario
> > > >that is not as accurate as it could be but clearly shows
> > > >the implications and furthermore it is highly likely
> > > >this will never be recinded as it will be tagged as a
> > > >   'success'
> > > >
> > > >Think about this my peers. After all, we've been smart
> > > >enough and motivated to keep this nation running and
> > > >prosperous for the last ten  years and now we're all
> > > >getting flushed down the toilet by the neo-nazi fascist
> > > >scum politicians who are obviously getting paid off
> > > >with 'soft money'.
> > > >
> > > >Did your employer contribute to the corruption fund?
> > > >
> > > >I would not ordinarily spam the Usenet but this sh!t is
> > > >unreal. What's the matter with us? Why can't we organize
> > > >and resist this effort to destroy our lives, our careers
> > > >and any opportunity to have families and a life of
> > > >prosperity as a result of our merits?
> >

Error creating Verity collection

2000-10-04 Thread steves

I have been happily creating and deleting Verity collections for a 
few days now either via the Administrator or code (CF 4.5, NT 
Server).  However, when I try to create a collection now I am given 
the error message "Error creating Verity collection".  

I have deleted all the collections, but CF still refuses to play ball.

Any suggestions?

Thanks

Steve

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: OT BUT CRITICALLY IMPORTANT...

2000-10-04 Thread Jon Tillman

You dont seem to have too high an opinion of Unions, any particular reason?

On Tue, 03 Oct 2000, Peter Theobald spake thusly:
> *OPINIONS FOLLOW* YOU MAY DISAGREE* THAT IS YOUR PEROGATIVE*
> 
> Traditionally there is not an IT union for several reasons:
> 
> 1) Unions began when exploited workers attempted to organize to fight the their 
>exploitation. IT workers have never been exploited, as a matter of fact we enjoy some 
>of the highest wages and most flexible working conditions in any industry. There is 
>currently much more demand for skilled IT workers than there is supply of those 
>workers. IT workers are a class that hardly need the protection of an organization.
> 
> 2) IT workers have always had a grass-roots "meritocracy" philosophy. In other words 
>we have felt that the best opportunities should go to the most skilled workers 
>regardless of other factors such as 'tenure', 'nationality', 'race', 'age', 'sex', or 
>'membership in a union'. Perhaps this is an outgrowth of the nature of what we do. We 
>spend all our time looking for the most efficient solutions to problems, so perhaps 
>we naturally feel that "jobs" should also be granted to the most efficient worker for 
>a given task, and not to the one who has paid his or her union dues the longest.
> 
> 
> At 06:28 PM 10/3/00 -0400, Jon Tillman wrote:
> >While I may not take such a hard-line position about this issue, it does raise
> >a question to me:
> >Is there an IT union? if so, does anyone have contact info?
> >if not, why not?
> >
> >-- 
> >***
> > Jon Tillman
> > LINUX USER: #141163
> > ICQ: 4015362
> > http://www.eruditum.org
> > [EMAIL PROTECTED]
> >***
> >Be alert, the world needs more lerts
> >***
> >
> >--
> >Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> >To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
>message to [EMAIL PROTECTED] with 'unsubscribe' in the body. 
> 
> 
> ---
> Peter Theobald, Chief Technology Officer
> LiquidStreaming http://www.liquidstreaming.com
> [EMAIL PROTECTED]
> Phone 1.212.545.1232 x204 Fax 1.212.545.0938
> 
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
>message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
-- 
***
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
***
Be alert, the world needs more lerts
***

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: OT BUT CRITICALLY IMPORTANT...

2000-10-04 Thread Jon Tillman

On Tue, 03 Oct 2000, BORKMAN Lee spake thusly:
> Hey guys,
> 
> Don't you foreigners have your own lists for talking politics? ;-)

nah, were rude and uncouth, and like to air our laundry right out where
everyone has to deal with it :)

> 
> Sometimes from Estonia, sometimes from Australia, rarely interested in
> America,
> Lee (Bjork) Borkman
> http://bjork.net ColdFusion Tags by Bjork
> 
> 
> -Original Message-
> From: Peter Theobald [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, October 04, 2000 12:48 PM
> To: CF-Talk
> Subject: Re: OT BUT CRITICALLY IMPORTANT...
> 
> 
> *OPINIONS FOLLOW* YOU MAY DISAGREE* THAT IS YOUR PEROGATIVE*
> 
> Traditionally there is not an IT union for several reasons:
> 
> 1) Unions began when exploited workers attempted to organize to fight the
> their exploitation. IT workers have never been exploited, as a matter of
> fact we enjoy some of the highest wages and most flexible working conditions
> in any industry. There is currently much more demand for skilled IT workers
> than there is supply of those workers. IT workers are a class that hardly
> need the protection of an organization.
> 
> 2) IT workers have always had a grass-roots "meritocracy" philosophy. In
> other words we have felt that the best opportunities should go to the most
> skilled workers regardless of other factors such as 'tenure', 'nationality',
> 'race', 'age', 'sex', or 'membership in a union'. Perhaps this is an
> outgrowth of the nature of what we do. We spend all our time looking for the
> most efficient solutions to problems, so perhaps we naturally feel that
> "jobs" should also be granted to the most efficient worker for a given task,
> and not to the one who has paid his or her union dues the longest.
> 
> 
> At 06:28 PM 10/3/00 -0400, Jon Tillman wrote:
> >While I may not take such a hard-line position about this issue, it does
> raise
> >a question to me:
> >Is there an IT union? if so, does anyone have contact info?
> >if not, why not?
> >
> >-- 
> >***
> > Jon Tillman
> > LINUX USER: #141163
> > ICQ: 4015362
> > http://www.eruditum.org
> > [EMAIL PROTECTED]
> >***
> >Be alert, the world needs more lerts
> >***
> >
> >---
> ---
> >Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> >To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body. 
> 
> 
> ---
> Peter Theobald, Chief Technology Officer
> LiquidStreaming http://www.liquidstreaming.com
> [EMAIL PROTECTED]
> Phone 1.212.545.1232 x204 Fax 1.212.545.0938
> 
> 
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
>message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
-- 
***
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
***
Be alert, the world needs more lerts
***

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: RDS stopped working

2000-10-04 Thread stas

Try stopping and re-starting the RDS service in the Services control panel.

-Original Message-
From: Philip Arnold - ASP [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, October 04, 2000 6:40 AM
To: CF-Talk
Subject: RDS stopped working


I must be having a brain dead moment...

Our Intranet server has been working fine for ages and ages (CF Server Pro
4.5.1), but this morning it seems that RDS has quit working on me

I can't for the life of me think how to check that it SHOULD be... the
server handles CF pages quite happily, but since it's running all sorts of
things, I don't want to run SQL Enterprise Manager on it, thus I'll rather
use RDS to update databases and stuff

I've been through the Administrator, but can't find anything (apart from the
Studio Password) regarding RDS

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Error creating Verity collection

2000-10-04 Thread Anthony Geoghegan

Hi Steve,
Restart the server.
Regards,
Anthony Geoghegan.
Lead Developer,
IFTN 
http://www.wow.ie
mailto:[EMAIL PROTECTED]



-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: 04 October 2000 12:26
To: CF-Talk
Subject: Error creating Verity collection


I have been happily creating and deleting Verity collections for a 
few days now either via the Administrator or code (CF 4.5, NT 
Server).  However, when I try to create a collection now I am given 
the error message "Error creating Verity collection".  

I have deleted all the collections, but CF still refuses to play ball.

Any suggestions?

Thanks

Steve


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: RDS stopped working

2000-10-04 Thread Rahul Joshi

Seems u r using CF studio. Correct ... coz u can use RDS through CF studio
as well as through normal windows explorer. Once u install CF Studio it adds
1 option in explorer i.e. Allaire FTP & RDS. Now on CF server PC check RDS
service is started on not ? If not then pls start the service. Now open
explorer click on Allaire FTP, right click on this option. It will provide u
2 options add rds server & add ftp server, so select add RDS server. Now
give host description as anything u want, in host name field give IP address
of RDS server PC i.e.. CF Server PC, in user name field give the user name
administrator & give password which u have given for CF Studio in CF Server
administrator page.

With this settings it should work.

Rahul




>
> I can't for the life of me think how to check that it SHOULD be... the
> server handles CF pages quite happily, but since it's running all sorts of
> things, I don't want to run SQL Enterprise Manager on it, thus I'll rather
> use RDS to update databases and stuff
>
> I've been through the Administrator, but can't find anything (apart from
the
> Studio Password) regarding RDS
>
> I'm pulling my hair out - Especially since we only recently upgraded 4.0.1
> to 4.5.1, so I don't know the Administrator very well...
>
> In the words of Penelope Pitstop... "Haylp Haylp" (or however it's spelt
the
> way she says it)
>
> Philip Arnold
> 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.
> **
>
>
> --

> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
>

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



CFPOP Experts????

2000-10-04 Thread Randy Adkins

I am having problems with CFPOP.

I am attempting to POP the server and get a message. (See bottom for code)
However I get the following error:

Error Diagnostic Information
unknown exception condition
CFMLInterpreterImp::executePCode
Date/Time: 10/03/00 13:40:49
Browser: Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 5.0)


*** IP has been masked for this email ***


NONE

#support_headers.from#


Thanks for any assistance you can give.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Page hanging in netscape

2000-10-04 Thread Vance_Duke


One of the reasons that your page might be hanging is that there is a know
issue with Netscape and DIV tags.  If there are too many DIV tags or you
are doing some complex DIV configuring (i.e. top and left location) then
this will cause Netscape to "hang" or crash.

Vance Duke
Cold Fusion Application Developer
i2 Technologies
(469) 357-4729



   

"Mark Adams"   

   

rnet.com>cc:   

 Subject: Page hanging in netscape 

10/03/00   

03:52 PM   

Please 

respond to 

cf-talk

   

   




Ok GURU's

I can't seem to locate the problem can someone take a look at this page and
see why netscape hangs on it?

Thanks for any hints on this.

http://www.madronalinks.com/rates.cfm

--

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.




--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: CFPOP Experts????

2000-10-04 Thread JustinMacCarthy

What version of CF?
~J

- Original Message -
From: "Randy Adkins" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Wednesday, October 04, 2000 1:13 PM
Subject: CFPOP Experts


> I am having problems with CFPOP.
>
> I am attempting to POP the server and get a message. (See bottom for code)
> However I get the following error:
>
> Error Diagnostic Information
> unknown exception condition
> CFMLInterpreterImp::executePCode
> Date/Time: 10/03/00 13:40:49
> Browser: Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 5.0)
>
>
> *** IP has been masked for this email ***
>  server="999.999.999.999" username="myname" password="mypass">
>
> NONE
> 
> #support_headers.from#
> 
>
> Thanks for any assistance you can give.
>
> --

> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
>
>

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: CFPOP Experts????

2000-10-04 Thread Randy Adkins

Cold Fusion - 4.01


-Original Message-
From: JustinMacCarthy [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, October 04, 2000 8:18 AM
To: CF-Talk
Subject: Re: CFPOP Experts


What version of CF?
~J

- Original Message -
From: "Randy Adkins" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Wednesday, October 04, 2000 1:13 PM
Subject: CFPOP Experts


> I am having problems with CFPOP.
>
> I am attempting to POP the server and get a message. (See bottom for code)
> However I get the following error:
>
> Error Diagnostic Information
> unknown exception condition
> CFMLInterpreterImp::executePCode
> Date/Time: 10/03/00 13:40:49
> Browser: Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 5.0)
>
>
> *** IP has been masked for this email ***
>  server="999.999.999.999" username="myname" password="mypass">
>
> NONE
> 
> #support_headers.from#
> 
>
> Thanks for any assistance you can give.
>
> --

> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
>
>


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Page hanging in netscape

2000-10-04 Thread Deanna L. Schneider

Didn't hang for me. In fact, it came up faster in netscape than in ie. Go
figure.

-d




Deanna Schneider
Interactive Media Developer
UWEX Cooperative Extension Electronic Publishing Group
103 Extension Bldg
432 N. Lake Street
Madison, WI 53706
(608) 265-7923



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: RDS stopped working

2000-10-04 Thread Philip Arnold - ASP

> Try stopping and re-starting the RDS service in the Services
> control panel.

The whole server has been restarted this morning, and I've stopped and
started all services... So no joy there...

Philip Arnold
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.
**


> -Original Message-
> From: stas [mailto:[EMAIL PROTECTED]]
> Sent: 04 October 2000 11:43
> To: CF-Talk
> Subject: RE: RDS stopped working
>
>
>
> -Original Message-
> From: Philip Arnold - ASP [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, October 04, 2000 6:40 AM
> To: CF-Talk
> Subject: RDS stopped working
>
>
> I must be having a brain dead moment...
>
> Our Intranet server has been working fine for ages and ages (CF Server Pro
> 4.5.1), but this morning it seems that RDS has quit working on me
>
> I can't for the life of me think how to check that it SHOULD be... the
> server handles CF pages quite happily, but since it's running all sorts of
> things, I don't want to run SQL Enterprise Manager on it, thus I'll rather
> use RDS to update databases and stuff
>
> I've been through the Administrator, but can't find anything
> (apart from the
> Studio Password) regarding RDS
>
> --
> 
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Shopping Cart For distributing Software online

2000-10-04 Thread Reynolds, Adam

To be honest you might want to have a standard ftp download but need an
unlock code for the program, which is emailed to the purchaser.

If this is not possible you could zip up a presentation using a password in
an inaccessible directory, move the zip file to an accessible directory,
then provide access via a emailed link and password.

> --
> From: Dick Applebaum[SMTP:[EMAIL PROTECTED]]
> Sent: 03 October 2000 18:43
> To:   CF-Talk
> Subject:  RE: Shopping Cart For distributing Software online
> 
> My CF Host has a cart with this capability:
> 
>http://www.onviasites.com
> 
> However, this cart (similar to most) provides an ftp address to 
> download online.
> 
> There is no protection against someone publishing the ftp address.
> 
> If you want better protection I would suggest the following:
> 
> 1) do not publish a ftp address
> 
> 2) after cc authorization, perform the download from the CF program 
> using CFCONTENT.
> 
> Another alternative is sending the file as an attachment to an email 
> (if it is small enough).
> 
> 3) If you cannot use CFCONTENT (not available on some  hosts) you can 
> approximate this by copying the file to a special directory that you 
> delete after say 4 hours.
> 
> HTH
> 
> Dick
> 
> At 10:58 AM -0400 10/3/00, Kevin Langevin wrote:
> >Has anyone built a shopping cart for purposes of distributing software
> >online?  I've a client that wants to allow members to purchase online
> >presentations which will be downloadable.  Any suggestions would be
> >helpful...
> >
> >
> >-Kev
> >
> >
> --
> 
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.
> 
**
 This email and any attachments are confidential and solely
 for the use of the intended recipient.  They may contain
 material protected by legal professional or other privilege.
 If you are not the intended recipient or the person responsible
 for delivering to the intended recipient, you are not authorised
 to and must not disclose, copy, distribute or retain this email
 or its attachments.  Although this email and its attachments
 are believed to be free of any virus or other defect, it is the
 responsibility of the recipient to ensure that they are virus free
 and no responsibility is accepted by the company for any
 loss or damage arising from receipt or use thereof.

**
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Client Variables

2000-10-04 Thread Andy Ewings

Ok guys I think I already know the answer to this but thought I'd check with
the experts!

I've always avoided having too many session variables in my apps if I was
storing then in Server memory for obvious performance reasons.  If I am
using Client vaiable stored in a database are there any disadvantages in
having too many?  I guess it will invariably mean more hits to the database
but is that the only point to note?


--
Andrew Ewings
Project Manager
Thoughtbubble Ltd
--

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: RDS stopped working

2000-10-04 Thread Philip Arnold - ASP

> Seems u r using CF studio. Correct ... coz u can use RDS through CF studio
> as well as through normal windows explorer. Once u install CF
> Studio it adds
> 1 option in explorer i.e. Allaire FTP & RDS. Now on CF server PC check RDS
> service is started on not ? If not then pls start the service. Now open
> explorer click on Allaire FTP, right click on this option. It
> will provide u
> 2 options add rds server & add ftp server, so select add RDS server. Now
> give host description as anything u want, in host name field give
> IP address
> of RDS server PC i.e.. CF Server PC, in user name field give the user name
> administrator & give password which u have given for CF Studio in
> CF Server administrator page.

OK, I've had RDS setup and working on CF4 for ages, and my RDS setting have
been working since then...

Both the RDS for data and file use (in Explorer) produce no results.
I've tried the Administrator with and without a password, again, both
produce no result...

As I just sent to Stas, I've stopped and started the service, and the whole
server today, but still no joy.

I'm currently using CFStudio 4.5.1 SP1 Beta, but others using 4.5a and 4.5.1
in the office have the same problems.

Philip Arnold
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.
**


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Shopping Cart For distributing Software online

2000-10-04 Thread Angel Stewart

You can buy zip password crackers for about 30US online.

Depending on the length and complexity of the password, a decent Pentium III
computer can crack the file in a few hours.

or..so I've heard.

*ahem*

^_^

-Gel

- Original Message -
From: Reynolds, Adam <[EMAIL PROTECTED]>

> If this is not possible you could zip up a presentation using a password
in
> an inaccessible directory, move the zip file to an accessible directory,
> then provide access via a emailed link and password.


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Able Commerce Guru's?

2000-10-04 Thread Will Ryan

Hai!

  Any one out there know how to add text boxes to a product; for example
shoe size that would populate the custom fields?

Thanks,
 Will


Will Ryan
[EMAIL PROTECTED]
http://www.zerotoeighty.com
w: 410-327-9152
f: 410-327-4086

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: OT BUT CRITICALLY IMPORTANT...

2000-10-04 Thread Philip Arnold - ASP

> My apology for taking this risk but...
>
> Death of U.S. IT Industry: Neo-Nazi Fascist
> Scum Sell Out Native Sons



> Don't forget this tonight when you listen to those
> two neo-nazi fascist bastards Gore & Bush.

Even though I'm a Brit, so this doesn't effect me at all, I've got one thing
to say on this matter...

Companies tend to employ IT staff on their skills, not their wages (apart
from the stupid ones who know nothing about IT anyways), so if a "scab"
comes in and knows less than a "home grown" talent, then my assumption would
be that they'd employ the person who can do the job better...

I have worked in companies that have employed on the "Low Wages must mean
better staff" and the employees only lasted a month-six weeks before being
releived of their duties...

My last word on this is that to stay ahead, you should be better at the
job... even if there weren't foreign people coming in to apply, then that
should be the case no matter what.

If I'm wrong on this, then there must be an awful lot of stupid Personnel
Departments around!

Philip Arnold
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.
**


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: OT BUT CRITICALLY IMPORTANT... MOVE THIS TO CFCOMMUNITY

2000-10-04 Thread Reynolds, Adam

Can this be moved to CFCOMMUNITY. It is not a technical problem but a social
one.

> --
> From: Philip Arnold - ASP[SMTP:[EMAIL PROTECTED]]
> Sent: 04 October 2000 13:50
> To:   CF-Talk
> Subject:  RE: OT BUT CRITICALLY IMPORTANT...
> 
> > My apology for taking this risk but...
> >
> > Death of U.S. IT Industry: Neo-Nazi Fascist
> > Scum Sell Out Native Sons
> 
> 
> 
> > Don't forget this tonight when you listen to those
> > two neo-nazi fascist bastards Gore & Bush.
> 
> Even though I'm a Brit, so this doesn't effect me at all, I've got one
> thing
> to say on this matter...
> 
> Companies tend to employ IT staff on their skills, not their wages (apart
> from the stupid ones who know nothing about IT anyways), so if a "scab"
> comes in and knows less than a "home grown" talent, then my assumption
> would
> be that they'd employ the person who can do the job better...
> 
> I have worked in companies that have employed on the "Low Wages must mean
> better staff" and the employees only lasted a month-six weeks before being
> releived of their duties...
> 
> My last word on this is that to stay ahead, you should be better at the
> job... even if there weren't foreign people coming in to apply, then that
> should be the case no matter what.
> 
> If I'm wrong on this, then there must be an awful lot of stupid Personnel
> Departments around!
> 
> Philip Arnold
> 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.
> **
> 
> 
> --
> 
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.
> 
**
 This email and any attachments are confidential and solely
 for the use of the intended recipient.  They may contain
 material protected by legal professional or other privilege.
 If you are not the intended recipient or the person responsible
 for delivering to the intended recipient, you are not authorised
 to and must not disclose, copy, distribute or retain this email
 or its attachments.  Although this email and its attachments
 are believed to be free of any virus or other defect, it is the
 responsibility of the recipient to ensure that they are virus free
 and no responsibility is accepted by the company for any
 loss or damage arising from receipt or use thereof.

**
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Mail list question :: CFmail & Exchange.

2000-10-04 Thread Paul Ihrig

hello.
if i use a form using cfmail
can i have the to field use a mail list on the exchange server?
Studio 1 Columbus




thanks

-paul
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Able Commerce Guru's?

2000-10-04 Thread Stephen Moretti

Will,


>
> Hai!
>
>   Any one out there know how to add text boxes to a product; for example
> shoe size that would populate the custom fields?
>

"Yeah, you have to add 'options' (which has to be enabled first in
Administrator), then you can assign prices to those options. So one set of
options would be Shoe-Size or Colour - and they can be given different
prices if needs be. Its in the online manual."

The above is a quote from an ICQ from a friend who knows AbleCommerce pretty
well

Hope that helps.

Regards

Stephen

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: OT BUT CRITICALLY IMPORTANT...

2000-10-04 Thread Howie Hamlin

You're not *my* peer...

- Original Message -
From: "Clinton Gallagher" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, October 03, 2000 5:17 PM
Subject: OT BUT CRITICALLY IMPORTANT...


> Think about this my peers. After all, we've been smart
>
> <%= Clinton Gallagher
> http://www.MetroMilwaukee.com/ClintonGallagher/
> --



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Error creating Verity collection

2000-10-04 Thread Richard Brotherton A/Prog CP

Steve,

This error ususally occurs when you try to create a collection that already
exsists.  If you have been deleting mapped collections, CF only deletes the
mapping, not the collection, you would need to physically delete the
structure.  Remember, that the names of collections need to be unique,
through-out the entire 'collections' structure.

Hope this helps

Richard

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: 04 October 2000 12:26
To: CF-Talk
Subject: Error creating Verity collection


I have been happily creating and deleting Verity collections for a 
few days now either via the Administrator or code (CF 4.5, NT 
Server).  However, when I try to create a collection now I am given 
the error message "Error creating Verity collection".  

I have deleted all the collections, but CF still refuses to play ball.

Any suggestions?

Thanks

Steve


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



CFIF discussion

2000-10-04 Thread W Luke

Hi,

I'm 5 weeks into Cold Fusion and have a question for the Experienced Masses.

So far in my programming, I try to keep all the code in one file as much as
possible.  For example, if I have a form that is used as part of a Query,
then I'll obviously "post" that form' data to the same page, resulting in a
number of .

However, at what stage would you suggest that this isn't a good idea?  I've
been doing a small sub-project today which is about 400 lines long, and by
17:00 will be considerably bigger.  Is this a case of "whatever suits you
best?"

I'd be interested to hear everyone's opinions.

Will



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Conference - unofficial list of attendees

2000-10-04 Thread Paul Ihrig

Error Occurred While Processing Request
Error Diagnostic Information Just in time compilation error  unknown parser
error  The last successfully parsed CFML construct was the CFML template
beginning occupying document position (1:1) to (1:1).  The specific sequence
of files included or processed is:
C:\Inetpub\cfm-resources.com\web\members\dshadovi\AddEntry.cfm  Date/Time:
10/04/00 09:04:31 Browser: Mozilla/4.0 (compatible; MSIE 5.01; Windows NT;
AIT) Remote Address: 63.69.175.69 HTTP Referer:
http://www.cfm-resources.com/members/dshadovi/index.html



> -Original Message-
> From: David Shadovitz [SMTP:[EMAIL PROTECTED]]
> Sent: Friday, September 29, 2000 4:57 PM
> To:   CF-Talk
> Subject:  Conference - unofficial list of attendees
> 
> Friends,
> 
> I greatly enjoy this email forum, and I look forward to meeting those of
> you who'll be at the Allaire Developer Conference.  To abet this, I
> created a simple signup page at
> www.cfm-resources.com/members/dshadovi/index.html.  I invite all
> attendees to sign up.  Then we'll all know whom to expect.
> 
> (As many of you know, the CFM Resources server is often down.  Sorry if
> the site is hard to get to.)
> 
> -David
> 
> YOU'RE PAYING TOO MUCH FOR THE INTERNET!
> Juno now offers FREE Internet Access!
> Try it today - there's no risk!  For your FREE software, visit:
> http://dl.www.juno.com/get/tagj.
> --
> 
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: CFIF discussion

2000-10-04 Thread William J Wheatley

I and many others us a methology *looks around* called fusebox
www.fusebox.org.
Its a way we write and organize code so its easier to read, to develop with
multiple users, etc. Read the site you may find it more to your liking if
you need anymore help with it, goto www.houseoffusion.com and join the
FUSEBOX talk list. And the fuseboxers (myself included) will be more the
happy to help ya.



"Please forward all Complaints to /dev/null"

Bill Wheatley
Director of Development
AEPS INC
Allaire Coldfusion Consulting Partner
www.aeps.com
www.aeps2000.com
954-472-6684 X303
ICQ: 417645


- Original Message -
From: "W Luke" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Wednesday, October 04, 2000 9:10 AM
Subject: CFIF discussion


> Hi,
>
> I'm 5 weeks into Cold Fusion and have a question for the Experienced
Masses.
>
> So far in my programming, I try to keep all the code in one file as much
as
> possible.  For example, if I have a form that is used as part of a Query,
> then I'll obviously "post" that form' data to the same page, resulting in
a
> number of .
>
> However, at what stage would you suggest that this isn't a good idea?
I've
> been doing a small sub-project today which is about 400 lines long, and by
> 17:00 will be considerably bigger.  Is this a case of "whatever suits you
> best?"
>
> I'd be interested to hear everyone's opinions.
>
> Will
>
>
>
> --

> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
>

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: CFIF discussion

2000-10-04 Thread paul smith

Run, don't walk, to www.fusebox.org for a methodology
many like that is just the opposite of what you are
trying.

best,  paul

At 02:10 PM 10/4/00 +0100, you wrote:
>Hi,
>
>I'm 5 weeks into Cold Fusion and have a question for the Experienced Masses.
>
>So far in my programming, I try to keep all the code in one file as much as
>possible.  For example, if I have a form that is used as part of a Query,
>then I'll obviously "post" that form' data to the same page, resulting in a
>number of .
>
>However, at what stage would you suggest that this isn't a good idea?  I've
>been doing a small sub-project today which is about 400 lines long, and by
>17:00 will be considerably bigger.  Is this a case of "whatever suits you
>best?"
>
>I'd be interested to hear everyone's opinions.
>
>Will
>
>
>
>--
>Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
>To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or 
>send a message to [EMAIL PROTECTED] with 'unsubscribe' in 
>the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Able Commerce Guru's?

2000-10-04 Thread Larry Juncker

Go into the ProdWiz? file that you are using for that store.  If you are
using custom wizards, this file will be located under your store install in
the wizards directory.

Look in your admin portion of the site and see which prodwiz you are using
for this store, make a copy of it and add the copy as a new wizard and then
change the code as needed.

The customfield are already defined, you just have to edit how they are
viewed.

Larry Juncker
Senior Cold Fusion Programmer
Heartland Communications Group, Inc.

-Original Message-
From: Will Ryan [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, October 04, 2000 7:47 AM
To: CF-Talk
Subject: Able Commerce Guru's?


Hai!

  Any one out there know how to add text boxes to a product; for example
shoe size that would populate the custom fields?

Thanks,
 Will


Will Ryan
[EMAIL PROTECTED]
http://www.zerotoeighty.com
w: 410-327-9152
f: 410-327-4086


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Protecting Content ... A nice solution

2000-10-04 Thread Nadir Ait-Laoussine

To all who have participated on this discussion Thank you very much.  With
all the feedback I received from here, we were able to come up with a cross
browser solution which worked quite well.  The challenge was to embed the
output of the  CFcontent tag with the rest of the page.  This of course is
not doable, as CFcontent explodes to the full extent of the window.

Using Frames and Layers and the cf_aebrowser custom tag we were able to
create a secure and simple solution.
Secure: because it is a cfm document and it validates user authentication
while never displaying the file name or the location
simple, only cfcontent and some browser check code.  Much more simple to
implement than a $40,000 server to protect content (company name will be
witheld :))

If you are interested in seeing it in action, go to:
http://www.edificium.com/imagetest/getstuff.cfm

This doesn't take into account our security framework, but it shows how it
works.

Again, thanks a lot to all who have helped out on this matter.

Nadir Ait-Laoussine
PS: I would be glad to make the code available to anyone who would like it.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Monday, October 02, 2000 1:02 PM
To: CF-Talk
Subject: RE: Protecting Content / content leeching... A CF method?



As anyone who's ever worked with HTTP at the protocol level (or with CFHTTP)
can tell you, the way it works is you fetch the html (or cfm) document in
question, then parse through it looking for all the img url, then fetch them
BASED ON THIER URL.

Thus it's impossible to protect them. You can use cfcontent with a cfm to
obsure their actual physical location. But whether the image is at
"images\bob.gif" or "images.cfm?image=bob.gif" they still retrieve the
content for display (or to save).

You could do additional cgi user agent and refer(r)er checking to stop
casual direct grabs from the browser command line, but it won't stop
anything else.

Since it's a relative url based the wwwroot of the domain I'm not sure why
it would matter anyway unless the images are to be password protected..

--min

> The issue is not to make a document not available to someone who
> can see it
> but to someone who cannot see it...
>
> Case in point...  the  tag will let you know that a file is
> located at /a/b/file.jpg
> so you could go to the location bar and look for that image.  You
> could get
> tricky and try to view other files located at that location...
> /a/b/anotherfile.jpg.  For us, that is a problem.  The img tag reveals a
> little too much information.
>
> So the concern is not so much the document itself, but rather the
> ability to
> figure out where it is located.  It's been recommended to me to use CF
> mappings to substitue for that, problem is that CF mappings, as far as I
> know, do not work with the IMG tag, let alone the EMBED tag.
>
> So I am left with the CFCONTENT tag, problem with the content tag
> is that it
> takes over the entire screen.  I've tried to embed it in a layer
> or IFRAME,
> but it still takes over the whole window.
>
> There are a few PERL scripts out there that "mask" the path to
> the file.  So
> by typing www.mydomain.com/getstuff.cgi?image.jpg, the script
> would display
> the image but masking it's location (which in reality is not a
> web location,
> but a physical location on the web server [c:\...]) This works well except
> that all the scripts that I have tried choke (by that I mean render only
> part of) the file.  regardless of the MIME type.  I think the problem is
> that those scripts were written on UNIX, and we are on WIN2K.
>
> So that is where we are.
>
> Note that the last option (the PERL option) is still not exactly
> what we are
> looking for because of
> 1. security problems with CGI scripts in general
> 2. it does not work with the IMG tag.
>
> Nadir


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: OT BUT CRITICALLY IMPORTANT...

2000-10-04 Thread Kevin Langevin

Dude...you drank WAY too much coffee before writing this e-mail.  Relax...if
you're good at what you do, you're not going to be affected.  If you're not
good at what you do, you will.  There will always be jobs, and there will
always be a demand.  IT covers a LOT of ground, and if foreign IT
professionals don't come to the U.S., then the work will just get sent
elsewhere by the companies that are looking to cut costs that drastically.
This discussion belongs on CF_COMMUNITY, but CF-TALK.


-Kev


> -Original Message-
> From: Clinton Gallagher [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, October 03, 2000 5:18 PM
> To: CF-Talk
> Subject: OT BUT CRITICALLY IMPORTANT...
>
>
> My apology for taking this risk but...
>
> Death of U.S. IT Industry: Neo-Nazi Fascist
> Scum Sell Out Native Sons
>
> BREAKING NEWS FROM CONGRESS:
>
> Today, the neo-nazi fascist scum - Congress - passed
> into law the approval for the import of 200,000
> foreign IT scabs.Each and every year for the next
> three years there will be 200,000 scabs imported
> into our nation to be pitted against native American
> workers in the IT industry.
>
> Let's do some simple arithmetic even a neo-nazi
> fascist scum supporter should understand...
>
> 200,000 imported scabs / year
> x 3 yrs
> 
> 600,000 Total Scabs in 3 years
>
> Assume there is one major metropolitan area in
> each state. This equivocates to 3,000 scabs per
> metropolitan area!!!
>
> These scabs can work here for 6 years.
> This equivocates to:
>
> 18 YEARS OF 600,000 SCABS ON AMERICAN SOIL!
>
> TOTAL DECIMATION OF THE AMERICAN
>IT WORKFORCE!!!
>
> This move will pit native American jobs and
> those of us who have worked our asses off to pay
> for university degrees and then sacrifice our
> days and nights and weeks and months of endless
> post-graduate study and work to be successful.
>
> Within a year we will start getting laid off and
> then the labor pimps will force people to accept
> work - if there will even be a job offer - for
> wages that will be reduced to those of the garbage man.
>
> The scabs get all their expenses paid and their taxes
> are entirely different. They pay nothing for school.
> They will likely pay nothing for housing for their
> first year until they 'get on their feet'. The scabs
> are *supposed* to be getting paid a rumored $60,000
> annual salary which the neo-nazi fascist scum claim
> will not undermine American jobs.
>
> BULLSHIT! It will mean a reduction of wages of at least
> $30,000 a year or more for native American workers.
>
> Let's not be fools and misunderstand my simple scenario
> that is not as accurate as it could be but clearly shows
> the implications and furthermore it is highly likely
> this will never be recinded as it will be tagged as a
>'success'
>
> Think about this my peers. After all, we've been smart
> enough and motivated to keep this nation running and
> prosperous for the last ten  years and now we're all
> getting flushed down the toilet by the neo-nazi fascist
> scum politicians who are obviously getting paid off
> with 'soft money'.
>
> Did your employer contribute to the corruption fund?
>
> I would not ordinarily spam the Usenet but this sh!t is
> unreal. What's the matter with us? Why can't we organize
> and resist this effort to destroy our lives, our careers
> and any opportunity to have families and a life of
> prosperity as a result of our merits?
>
> Don't forget this tonight when you listen to those
> two neo-nazi fascist bastards Gore & Bush.
>
> <%= Clinton Gallagher
> http://www.MetroMilwaukee.com/ClintonGallagher/
> --
> 
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: CFIF discussion

2000-10-04 Thread Robert Everland

Or we can just answer your question. If it's getting huge the best part is
to use a method from the fusebox methodology which is to take the code you
have between your if statements and make them other pages. So you have maybe
5 cfif and the total code is 500 lines you can break it up so instead of the
code there is a cfinclude there. Fusebox isn't the save all method of this
world, you can take a look at it, but you just wanted a simple answer and
there you go.

Robert Everland III
Web Developer
Dixon Ticonderoga


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, October 04, 2000 9:16 AM
To: CF-Talk
Cc: [EMAIL PROTECTED]
Subject: Re: CFIF discussion


Run, don't walk, to www.fusebox.org for a methodology
many like that is just the opposite of what you are
trying.

best,  paul

At 02:10 PM 10/4/00 +0100, you wrote:
>Hi,
>
>I'm 5 weeks into Cold Fusion and have a question for the Experienced
Masses.
>
>So far in my programming, I try to keep all the code in one file as much as
>possible.  For example, if I have a form that is used as part of a Query,
>then I'll obviously "post" that form' data to the same page, resulting in a
>number of .
>
>However, at what stage would you suggest that this isn't a good idea?  I've
>been doing a small sub-project today which is about 400 lines long, and by
>17:00 will be considerably bigger.  Is this a case of "whatever suits you
>best?"
>
>I'd be interested to hear everyone's opinions.
>
>Will
>
>
>
>---
---
>Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
>To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or 
>send a message to [EMAIL PROTECTED] with 'unsubscribe' in 
>the body.


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: CFIF discussion

2000-10-04 Thread W Luke

I could have predicted someone suggesting that!  It's something I've read
and talked about with many in here...haven't got round to implementing it
yet though..

Will
- Original Message -
From: "paul smith" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Wednesday, October 04, 2000 2:16 PM
Subject: Re: CFIF discussion


> Run, don't walk, to www.fusebox.org for a methodology
> many like that is just the opposite of what you are
> trying.
>
> best,  paul
>
> At 02:10 PM 10/4/00 +0100, you wrote:
> >Hi,
> >
> >I'm 5 weeks into Cold Fusion and have a question for the Experienced
Masses.
> >
> >So far in my programming, I try to keep all the code in one file as much
as
> >possible.  For example, if I have a form that is used as part of a Query,
> >then I'll obviously "post" that form' data to the same page, resulting in
a
> >number of .
> >
> >However, at what stage would you suggest that this isn't a good idea?
I've
> >been doing a small sub-project today which is about 400 lines long, and
by
> >17:00 will be considerably bigger.  Is this a case of "whatever suits you
> >best?"
> >
> >I'd be interested to hear everyone's opinions.
> >
> >Will
> >
> >
> >
>
>---
---
> >Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> >To Unsubscribe visit
> >http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
or
> >send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> >the body.
>
>

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: CFIF discussion

2000-10-04 Thread Paul Johnston

I have tried this before and have come up with two important points.

Don't use a bunch of


Do processing...

Do processing...

Do processing...

Do processing...

Do processing...


Use



Do processing...


Do processing...


Do processing...


Do processing...


Do processing...



It's much much quicker.

Also, take a look at fusebox (it uses the idea of using one page to do all
the work as it's basis) at www.fusebox.org

Paul

> -Original Message-
> From: W Luke [mailto:[EMAIL PROTECTED]]
> Sent: 04 October 2000 14:11
> To: CF-Talk
> Subject: CFIF discussion
>
>
> Hi,
>
> I'm 5 weeks into Cold Fusion and have a question for the
> Experienced Masses.
>
> So far in my programming, I try to keep all the code in one file
> as much as
> possible.  For example, if I have a form that is used as part of a Query,
> then I'll obviously "post" that form' data to the same page,
> resulting in a
> number of .
>
> However, at what stage would you suggest that this isn't a good
> idea?  I've
> been doing a small sub-project today which is about 400 lines long, and by
> 17:00 will be considerably bigger.  Is this a case of "whatever suits you
> best?"
>
> I'd be interested to hear everyone's opinions.
>
> Will
>
>
>
> --
> 
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf
_talk or send a message to [EMAIL PROTECTED] with
'unsubscribe' in the body.


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: OT: Video format

2000-10-04 Thread Paul Ihrig

i am very happy with or Matrox DigiSuit.
you can get the card for around
 <<...OLE_Obj...>> 

very good quality, mid to high end.
plenty of effects.
-paul

> -Original Message-
> From: Richard Ramos [SMTP:[EMAIL PROTECTED]]
> Sent: Tuesday, October 03, 2000 2:27 PM
> To:   CF-Talk
> Subject:  Re: OT: Video format
> 
> You need to have a capture card installed on your machine.  We use
> Broadway
> cards, but they cost $700 a pop.  I would recommend the Osprey 200 card
> from
> Viewcast.  They cost about $200 each, I believe.  Check their website to
> be
> sure.  Also, Winnov Videum, I think it works with both Real and Windows
> Media, $200? a pop.  There are other cards probably for cheaper, but these
> are very good quality cards for the price.
> 
> Richard Ramos
> Network Administrator
> Softitler Net, Inc.
> www.softitler.com
> [EMAIL PROTECTED]
> 
> - Original Message -
> From: "paul smith" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Tuesday, October 03, 2000 10:50 AM
> Subject: Re: OT: Video format
> 
> 
> > How do you get the video from tape to digital?
> >
> > best,  paul
> >
> > At 12:46 PM 10/3/00 -0400, you wrote:
> > >You must use their "Real Producer" which is also free (or Media Cleaner
> > >Pro which is not) to convert a video to the Real Format.
> >
> >
> --
> 
> > Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> > To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.
> >
> 
> --
> 
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: OT BUT CRITICALLY IMPORTANT...

2000-10-04 Thread Kevin Schmidt

Just had to chime in before this goes away...H1-B lets in all types of tech
workers..Scientists, Engineers, etc.  So not all of the people coming in
will be programmersKevin is right if you are good at what you do their
will always be a place for you.

Kevin
- Original Message -
From: "Kevin Langevin" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Wednesday, October 04, 2000 8:20 AM
Subject: RE: OT BUT CRITICALLY IMPORTANT...


> Dude...you drank WAY too much coffee before writing this e-mail.
Relax...if
> you're good at what you do, you're not going to be affected.  If you're
not
> good at what you do, you will.  There will always be jobs, and there will
> always be a demand.  IT covers a LOT of ground, and if foreign IT
> professionals don't come to the U.S., then the work will just get sent
> elsewhere by the companies that are looking to cut costs that drastically.
> This discussion belongs on CF_COMMUNITY, but CF-TALK.
>
> 
> -Kev
> 
>
> > -Original Message-
> > From: Clinton Gallagher [mailto:[EMAIL PROTECTED]]
> > Sent: Tuesday, October 03, 2000 5:18 PM
> > To: CF-Talk
> > Subject: OT BUT CRITICALLY IMPORTANT...
> >
> >
> > My apology for taking this risk but...
> >
> > Death of U.S. IT Industry: Neo-Nazi Fascist
> > Scum Sell Out Native Sons
> >
> > BREAKING NEWS FROM CONGRESS:
> >
> > Today, the neo-nazi fascist scum - Congress - passed
> > into law the approval for the import of 200,000
> > foreign IT scabs.Each and every year for the next
> > three years there will be 200,000 scabs imported
> > into our nation to be pitted against native American
> > workers in the IT industry.
> >
> > Let's do some simple arithmetic even a neo-nazi
> > fascist scum supporter should understand...
> >
> > 200,000 imported scabs / year
> > x 3 yrs
> > 
> > 600,000 Total Scabs in 3 years
> >
> > Assume there is one major metropolitan area in
> > each state. This equivocates to 3,000 scabs per
> > metropolitan area!!!
> >
> > These scabs can work here for 6 years.
> > This equivocates to:
> >
> > 18 YEARS OF 600,000 SCABS ON AMERICAN SOIL!
> >
> > TOTAL DECIMATION OF THE AMERICAN
> >IT WORKFORCE!!!
> >
> > This move will pit native American jobs and
> > those of us who have worked our asses off to pay
> > for university degrees and then sacrifice our
> > days and nights and weeks and months of endless
> > post-graduate study and work to be successful.
> >
> > Within a year we will start getting laid off and
> > then the labor pimps will force people to accept
> > work - if there will even be a job offer - for
> > wages that will be reduced to those of the garbage man.
> >
> > The scabs get all their expenses paid and their taxes
> > are entirely different. They pay nothing for school.
> > They will likely pay nothing for housing for their
> > first year until they 'get on their feet'. The scabs
> > are *supposed* to be getting paid a rumored $60,000
> > annual salary which the neo-nazi fascist scum claim
> > will not undermine American jobs.
> >
> > BULLSHIT! It will mean a reduction of wages of at least
> > $30,000 a year or more for native American workers.
> >
> > Let's not be fools and misunderstand my simple scenario
> > that is not as accurate as it could be but clearly shows
> > the implications and furthermore it is highly likely
> > this will never be recinded as it will be tagged as a
> >'success'
> >
> > Think about this my peers. After all, we've been smart
> > enough and motivated to keep this nation running and
> > prosperous for the last ten  years and now we're all
> > getting flushed down the toilet by the neo-nazi fascist
> > scum politicians who are obviously getting paid off
> > with 'soft money'.
> >
> > Did your employer contribute to the corruption fund?
> >
> > I would not ordinarily spam the Usenet but this sh!t is
> > unreal. What's the matter with us? Why can't we organize
> > and resist this effort to destroy our lives, our careers
> > and any opportunity to have families and a life of
> > prosperity as a result of our merits?
> >
> > Don't forget this tonight when you listen to those
> > two neo-nazi fascist bastards Gore & Bush.
> >
> > <%= Clinton Gallagher
> > http://www.MetroMilwaukee.com/ClintonGallagher/
> > --
> > 
> > Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> > To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.
>
> --

> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
>

---

RE: Help! Cold Fusion error and Oracle!

2000-10-04 Thread Robert Sarno

Also when porting to ORacle from Access, you need to keep in mind syntax.  I 
am not sure which way it goes, but soem SQL statements require ";" 
semicolons.  I thought case doesn't make a difference in SQL.  I hope it 
helps.  Good luck.

Rob
_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.

Share information about yourself, create your own public profile at 
http://profiles.msn.com.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Help! Cold Fusion error and Oracle!

2000-10-04 Thread Robert Sarno

I am sorry if I lead astray with  that message, but maybe you need a single 
quote around the live ='yes'.  Since it is a string you are looking for.

ROb


>From: "Larry Juncker" <[EMAIL PROTECTED]>
>Reply-To: [EMAIL PROTECTED]
>To: CF-Talk <[EMAIL PROTECTED]>
>Subject: RE: Help! Cold  Fusion error and Oracle!
>Date: Tue, 3 Oct 2000 07:40:37 -0500
>MIME-Version: 1.0
>Received: from [207.31.122.140] by hotmail.com (3.2) with ESMTP id 
>MHotMailBBA31FC2007840042A1ACF1F7A8C056B0; Tue Oct 03 05:44:52 2000
>Received: from public.hlipublishing.com ([209.234.84.7])  by 
>www.houseoffusion.com (Post.Office MTA v3.5.3 release 223  ID# 
>0-54969U100L100S0V35) with ESMTP id com  for 
><[EMAIL PROTECTED]>; Tue, 3 Oct 2000 08:50:51 -0400
>Received: from Larry (larry.hlipublishing.com [209.234.84.35])by 
>public.hlipublishing.com (Build 101 8.9.3/NT-8.9.3) with SMTP id 
>HAA01757for <[EMAIL PROTECTED]>; Tue, 03 Oct 2000 07:46:07 -0500
>From [EMAIL PROTECTED] Tue Oct 03 05:46:41 2000
>Message-ID: <000d01c02d37$224d0ce0$2354ead1@HEARTLAND>
>In-Reply-To: <[EMAIL PROTECTED]>
>Importance: Normal
>Return-Path: [EMAIL PROTECTED]
>
>Check the case of your column names.  I did that yesterday and just because
>I had one of the column names capitalized, my query would not run properly.
>
>Larry Juncker
>Senior Cold Fusion Programmer
>Heartland Internet
>
>-Original Message-
>From: Jeff Fongemie [mailto:[EMAIL PROTECTED]]
>Sent: Monday, October 02, 2000 8:29 PM
>To: CF-Talk
>Subject: Help! Cold Fusion error and Oracle!
>
>
>Hi all,
>
>I have a site that was built using an Access database. I'm trying to use an
>Oracle database instead but keep getting this error message:
>
>Error Diagnostic Information
>Oracle Error Code = 904
>
>ORA-00904: invalid column name
>
>
>
>Data Source = "847_bib"
>
>SQL = "SELECT headline, news, blurb, date_entered, newsID, live FROM news
>WHERE (live = yes) ORDER by date_entered DESC"
>
>
>The error occurred while processing an element with a general identifier of
>(CFQUERY), occupying document position (5:1) to (5:56) in the template file
>D:\INETPUB\WWWROOT\HEADLINECOVER.CFM
>
>I had an Oracle guy create the database for me, and that seems fine, buy my
>Cold Fusion pages are now in error. What the heck is invalid column name?
>
>THis is the page in question (headlinecover.cfm):
>
>
>
>SELECT  headline, news, blurb, date_entered, newsID, live
>FROM news
>WHERE (live = yes)
>
>ORDER by date_entered DESC
>
>
>
> 
>
>
>
> 
> 
> 
> 
>
>
>
>
>
>
>
>color="##cc">#headline#
>color="black">#blurb# 
>
>href="news.cfm">More news...
>
>
>Thanks!!!
>
>
>--
>Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
>To Unsubscribe visit
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
>send a message to [EMAIL PROTECTED] with 'unsubscribe' in
>the body.
>
>
>--
>Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
>To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or 
>send a message to [EMAIL PROTECTED] with 'unsubscribe' in 
>the body.

_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.

Share information about yourself, create your own public profile at 
http://profiles.msn.com.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: OT, CRITICALLY OFF-TOPIC - TAKE IT OUTSIDE

2000-10-04 Thread Cameron Childress

Puleese.

-Cameron


Cameron Childress
ElliptIQ Inc.
p.770.460.7277.232
f.770.460.0963
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: OT BUT CRITICALLY IMPORTANT...

2000-10-04 Thread Mark W. Breneman

This has nothing to do with CF?This list is not the place to "soapbox".
Yes, I do realize that I this rebuttal is not for this list too but,...
Sorry!



neo-nazi fascist scum - Congress?  -Buzz word- What are you babbling about?
Let us take a look at this phrase?

neo-Na·zi: a member of a group espousing the programs and policies of
Hitler's Nazis

fas·cism: a political philosophy, movement, or regime (as that of the
Fascisti) that exalts nation and often race above the individual and that
stands for a centralized autocratic government headed by a dictatorial
leader, severe economic and social regimentation, and forcible suppression
of opposition.

Fist off "fascist"?  "that exalts nation often race above the individual"
Bringing foreigners in to work does not fit this label.

If you have a problem with Congress VOTE or leave the US.

That is enough for now back to work.



Also, if you will allow me to "me too". "Relax...if you're good at what you
do, you're not going to be affected." :-)  It will be ok.

Mark W. Breneman
-Cold Fusion Developer AND PROUD AMERICAN
-Network Administrator
  Vivid Media
  [EMAIL PROTECTED]
  www.vividmedia.com
  608.270.9770

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Image Processing Tag.

2000-10-04 Thread Nadir Ait-Laoussine

This message is in MIME format. Since your mail reader does not understand
this format, some or all of this message may not be legible.

--_=_NextPart_001_01C02E0B.227E1164
Content-Type: text/plain;
charset="iso-8859-1"

Hello all,
 
CFX_GIFGD used to work quite well, but does not support any of the latest
JPG formats.  I've heard of a CFX_IMAGE tag... but I can't seem to find a
valid link to it.  Does anyone know where I can find that tag, or another
Image Processing Tag?
 
Thanks
 
Nadir
 
 

--_=_NextPart_001_01C02E0B.227E1164
Content-Type: text/html;
charset="iso-8859-1"








Hello 
all,
 
CFX_GIFGD used to 
work quite well, but does not support any of the latest JPG formats.  I've 
heard of a CFX_IMAGE tag... but I can't seem to find a valid link to it.  
Does anyone know where I can find that tag, or another Image Processing 
Tag?
 
Thanks
 
Nadir
 
 

--_=_NextPart_001_01C02E0B.227E1164--
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Image Processing Tag.

2000-10-04 Thread JustinMacCarthy

Min has the dll on his site , but it's by Jukka Manner.

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

or directly

http://www.intrafoundation.com/3rdparty/CFX_Image.zip

it comes with lot of examples for thumbnailing , resizing etc

JustinMacCarthy


- Original Message -
From: "Nadir Ait-Laoussine" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Wednesday, October 04, 2000 2:58 PM
Subject: Image Processing Tag.


> This message is in MIME format. Since your mail reader does not understand
> this format, some or all of this message may not be legible.
>
> --_=_NextPart_001_01C02E0B.227E1164
> Content-Type: text/plain;
> charset="iso-8859-1"
>
> Hello all,
>
> CFX_GIFGD used to work quite well, but does not support any of the latest
> JPG formats.  I've heard of a CFX_IMAGE tag... but I can't seem to find a
> valid link to it.  Does anyone know where I can find that tag, or another
> Image Processing Tag?
>
> Thanks
>
> Nadir
>
>
>
> --_=_NextPart_001_01C02E0B.227E1164
> Content-Type: text/html;
> charset="iso-8859-1"
>
> 
> 
> 
>
>
> 
> 
> Hello
> all,
>  size=2> 
> CFX_GIFGD used
to
> work quite well, but does not support any of the latest JPG formats. 
I've
> heard of a CFX_IMAGE tag... but I can't seem to find a valid link to
it. 
> Does anyone know where I can find that tag, or another Image Processing
> Tag?
>  size=2> 
>  size=2>Thanks
>  size=2> 
>  size=2>Nadir
>  size=2> 
>  
>
> --_=_NextPart_001_01C02E0B.227E1164--
> --

> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
>
>

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Conference - unofficial list of attendees

2000-10-04 Thread David Shadovitz

Sorry, Paul and others.
That "position (1:1)" in the error message is a good indication that the
problem ain't my code (I usually get at least a few characters right) but
rather a server problem.
I encourage you to try again later, or to tell me to add it for you.
-David

On Wed, 4 Oct 2000 09:15:01 -0400 Paul Ihrig <[EMAIL PROTECTED]> writes:
> Error Occurred While Processing Request
> Error Diagnostic Information Just in time compilation error  unknown 
> parser
> error  The last successfully parsed CFML construct was the CFML 
> template
> beginning occupying document position (1:1) to (1:1).  The specific 
> sequence
> of files included or processed is:
> C:\Inetpub\cfm-resources.com\web\members\dshadovi\AddEntry.cfm  
> Date/Time:
> 10/04/00 09:04:31 Browser: Mozilla/4.0 (compatible; MSIE 5.01; 
> Windows NT;
> AIT) Remote Address: 63.69.175.69 HTTP Referer:
> http://www.cfm-resources.com/members/dshadovi/index.html  
> 
> 
> 
> > -Original Message-
> > From:   David Shadovitz [SMTP:[EMAIL PROTECTED]]
> > Sent:   Friday, September 29, 2000 4:57 PM
> > To: CF-Talk
> > Subject:Conference - unofficial list of attendees
> > 
> > Friends,
> > 
> > I greatly enjoy this email forum, and I look forward to meeting 
> those of
> > you who'll be at the Allaire Developer Conference.  To abet this, 
> I
> > created a simple signup page at
> > www.cfm-resources.com/members/dshadovi/index.html.  I invite all
> > attendees to sign up.  Then we'll all know whom to expect.
> > 
> > (As many of you know, the CFM Resources server is often down.  
> Sorry if
> > the site is hard to get to.)
> > 
> > -David

YOU'RE PAYING TOO MUCH FOR THE INTERNET!
Juno now offers FREE Internet Access!
Try it today - there's no risk!  For your FREE software, visit:
http://dl.www.juno.com/get/tagj.
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Help! Cold Fusion error and Oracle!

2000-10-04 Thread Dave Hannum


- Original Message -
From: "Robert Sarno" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Wednesday, October 04, 2000 9:44 AM
Subject: RE: Help! Cold Fusion error and Oracle!


>am not sure which way it goes, but soem SQL statements require ";"
>Rob

No - do not use a semi-colon in your SQL statement to Oracle.  You'll throw
an error.

Dave

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



cftransaction failed notification

2000-10-04 Thread j p

Is there a way to know (programatically - not looking at the db) if the 
queries in a cftransaction were successful? Does cftransaction return a 
failed code???

If not - does cftry/catch offer a way of knowing if the inserts were 
completed???

THX
_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.

Share information about yourself, create your own public profile at 
http://profiles.msn.com.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Detecting ActiveX capability

2000-10-04 Thread Claremont, Timothy S

I am having problems with an Active X application on some machines.

When the customer's security settings are set to not allow Active X
applications, an annoying message box pops up, and the phone rings off the
hook with questions about what *I* did wrong.

What options are available to me via ColdFusion to detect whether Active X
is enabled on the users machine, and handle the situation more elegantly?


Tim Claremont
Xerox Corporation

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Detecting ActiveX capability

2000-10-04 Thread William J Wheatley

hehe =) i can tell you what would want to say back to those people and tell
them what you did wrong


"Please forward all Complaints to /dev/null"

Bill Wheatley
Director of Development
AEPS INC
Allaire Coldfusion Consulting Partner
www.aeps.com
www.aeps2000.com
954-472-6684 X303
ICQ: 417645


- Original Message -
From: "Claremont, Timothy S" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Wednesday, October 04, 2000 10:52 AM
Subject: Detecting ActiveX capability


> I am having problems with an Active X application on some machines.
>
> When the customer's security settings are set to not allow Active X
> applications, an annoying message box pops up, and the phone rings off the
> hook with questions about what *I* did wrong.
>
> What options are available to me via ColdFusion to detect whether Active X
> is enabled on the users machine, and handle the situation more elegantly?
>
> 
> Tim Claremont
> Xerox Corporation
> 
> --

> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
>

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



attendance tracking functions

2000-10-04 Thread Tammy Schilling

Hi all,

A while back I designed a website for a local community group.  Part of this website 
was functions that would allow leaders to enter information about new members, update 
member
information, and look up needed member information.  Recently,  I was asked to expand 
these functions to include attendance tracking functions.  They want to be able to 
track
attendance at their monthly meetings, over months time, and when a member had their 
first meeting.  They also want to track memberships so that when it is time for a 
member to renew
it will flag the leader in some manner...perhaps sending an email monthly with all the 
memberships due to be renewed that month.

If anyone knows of any examples of sites that do this I would really appreciate it.  
I'm not really sure how I should go about setting this up.

Thanks!

Tammy Schilling


--
personal copy
Better living through computer graphics.
http://www.personal-copy.com


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



autoresize custom tag

2000-10-04 Thread sebastian palmigiani


I am having problems with the custom tag cf_autoresize:

-
Error loading CFX custom tag library

Windows NT error number 1157 occurred while attempting to load library
'c:\CFUSION\CFX\CFX_image.dll'.


How do I resolve this? image.dll is stored in the cfx directory of the cf
folder. I am using windows 98 with CF 4.0.


Also:

How do I make the image.dll file visible within win98 window explorer? In
the window explorer it shows as not being there but when I do a find file it
shows as there.

Sebastian





--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: CFIF discussion

2000-10-04 Thread Billy Cravens

I'm not going to jump on the Fusebox methodology bandwagon (though I do
use it, and it's decent, but I do not necessarily recommend it those new
to ColdFusion), but I will say that the idea behind Fusebox is a sound
one that you want to encompass.  You need to break your file up.  First
of all, it makes your code more maintainable.  Secondly, there's very
little overhead by doing so.  Additionally, multiple files is the norm
in the industry, so unless your going to be working for the same company
all your life, and they never change methodologies, you want to gear
your "education" towards what is most useful (whether it's
page1.cfm->page2.cfm->page3.cfm or
index.cfm?fuseaction=1->index.cfm?fuseaction=2, etc.).

I will caution you, and I've said it before:
Be very careful about separating language from methodology.  Whether you
keep an application the size of Amazon in one big .cfm file, traditional
linear development, FuseBox, CFObject, JoeBox, BillObjects, or whatever,
make sure you can separate that from CFML itself.  However, if you feel
very comfortable with your overall knowledge of ColdFusion, by all
means, try different methodology (just don't become a card-carrier :)

-- 
Billy Cravens
[EMAIL PROTECTED]


W Luke wrote:
> 
> Hi,
> 
> I'm 5 weeks into Cold Fusion and have a question for the Experienced Masses.
> 
> So far in my programming, I try to keep all the code in one file as much as
> possible.  For example, if I have a form that is used as part of a Query,
> then I'll obviously "post" that form' data to the same page, resulting in a
> number of .
> 
> However, at what stage would you suggest that this isn't a good idea?  I've
> been doing a small sub-project today which is about 400 lines long, and by
> 17:00 will be considerably bigger.  Is this a case of "whatever suits you
> best?"
> 
> I'd be interested to hear everyone's opinions.
> 
> Will
> 
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
>message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Changing web server software - Does CF care?

2000-10-04 Thread Reed Powell

I'm running WebsitePro, and CF 4.5.1, on my server.  Am going to change to
IIS sometime soon.
Is CF going to get upset about this?  When it installs, it wants to know
which website server
product to use (even if there is only one installed on the server), but I've
never  known how it uses that information.  Will I have to reinstall CF
(ugh, all those datasources to setup again)?

If I install IIS while WebsitePro is still on the server, can CF talk to it?
When I get rid of WebsitePro, is there an easy way to tell IIS to use port
80 (since Website would no longer be listening on it)?

Lots of questions, thanks in advance for the answers!
-reed

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Changing web server software - Does CF care?

2000-10-04 Thread Shawnea Carter

All you have to do is map cfm files to CF in IIS Enterprise Manager.

Shawnea

-Original Message-
From: Reed Powell [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, October 04, 2000 11:09 AM
To: CF-Talk
Subject: Changing web server software - Does CF care?


I'm running WebsitePro, and CF 4.5.1, on my server.  Am going to change to
IIS sometime soon.
Is CF going to get upset about this?  When it installs, it wants to know
which website server
product to use (even if there is only one installed on the server), but I've
never  known how it uses that information.  Will I have to reinstall CF
(ugh, all those datasources to setup again)?

If I install IIS while WebsitePro is still on the server, can CF talk to it?
When I get rid of WebsitePro, is there an easy way to tell IIS to use port
80 (since Website would no longer be listening on it)?

Lots of questions, thanks in advance for the answers!
-reed


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Web Trends Enterprise and Cold Fusion Siteminder Authentication Logging

2000-10-04 Thread Edward Chanter

Hi Gurus,

Does anyone have any experience trying to record and report on cold fusion
authenticated users within IIS logfiles. Ordinarily using Basic Auth and
entry is written to the IIS log detailing the user name used during
authentication. When you authenticate using siteminder this doesn't happen.

I'm basically interested in what experiences people have trying to track
their users' movements across the site right down to the user level (without
having to record a seperate database entry for each page view!)

Any and all help would be most appreciated

Thanks!

-= Edward

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: ColdFusion SP2

2000-10-04 Thread Won Lee

This may sound like a small thing, but it is because the solution is small
;)

in cfinput, can you put in email validation.  I think its something that is
easy enough to do, but used often enough to warrant.  I'm sick of cut and
pasteing JavaScript.

Won Lee
Software Engineer, 
Allaire Certified ColdFusion Developer
P: 212.609.1145, 212.652.9655


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Anyone know how to use CFPOP?

2000-10-04 Thread Randy Adkins

Cold Fusion Server version 4.01
Cold Fusion Studio version 4.0



I am having problems with CFPOP.

I am attempting to POP the server and get a message. (See bottom for code)
However I get the following error:

Error Diagnostic Information
unknown exception condition
CFMLInterpreterImp::executePCode
Date/Time: 10/03/00 13:40:49
Browser: Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 5.0)


*** IP has been masked for this email ***


NONE

#support_headers.from#


Thanks for any assistance you can give.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Anyone know how to use CFPOP?

2000-10-04 Thread JustinMacCarthy

>From the
ColdFusion 4.0 Release Notes
Updated October 5, 1998

a.. CFPOP throws an error when reading email messages that have a certain
date/time convention. This appears to be related to messages from Netscape's
InboxDirect or some other email that uses MDT instead of GMT. The error
message is (1858):

Error Occurred While Processing Request
Error Diagnostic Information
An error has occurred while processing the expression:
DateFormat(ParseDateTime(Mail.Date,"POP"),"ddd, d mmm ")
b.. CFPOP crashes when retrieving messages with action="GetAll" that contain
Content-Type: multipart/mixed or multipart/related. (6235)
c.. CFPOP doesn't recognize 8-bit attachment headers encoded by MIME. (6880)
d.. If an attachment's name is base64 encoded, CFPOP can not retrieve the
message, it times out. CPU usage pegs to 100%, and the memory use climbs.
After it times out not all memory is released. (7233)


Justin MacCarthy

- Original Message -
From: "Randy Adkins" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Wednesday, October 04, 2000 4:25 PM
Subject: Anyone know how to use CFPOP?


> Cold Fusion Server version 4.01
> Cold Fusion Studio version 4.0
>
>
>
> I am having problems with CFPOP.
>
> I am attempting to POP the server and get a message. (See bottom for code)
> However I get the following error:
>
> Error Diagnostic Information
> unknown exception condition
> CFMLInterpreterImp::executePCode
> Date/Time: 10/03/00 13:40:49
> Browser: Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 5.0)
>
>
> *** IP has been masked for this email ***
>  server="999.999.999.999" username="myname" password="mypass">
>
> NONE
> 
> #support_headers.from#
> 
>
> Thanks for any assistance you can give.
>
> --

> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
>
>

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Anyone know how to use CFPOP?

2000-10-04 Thread Randy Adkins

The error I am getting is show below.
Also we are not using Netscapes InboxDirect
or using multipart/mixer or related material.
Nor the 8bit MIME and there is no attachments.

The simple message of

To: [EMAIL PROTECTED]
From: [EMAIL PROTECTED]
Subject: Help Me
Body:
Does this work yet???

Like I said no attachments or anything
out of the norm. I only get the error
with GETALL. The GETHEADERONLY and DELETE
work fine.

Error is as follows:

> Error Diagnostic Information
> unknown exception condition
> CFMLInterpreterImp::executePCode
> Date/Time: 10/03/00 13:40:49
> Browser: Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 5.0)


Thanks for helping this is really bugging me.



-Original Message-
From: JustinMacCarthy [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, October 04, 2000 11:34 AM
To: CF-Talk
Subject: Re: Anyone know how to use CFPOP?


>From the
ColdFusion 4.0 Release Notes
Updated October 5, 1998

a.. CFPOP throws an error when reading email messages that have a certain
date/time convention. This appears to be related to messages from Netscape's
InboxDirect or some other email that uses MDT instead of GMT. The error
message is (1858):

Error Occurred While Processing Request
Error Diagnostic Information
An error has occurred while processing the expression:
DateFormat(ParseDateTime(Mail.Date,"POP"),"ddd, d mmm ")
b.. CFPOP crashes when retrieving messages with action="GetAll" that contain
Content-Type: multipart/mixed or multipart/related. (6235)
c.. CFPOP doesn't recognize 8-bit attachment headers encoded by MIME. (6880)
d.. If an attachment's name is base64 encoded, CFPOP can not retrieve the
message, it times out. CPU usage pegs to 100%, and the memory use climbs.
After it times out not all memory is released. (7233)


Justin MacCarthy

- Original Message -
From: "Randy Adkins" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Wednesday, October 04, 2000 4:25 PM
Subject: Anyone know how to use CFPOP?


> Cold Fusion Server version 4.01
> Cold Fusion Studio version 4.0
>
>
>
> I am having problems with CFPOP.
>
> I am attempting to POP the server and get a message. (See bottom for code)
> However I get the following error:
>
> Error Diagnostic Information
> unknown exception condition
> CFMLInterpreterImp::executePCode
> Date/Time: 10/03/00 13:40:49
> Browser: Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 5.0)
>
>
> *** IP has been masked for this email ***
>  server="999.999.999.999" username="myname" password="mypass">
>
> NONE
> 
> #support_headers.from#
> 
>
> Thanks for any assistance you can give.
>
> --

> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
>
>


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Brain Buster

2000-10-04 Thread Grady Milhon

I have a form, with a check box and two radio buttons.  When submitted, I want
two arrays, one with all checked items with the first radio button selected and
one with all checked items with the second radio button selected.  I am having a
very had time doing this.

Here is my code from the form:








 #name#
 
 Left
   Right
 






This code will display the values of the checkboxes that are checked:

(action.cfm)



 #aryBlocks[i]#




Can someone PLEASE help me.

Thanks,

Grady Milhon
[EMAIL PROTECTED] 
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Changing web server software - Does CF care?

2000-10-04 Thread paul smith

Care to share why?

At 11:09 AM 10/4/00 -0400, you wrote:
>I'm running WebsitePro, and CF 4.5.1, on my server.  Am going to change to
>IIS sometime soon.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Reliability of CFSCHEDULE in CF 4.5.1

2000-10-04 Thread Aidan Whitehall

> Is CFSCHEDULE any more reliable in v4.5.1 than in past 
> releases?  I've never
> trusted it, always using Windows AT to run batch files 
> launching templates.

I'm really struggling with the scheduler at the moment... nuthin' seems to
work (haven't tried setting up events using the CFSCHEDULE tag, though).

I took a quick look at help on the AT command the other day and wondered
where the hell to start. Do you have a sample batch file you could send me
to show how to set an AT job up?


On another note...
Smeone posted a message a couple of months ago on how to set up a scheduled
event so that it always worked... quite a detailed procedure. Does anyone
have a copy of that e-mail, or is the original poster listening?



Thanks

-- 
Aidan Whitehall <[EMAIL PROTECTED]>
Netshopper UK Ltd
Advanced Web Solutions & Services

http://www.netshopperuk.com/
Telephone +44 (01744) 648650
Fax +44 (01744) 648651
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: autoresize custom tag

2000-10-04 Thread Aidan Whitehall

> How do I resolve this? image.dll is stored in the cfx 
> directory of the cf
> folder. I am using windows 98 with CF 4.0.

Open up the ColdFusion administrator or go to
http://127.0.0.1/cfide/administrator/index.cfm

Log in and go to CFX tags

Then register the Image.dll as CFX_Image (you'll have to add the CFX_ name,
then click Browse Server and find the .dll file)




-- 
Aidan Whitehall <[EMAIL PROTECTED]>
Netshopper UK Ltd
Advanced Web Solutions & Services

http://www.netshopperuk.com/
Telephone +44 (01744) 648650
Fax +44 (01744) 648651
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Reliability of CFSCHEDULE in CF 4.5.1

2000-10-04 Thread Top-Link Tech (John Ceci)

Aidan,

I believe in the Windows NT resource kit you can find WinAT which is a
graphical interface to teh command line AT command, that should help you a
ton into using it...

John

-Original Message-
From: Aidan Whitehall [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, October 04, 2000 10:48 AM
To: CF-Talk
Subject: RE: Reliability of CFSCHEDULE in CF 4.5.1


> Is CFSCHEDULE any more reliable in v4.5.1 than in past
> releases?  I've never
> trusted it, always using Windows AT to run batch files
> launching templates.

I'm really struggling with the scheduler at the moment... nuthin' seems to
work (haven't tried setting up events using the CFSCHEDULE tag, though).

I took a quick look at help on the AT command the other day and wondered
where the hell to start. Do you have a sample batch file you could send me
to show how to set an AT job up?


On another note...
Smeone posted a message a couple of months ago on how to set up a scheduled
event so that it always worked... quite a detailed procedure. Does anyone
have a copy of that e-mail, or is the original poster listening?



Thanks

--
Aidan Whitehall <[EMAIL PROTECTED]>
Netshopper UK Ltd
Advanced Web Solutions & Services

http://www.netshopperuk.com/
Telephone +44 (01744) 648650
Fax +44 (01744) 648651

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Changing web server software - Does CF care?

2000-10-04 Thread Dave Watts

> I'm running WebsitePro, and CF 4.5.1, on my server. Am going 
> to change to IIS sometime soon. Is CF going to get upset 
> about this? When it installs, it wants to know which website 
> server product to use (even if there is only one installed on 
> the server), but I've never known how it uses that information.  
> Will I have to reinstall CF (ugh, all those datasources to setup 
> again)?

CF won't get too upset about this. The server question during the install
allows CF to set up API configuration for the chosen server - WSAPI for
WebSite, ISAPI for IIS. You can do this setup manually without reinstalling
CF by simply mapping the .cfm file extension to the ISAPI extension that CF
provides (C:\CFUSION\BIN\ISCF.DLL).

However, it's easier to just reinstall CF. If you don't uninstall it first,
it'll preserve all your existing settings, like your datasources. 

In the case that you actually have to move from one box to another, you can
back up your datasources registry keys - this is usually pretty easy to do.
The appropriate registry keys are
HKLM\Software\Allaire\ColdFusion\CurrentVersion\Datasources and
HKLM\Software\ODBC\ODBC.INI. You'll want to export them to text files, read
them over, make any appropriate changes, then merge the text files on your
new server.

> If I install IIS while WebsitePro is still on the server, can 
> CF talk to it? When I get rid of WebsitePro, is there an easy 
> way to tell IIS to use port 80 (since Website would no longer 
> be listening on it)?

As long as they're not both running at the same time (and you probably don't
want them running simultaneously), you don't have to worry about which port
is being used. In any case, you can specify on a per-virtual-server basis
which ports it will use within the IIS Internet Service Manager interface.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Brain Buster

2000-10-04 Thread Hayes, David

I'm not completely clear on the output you want, but here are some ideas:

1) Make your life simpler.  You can loop through the list:

#item#


2) Show us your output.

-Original Message-
From: Grady Milhon [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, October 04, 2000 10:46 AM
To: CF-Talk
Subject: Brain Buster


I have a form, with a check box and two radio buttons.  When submitted, I
want
two arrays, one with all checked items with the first radio button selected
and
one with all checked items with the second radio button selected.  I am
having a
very had time doing this.

Here is my code from the form:








 #name#
 
 Left
   Right
 






This code will display the values of the checkboxes that are checked:

(action.cfm)



 #aryBlocks[i]#




Can someone PLEASE help me.

Thanks,

Grady Milhon
[EMAIL PROTECTED] 

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Reliability of CFSCHEDULE in CF 4.5.1

2000-10-04 Thread JustinMacCarthy

Howie and the guys @ www.coolfusion.com have built a program called cftimer
, which allow you to run CF templates without using IIS so no timeouts  and
lots of other cool stuff

The times etc are stored in an odbc DB

I'm not sure of the cost , but it's not much.
Ask Howie about it  he is on this list .

Justin


- Original Message -
From: "Aidan Whitehall" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Wednesday, October 04, 2000 4:47 PM
Subject: RE: Reliability of CFSCHEDULE in CF 4.5.1


> > Is CFSCHEDULE any more reliable in v4.5.1 than in past
> > releases?  I've never
> > trusted it, always using Windows AT to run batch files
> > launching templates.
>
> I'm really struggling with the scheduler at the moment... nuthin' seems to
> work (haven't tried setting up events using the CFSCHEDULE tag, though).
>
> I took a quick look at help on the AT command the other day and wondered
> where the hell to start. Do you have a sample batch file you could send me
> to show how to set an AT job up?
>
>
> On another note...
> Smeone posted a message a couple of months ago on how to set up a
scheduled
> event so that it always worked... quite a detailed procedure. Does anyone
> have a copy of that e-mail, or is the original poster listening?
>
>
>
> Thanks
>
> --
> Aidan Whitehall <[EMAIL PROTECTED]>
> Netshopper UK Ltd
> Advanced Web Solutions & Services
>
> http://www.netshopperuk.com/
> Telephone +44 (01744) 648650
> Fax +44 (01744) 648651
> --

> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
>
>

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Reliability of CFSCHEDULE in CF 4.5.1

2000-10-04 Thread Aidan Whitehall

> I believe in the Windows NT resource kit you can find WinAT which is a
> graphical interface to teh command line AT command, that 
> should help you a
> ton into using it...

Thanks... I'll look into that.



-- 
Aidan Whitehall <[EMAIL PROTECTED]>
Netshopper UK Ltd
Advanced Web Solutions & Services

http://www.netshopperuk.com/
Telephone +44 (01744) 648650
Fax +44 (01744) 648651
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: autoresize custom tag

2000-10-04 Thread Dave Watts

> I am having problems with the custom tag cf_autoresize:
> 
> -
> Error loading CFX custom tag library
> 
> Windows NT error number 1157 occurred while attempting to load 
> library 'c:\CFUSION\CFX\CFX_image.dll'.
> 
> 
> How do I resolve this? image.dll is stored in the cfx 
> directory of the cf folder. I am using windows 98 with CF 4.0.

There are all kinds of things that might cause a CFX to fail. One problem
I've seen before is that there may be missing files on which the CFX is
dependent. You can find this out by using Dependency Checker (depends.exe),
which is available in the NT Resource Kit and MS Visual Studio, among other
places. Simply run depends.exe, open the DLL, and if there are any problems,
you'll see lots of red on the screen!

> How do I make the image.dll file visible within win98 window 
> explorer? In the window explorer it shows as not being there 
> but when I do a find file it shows as there.

By default, Windows is configured to hide system files from view within
Explorer. You can change this by selecting "Folder Options" from the Tools
menu, selecting the "View" tab, then clearing the checkbox which says
something like, "Hide system files".

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Harder Math Question

2000-10-04 Thread Cary Gordon

OK Kevin, you win 2nd prize - you get to buy me a drink.

Cary

At 09:12 AM 10/4/2000 +0930, you wrote:
>I recognise this immediately as the formula for calculating Bill Gates'
>wealth by the second, in real time.
>
>
>
>Kevin Parker
>Service and Communication
>WorkCover Corporation
>
>[EMAIL PROTECTED]
>
>ph:  +61 8 82332548
>fax: +61 8 82332000
>
>
>
>-Original Message-
>From: Cary Gordon [mailto:[EMAIL PROTECTED]]
>Sent: Wednesday, 4 October 2000 5:07:AM
>To: CF-Talk
>Subject: OT: Harder Math Question
>
>
>Any idea of how I can turn this algorithm a custom tag?  It is in
>Mathematica format as that is the only way I could think of to post it here.
>
>   StringToMatrices[text_String]:= Partition[Parition[Flatten
>   [Append[StringToList[text],{32,32,32}]],2],2]
>
>   ___
>
>   MatriceToString[l_List] :=
>StringJoin [ ConvertNumber/@Flatten[1]]
>
>   ___
>
>   CPpqn[digits_Integer] :=Module[{
> p1 = FirstPrimeAbove[Random[Integer,
>  {10^(Floor[digits/2]-1), 10^(Floor[digits/2])-1}]],
> q1 = FirstPrimeAbove[Random[Integer,
>  {10^(Floor[digits/2]-1), 10^(Floor[digits/2])-1}]],
>   While[PrimeQ[p = 2p1 +1], p1 = FirstPrimeAbove[p1 + 1]]; p;
>While[PrimeQ[q = 2q1 +1], q1 = FirstPrimeAbove[q1 + 1]];
>q; n = pq; ]
>
>   ___
>
>   randmatrix := (Catch[
>  Do[m = Table[Random[Integer, {0, n}], {i, 1, 2}, {j, 1, 2}];
>   If[GCD[Mod[Det[m], n], n] == 1, Throw[m]], {1000}]])
>
>   ___
>
>   inv[a_] := (d = Mod[Det[a], n]; i = PowerMod[d, -1, n];
>   {{Mod[i * a[[2, 2]], n], Mod[-i * a[[1, 2]], n]},
>  {Mod[-i * a[[2, 1]], n], Mod[i * a[[1, 1]], n]}})
>
>   ___
>
>   mmul[j_, k_] := Mod[
> {{Mod[j[[1, 1]]*k[[1, 1]], n] + Mod[j[[1, 2]]*k[[2, 1]], n],
>   Mod[j[[1, 1]]*k[[1, 2]], n] + Mod[j[[1, 2]]*k[[2, 2]], n}},
>  {Mod[j[[2, 1]]*k[[1, 1]], n] + Mod[j[[2, 2]]*k[[2, 1]], n],
>   Mod[j[[2, 1]]*k[[1, 2]], n] + Mod[j[[2, 2]]*k[[2, 2]], n]}},
> n]
>
>   ___
>
>   CPparameters := (identity = {{1, 0}, {0, 1}};
> alpha = randmatrix; Catch[Do[chi = randmatrix;
>   If[mmul[chi, alpha] ! = mmul[alpha, chi],
>Throw[chi]], {1000}]]
> chiinv = inv[chi]; alphainv = inv[alpha];
> Catch[Do[s = Random[Integer, {2, 50}];
>   gamma = Mod[MatrixPower[chi, s], n];
>   If[gamma != identity, Throw[gamma]], {1000}]];
>   Catch[Do[delta = Mod[Mod[Random[Integer, {1, n-1}]gamma, n]
>   + Mod[Random[Integer, {1, n-1}]identity, n], n]
> If[delta !=identity &&
>   mmul[delta, alpha] !=mmul[alpha, delta], Throw [delta]],
>   {1000}];
> beta = mmul[mmul[chiinv, aphainv], chi];
> deltainv = inv[delta];
> epsilon = mmul[mmul[deltainv, alpha], delta];
>   kappa = mmul[mmul[deltainv, beta], delta];
> lamda = mmul[mmul[chiinv, epsilon], chi];)
>
>   ___
>
>   CPenc[plain_String] := CPencNum [ StringToMatrices[plain]]
>   ___
>
>   CPDecNum[l_list] := Table[mmul[mmul[lamda, l[[i]]], lamda], {i,
>Length[l]}]
>   ___
>
>   CPEncNum[l_List] :=
>Table[mmul[mmul[kappa, l[[i]]], kappa], {i, Length[l]}]
>
>
>   ___
>
>   CPdec[cipher_List] := MatricesToString[CPDecNum[cipher]]
>
>I will award a meaningful, albeit insignificant, prize to the first poster
>who can identify, even in broad terms, the (quite useful) function of this
>algorithm.
>
>Cary
>
>
>--
>Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
>To Unsubscribe visit
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
>send a message to [EMAIL PROTECTED] with 'unsubscribe' in
>the body.
>
>
>
>
>This e-mail is intended for the use of the addressee only. It may contain
>information that is protected by legislated confidentiality and/or is
>legally privileged. If you are not the intended recipient you are prohibited
>from disseminating, distributing or copying this e-mail. Any opinion
>expressed in this e-mail may not necessarily be that of the WorkCover
>Corporation of South Austr

OT: Moving SQL to new server

2000-10-04 Thread Lee Surma

We are in the process of installing a new web server box. Everything is going OK 
except I'm getting held up on transferring the SQL databases. The current plan is to 
take the file created by the backup process and move it to the new box and use the 
restore wizard in Enterprise Manager. The new box does not have the same drive setup 
as the old and I'm getting an error that says something about using "with move". I've 
been told that I need to use transact SQL to make that work. I can't find any decent 
examples on Books Online. Can anyone point me to an example? Am I taking the right 
approach?
Also do I need to backup and move the Master database? Thanks.


_
Lee Surma
Public Radio International
[EMAIL PROTECTED]
612-330-9223
_

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebarRsts&bodyRsts/cf_talk or send a message 
to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: CFIF discussion

2000-10-04 Thread W Luke

I seeI think I have 5 Cfifs for example one page, all determining the
value of action - if the 5th value is true, then all 5 have to be tested and
rejected...ah ha.  That's messy.

Cool, thanks.

Will
- Original Message -
From: "Paul Johnston" <[EMAIL PROTECTED]>
Newsgroups: cf-talk
Sent: Wednesday, October 04, 2000 2:29 PM
Subject: RE: CFIF discussion


> I have tried this before and have come up with two important points.
>
> Don't use a bunch of
>
> 
> Do processing...
> 
> Do processing...
> 
> Do processing...
> 
> Do processing...
> 
> Do processing...
> 
>
> Use
>
> 
> 
> Do processing...
> 
> 
> Do processing...
> 
> 
> Do processing...
> 
> 
> Do processing...
> 
> 
> Do processing...
> 
> 
>
> It's much much quicker.
>
> Also, take a look at fusebox (it uses the idea of using one page to do all
> the work as it's basis) at www.fusebox.org
>
> Paul
>
> > -Original Message-
> > From: W Luke [mailto:[EMAIL PROTECTED]]
> > Sent: 04 October 2000 14:11
> > To: CF-Talk
> > Subject: CFIF discussion
> >
> >
> > Hi,
> >
> > I'm 5 weeks into Cold Fusion and have a question for the
> > Experienced Masses.
> >
> > So far in my programming, I try to keep all the code in one file
> > as much as
> > possible.  For example, if I have a form that is used as part of a
Query,
> > then I'll obviously "post" that form' data to the same page,
> > resulting in a
> > number of .
> >
> > However, at what stage would you suggest that this isn't a good
> > idea?  I've
> > been doing a small sub-project today which is about 400 lines long, and
by
> > 17:00 will be considerably bigger.  Is this a case of "whatever suits
you
> > best?"
> >
> > I'd be interested to hear everyone's opinions.
> >
> > Will
> >
> >
> >
> > --
> > 
> > Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> > To Unsubscribe visit
> > http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf
> _talk or send a message to [EMAIL PROTECTED] with
> 'unsubscribe' in the body.
>
>
> --

> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



OT: SQL Server error.

2000-10-04 Thread Ric Smith

I just started getting this error in one of my SQLServer 6.5 db's.
I don't know what could be causing it. The primarykey/identity
column is named FolderID. Why would it be trying to insert a
duplicate if it's an autonumber?

ODBC Error Code = 23000 (Integrity constraint violation)

[Microsoft][ODBC SQL Server Driver][SQL Server]Violation of PRIMARY KEY
constraint 'PK__Folders__FolderI__198AD3B0': Attempt to insert duplicate key
in object 'Folders'.

SQL = "INSERT INTO Folders ( ParentID, Name, Description,
ateAdded )VALUES( 7, 'test', 'test', {ts '2000-10-04 12:27:18'} );"

Thanks.

Ric Smith


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Moving SQL to new server

2000-10-04 Thread Dave Watts

> We are in the process of installing a new web server box. 
> Everything is going OK except I'm getting held up on 
> transferring the SQL databases. The current plan is to take 
> the file created by the backup process and move it to the new 
> box and use the restore wizard in Enterprise Manager. The new 
> box does not have the same drive setup as the old and I'm 
> getting an error that says something about using "with move". 
> I've been told that I need to use transact SQL to make that 
> work. I can't find any decent examples on Books Online. Can 
> anyone point me to an example? Am I taking the right approach?

If you're using SQL Server 7, when you restore, there's an "Options" tab
which will allow you to change the file names and paths that the restore
will use.

> Also do I need to backup and move the Master database? Thanks.

No, you don't need to bother with the master database - in fact, unless the
configuration of the new server matches that of the old one, you don't want
to transfer it.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Error creating Verity collection

2000-10-04 Thread Jaime Garza

I have had my fights with verity collections.  When you delete a verity
collection, also make sure the directory structure is deleted.  Every now
and then, Cold Fusion will not get rid of it, I assume because of some kind
of sharing problem.  Just empty the directories (AFTER deleting the
collection) and try again.





> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, October 04, 2000 4:26 AM
> To: CF-Talk
> Subject: Error creating Verity collection
>
>
> I have been happily creating and deleting Verity collections for a
> few days now either via the Administrator or code (CF 4.5, NT
> Server).  However, when I try to create a collection now I am given
> the error message "Error creating Verity collection".
>
> I have deleted all the collections, but CF still refuses to play ball.
>
> Any suggestions?
>
> Thanks
>
> Steve
>
> --
> 
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf
> _talk or send a message to [EMAIL PROTECTED] with
> 'unsubscribe' in the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Reliability of CFSCHEDULE in CF 4.5.1

2000-10-04 Thread Howie Hamlin

inFusion Scheduler is in beta and should be released today or tomorrow.  It
is now part of iMS (will be released as part of the iMS 1.5 package) as well
as a stand-alone product.  inFusion Scheduler will be sold separately at
$399.

Some of the advantages of CF Schedule:

CFSchedule checks for events every 15 minutes.  inFusion Scheduler checks at
a user-defined interval.

CFSchedule executes templates via HTTP.  inFusion Scheduler processes
templates directly via the inFusionEngine.

CFSchedule has a limited number of event types.  inFusion Scheduler is fully
customizable.

CFSchedule keeps events in the Windows Registry.  inFusion Scheduler can
keep events in any user-defined location including databases.

inFusion Scheduler has a built-in mechanism for restarting ColdFusion if it
becomes unresponsive or does not send back a predetermined response.

Regards,

Howie

P.S. If anyone who won a free copy of the scheduler at CFUN 2K and did not
receive a serial number as of yet please let me know off list.


- Original Message -
From: "JustinMacCarthy" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Wednesday, October 04, 2000 12:05 PM
Subject: Re: Reliability of CFSCHEDULE in CF 4.5.1


> Howie and the guys @ www.coolfusion.com have built a program called
cftimer
> , which allow you to run CF templates without using IIS so no timeouts
and
> lots of other cool stuff
>
> The times etc are stored in an odbc DB
>
> I'm not sure of the cost , but it's not much.
> Ask Howie about it  he is on this list .
>
> Justin
>
>
> - Original Message -
> From: "Aidan Whitehall" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Wednesday, October 04, 2000 4:47 PM
> Subject: RE: Reliability of CFSCHEDULE in CF 4.5.1
>
>
> > > Is CFSCHEDULE any more reliable in v4.5.1 than in past
> > > releases?  I've never
> > > trusted it, always using Windows AT to run batch files
> > > launching templates.
> >
> > I'm really struggling with the scheduler at the moment... nuthin' seems
to
> > work (haven't tried setting up events using the CFSCHEDULE tag, though).
> >
> > I took a quick look at help on the AT command the other day and wondered
> > where the hell to start. Do you have a sample batch file you could send
me
> > to show how to set an AT job up?
> >
> >
> > On another note...
> > Smeone posted a message a couple of months ago on how to set up a
> scheduled
> > event so that it always worked... quite a detailed procedure. Does
anyone
> > have a copy of that e-mail, or is the original poster listening?
> >
> >
> >
> > Thanks
> >
> > --
> > Aidan Whitehall <[EMAIL PROTECTED]>
> > Netshopper UK Ltd
> > Advanced Web Solutions & Services
> >
> > http://www.netshopperuk.com/
> > Telephone +44 (01744) 648650
> > Fax +44 (01744) 648651
>
> --
> 
> > Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> > To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.
> >
> >
>
> --

> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Reliability of CFSCHEDULE in CF 4.5.1. SP2?

2000-10-04 Thread Jaime Garza

I know that if you schedule two tasks to start at the same time in Cold
Fusion Scheduler, it may hang your Cold Fusion.  It took me weeks to get to
this knowledge.

Allaire guys, can this be looked at as part of SP2 if possible?





> -Original Message-
> From: Aidan Whitehall [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, October 04, 2000 8:48 AM
> To: CF-Talk
> Subject: RE: Reliability of CFSCHEDULE in CF 4.5.1
>
>
> > Is CFSCHEDULE any more reliable in v4.5.1 than in past
> > releases?  I've never
> > trusted it, always using Windows AT to run batch files
> > launching templates.
>
> I'm really struggling with the scheduler at the moment... nuthin' seems to
> work (haven't tried setting up events using the CFSCHEDULE tag, though).
>
> I took a quick look at help on the AT command the other day and wondered
> where the hell to start. Do you have a sample batch file you could send me
> to show how to set an AT job up?
>
>
> On another note...
> Smeone posted a message a couple of months ago on how to set up a
> scheduled
> event so that it always worked... quite a detailed procedure. Does anyone
> have a copy of that e-mail, or is the original poster listening?
>
>
>
> Thanks
>
> --
> Aidan Whitehall <[EMAIL PROTECTED]>
> Netshopper UK Ltd
> Advanced Web Solutions & Services
>
> http://www.netshopperuk.com/
> Telephone +44 (01744) 648650
> Fax +44 (01744) 648651
> --
> 
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf
_talk or send a message to [EMAIL PROTECTED] with
'unsubscribe' in the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Encryption in CF

2000-10-04 Thread Kevin Schmidt

This is a multi-part message in MIME format.

--=_NextPart_000_13F1_01C02E02.05D48540
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

How safe is the encryption in CF.  Are there ways to unecrypt encrypted =
CF files? Known exploits?

Thanks,

Kevin Schmidt
Internet Services Director
PWB Integrated Marketing and Communications
Office: 734.995.5000
Mobile: 734.649.4843


--=_NextPart_000_13F1_01C02E02.05D48540
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable








How safe is the encryption in CF.  =
Are there=20
ways to unecrypt encrypted CF files? Known exploits?
 
Thanks,
 
Kevin SchmidtInternet Services =
DirectorPWB=20
Integrated Marketing and CommunicationsOffice: =
734.995.5000Mobile:=20
734.649.4843

--=_NextPart_000_13F1_01C02E02.05D48540--

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: autoresize custom tag

2000-10-04 Thread sebastian palmigiani


the custom tag is registered as you say. I did some searching in the cf
forum and found that the error might be that my system needs a necessary
.dll file. I tried using the custom tag cfx_gfgd and it worked fine for
resizing. In the release notes cfx_gfgd says you need mfc40(d).dll (or
newer) for the tag to work. And my systems has that .dll. You learn
something new every day.

Sebastian

on 10/4/00 11:02 AM, Aidan Whitehall at [EMAIL PROTECTED]
wrote:

>> How do I resolve this? image.dll is stored in the cfx
>> directory of the cf
>> folder. I am using windows 98 with CF 4.0.
> 
> Open up the ColdFusion administrator or go to
> http://127.0.0.1/cfide/administrator/index.cfm
> 
> Log in and go to CFX tags
> 
> Then register the Image.dll as CFX_Image (you'll have to add the CFX_ name,
> then click Browse Server and find the .dll file)
> 
> 
> 

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: SQL Server error.

2000-10-04 Thread Dave Watts

> I just started getting this error in one of my SQLServer 6.5 db's.
> I don't know what could be causing it. The primarykey/identity
> column is named FolderID. Why would it be trying to insert a
> duplicate if it's an autonumber?
> 
> ODBC Error Code = 23000 (Integrity constraint violation)
> 
> [Microsoft][ODBC SQL Server Driver][SQL Server]Violation of 
> PRIMARY KEY
> constraint 'PK__Folders__FolderI__198AD3B0': Attempt to 
> insert duplicate key in object 'Folders'.
> 
> SQL = "INSERT INTO Folders ( ParentID, Name, Description,
> ateAdded )VALUES( 7, 'test', 'test', {ts '2000-10-04 12:27:18'} );"

There's a bug in SQL Server 6.5 which causes identity columns to get out of
sync. You can fix this by running DBCC CHECKIDENT against every table which
has an identity column. I believe this was also fixed in one of the later
SQL 6.5 service packs.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: SQL Server error.

2000-10-04 Thread mherbene

SQL Server 6.5 bug:
http://support.microsoft.com/support/kb/articles/Q198/5/72.ASP?LN=EN-US&SD=g
n&FR=0



-Original Message-
From: Ric Smith [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, October 04, 2000 12:27 PM
To: CF-Talk
Subject: OT: SQL Server error.


I just started getting this error in one of my SQLServer 6.5 db's.
I don't know what could be causing it. The primarykey/identity
column is named FolderID. Why would it be trying to insert a
duplicate if it's an autonumber?

ODBC Error Code = 23000 (Integrity constraint violation)

[Microsoft][ODBC SQL Server Driver][SQL Server]Violation of PRIMARY KEY
constraint 'PK__Folders__FolderI__198AD3B0': Attempt to insert duplicate key
in object 'Folders'.

SQL = "INSERT INTO Folders ( ParentID, Name, Description,
ateAdded )VALUES( 7, 'test', 'test', {ts '2000-10-04 12:27:18'} );"

Thanks.

Ric Smith



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Brain Buster

2000-10-04 Thread Grady Milhon

Sorry, this is the most difficult thing to explain in an email.

Input - Form.blocks
Output - left_list (Check items whose radio button was selected as left)
Output - right_list (Check items whose radio button was selected as right)

I was thinking loop through the list of checked items, then check the radio
button as whether it is left or right, depending on that, it would add the item
to the correct list.  The problem is you can't check a variable with a dynamic
name, such as side_#id# (i.e. side_1=left/right, side_2=left/right).  Does this
clear it up?  Thanks for the help.

-Original Message-
From: [EMAIL PROTECTED] at INTERNET
Sent: Wednesday, October 04, 2000 11:02 AM
To: [EMAIL PROTECTED] at INTERNET
Subject: RE: Brain Buster

I'm not completely clear on the output you want, but here are some ideas:

1) Make your life simpler.  You can loop through the list:

 #item#


2) Show us your output.

-Original Message-
From: Grady Milhon [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, October 04, 2000 10:46 AM
To: CF-Talk
Subject: Brain Buster


I have a form, with a check box and two radio buttons.  When submitted, I
want
two arrays, one with all checked items with the first radio button selected
and
one with all checked items with the second radio button selected.  I am
having a
very had time doing this.

Here is my code from the form:








 #name#
 
 Left
   Right
 






This code will display the values of the checkboxes that are checked:

(action.cfm)



 #aryBlocks[i]#




Can someone PLEASE help me.

Thanks,

Grady Milhon
[EMAIL PROTECTED] 

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit http://www.houseoffusion.com/index.cfm?sidebar=lists&body=l
ists/cf_talk or send a message to [EMAIL PROTECTED] with 'unsubs
cribe' in the body.
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



cfscript?

2000-10-04 Thread double-down

is it faster to use cfscript to set variables and do if conditions rather than
 and 


Get free email and a permanent address at http://www.netaddress.com/?N=1
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebarRsts&bodyRsts/cf_talk or send a message 
to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Statistical Analyses

2000-10-04 Thread Karl Simanonok

I would like to be able to perform statistical analyses (T-tests,
Wilcoxon signed-rank tests, chi-square, linear regression, etc.) on data
sets stored in databases (SQL Server 7 or Access).  There don't seem to
be any custom tags at Allaire for the purpose.  Can anyone point me to
custom tags or even pseudocode algorithms for doing statistics?

In some discussion with local CF developers, we have considered what
would be the optimal approach for doing statistical computing.  The
consensus seems to be that Javascript is too slow, lacks many useful
math functions, and would in some cases require a lot of data to be
transferred for client-side processing.  ColdFusion offers the advantage
of server-side processing of data and just delivering the results to the
user, but might also be rather inefficient.  A compiled CFX would
probably be an improvement, but requires the intervention of a whole
lower-level programming environment.  I'm thinking that stored
procedures might work well in SQL Server, but not everyone thinks so,
citing lack of many math functions.  Some think that server-side Java is
the way to go.  What do you people think?

Regards,

Karl Simanonok

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Reliability of CFSCHEDULE in CF 4.5.1

2000-10-04 Thread Jim McAtee

Here's an example of a batch file that you could schedule via AT or WinAT
(or any other non-CF scheduling service).  The first two lines set NT
environment variables.  QUERY_STRING is anything that might appear after the
? in a URL calling your template.  You'll probably need the double quotes
around this line because the multiple = signs in a typical query string
confuse the command processor.  The second environment variable is the
complete path of the CF template file that you're executing.  The last line
calls the CF executable, which will use the environment variable previously
set.

set "QUERY_STRING=RequestTimeout=300"
set CF_TEMPLATE_PATH=d:\web\mo\xfer\lodging.cfm
c:\cfusion\bin\cfml.exe

I wouldn't mind seeing that post regarding getting CF scheduling to work.
I'm not having any luck.  I use CFSCHEDULE from within my CF app to schedule
a couple of templates, but they're not being executed.  If I look under the
CF Administrator, they're placed there with all parameters exactly as I
specified, but they don't run.

Jim


- Original Message -
From: "Aidan Whitehall" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Wednesday, October 04, 2000 9:47 AM
Subject: RE: Reliability of CFSCHEDULE in CF 4.5.1


> > Is CFSCHEDULE any more reliable in v4.5.1 than in past
> > releases?  I've never
> > trusted it, always using Windows AT to run batch files
> > launching templates.
>
> I'm really struggling with the scheduler at the moment... nuthin' seems to
> work (haven't tried setting up events using the CFSCHEDULE tag, though).
>
> I took a quick look at help on the AT command the other day and wondered
> where the hell to start. Do you have a sample batch file you could send me
> to show how to set an AT job up?
>
>
> On another note...
> Smeone posted a message a couple of months ago on how to set up a
scheduled
> event so that it always worked... quite a detailed procedure. Does anyone
> have a copy of that e-mail, or is the original poster listening?
>
>
>
> Thanks
>
> --
> Aidan Whitehall <[EMAIL PROTECTED]>
> Netshopper UK Ltd
> Advanced Web Solutions & Services
>
> http://www.netshopperuk.com/
> Telephone +44 (01744) 648650
> Fax +44 (01744) 648651
> --

> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: autoresize custom tag

2000-10-04 Thread JustinMacCarthy

There is an app called Dependancy Walker (Visual Studio) , which very handy
for checking what DLL etc a dll needs

Justin MacCarthy


> forum and found that the error might be that my system needs a necessary
> .dll file. I tried using the custom tag cfx_gfgd and it worked fine for
> resizing. In the release notes cfx_gfgd says you need mfc40(d).dll (or
> newer) for the tag to work. And my systems has

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Encryption in CF

2000-10-04 Thread JustinMacCarthy

 
> How safe is the encryption in CF. 

What do you mean?

> Are there ways to unecrypt encrypted =
> CF files? Known exploits?

Yes, it's  very easy. There are programs to do this.

Justin 

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Encryption in CF

2000-10-04 Thread John Bowering

not safe

http://shroom.dv8.org/cfd/




-Original Message-
From: Kevin Schmidt [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, October 04, 2000 1:53 PM
To: CF-Talk
Subject: Encryption in CF


This is a multi-part message in MIME format.

--=_NextPart_000_13F1_01C02E02.05D48540
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

How safe is the encryption in CF.  Are there ways to unecrypt encrypted =
CF files? Known exploits?

Thanks,

Kevin Schmidt
Internet Services Director
PWB Integrated Marketing and Communications
Office: 734.995.5000
Mobile: 734.649.4843


--=_NextPart_000_13F1_01C02E02.05D48540
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable








How safe is the encryption in CF.  =
Are there=20
ways to unecrypt encrypted CF files? Known exploits?
 
Thanks,
 
Kevin SchmidtInternet Services =
DirectorPWB=20
Integrated Marketing and CommunicationsOffice: =
734.995.5000Mobile:=20
734.649.4843

--=_NextPart_000_13F1_01C02E02.05D48540--


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Fax to file

2000-10-04 Thread John Elder

Anybody know how to fax a document and have it automatically upload to
a directory as a .gif or jpg?

I looked into efax but the fax is emailed as a .efx

TIA
John Elder
[EMAIL PROTECTED]
http://www.sitelaunch.com
http://webtunes.com







--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Statistical Analyses

2000-10-04 Thread Dave Watts

> In some discussion with local CF developers, we have 
> considered what would be the optimal approach for doing 
> statistical computing. The consensus seems to be that 
> Javascript is too slow, lacks many useful math functions, 
> and would in some cases require a lot of data to be 
> transferred for client-side processing. ColdFusion offers 
> the advantage of server-side processing of data and just 
> delivering the results to the user, but might also be rather 
> inefficient. A compiled CFX would probably be an improvement, 
> but requires the intervention of a whole lower-level 
> programming environment. I'm thinking that stored procedures 
> might work well in SQL Server, but not everyone thinks so,
> citing lack of many math functions. Some think that 
> server-side Java is the way to go. What do you people think?

Statistical analysis, like other data transformations and calculations, is
best performed as close to the data as possible, in my opinion. When I've
had to do things like this in the past, I've used stored procedures to do
this, and the performance has been significantly better than doing it in CF.
I haven't tried server-side Java or CFXs, etc. to do this, but I'd expect
that doing the calculations within the database will give you the best
performance even compared to those options, as they'd all have to export the
bulk of the data, then perform the calculation - within the database the
calculation can be done without transferring unnecessary data to the
database client.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Encryption in CF

2000-10-04 Thread Robert Forsyth

>>>How safe is the encryption in CF.  Are there ways to unecrypt encrypted =
>>>CF files? Known exploits?

It's very easy to decrypt CF templates...

Robert Forsyth
Director of Web Operations
Irides, LLC
Phone: 202-364-7831
  Fax: 202-364-2481


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebarRsts&bodyRsts/cf_talk or send a message 
to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: OT: Moving SQL to new server

2000-10-04 Thread Al Musella, DPM

I am no sql expert, but I had the same problem, and solved it by using the 
export wizard.  Just highlight the database in sql server and right click - 
select export... then follow the wizard and select the new sql server as 
the destination. Went quickly and easily.  (assuming both are connected to 
the network or internet)


Al

At 11:20 AM 10/4/2000 -0600, you wrote:
>We are in the process of installing a new web server box. Everything is 
>going OK except I'm getting held up on transferring the SQL databases. The 
>current plan is to take the file created by the backup process and move it 
>to the new box and use the restore wizard in Enterprise Manager. The new 
>box does not have the same drive setup as the old and I'm getting an error 
>that says something about using "with move". I've been told that I need to 
>use transact SQL to make that work. I can't find any decent examples on 
>Books Online. Can anyone point me to an example? Am I taking the right 
>approach?
>Also do I need to backup and move the Master database? Thanks.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: OT: Moving SQL to new server

2000-10-04 Thread Jacob

Are you going from SQL 7 to SQL 7?  If so, just transfer to data using 
DTS.  I have done this a few times.  Works fine for me.

Install SQL 7
configure and set up your users
Export from the old SQL and import it into the new SQL.
I find it better to create the database (leave it blank) on the new server 
and use the transfer object and data selection in the DTS package.

Jacob

At 11:20 AM 10/4/00 -0600, you wrote:
>We are in the process of installing a new web server box. Everything is 
>going OK except I'm getting held up on transferring the SQL databases. The 
>current plan is to take the file created by the backup process and move it 
>to the new box and use the restore wizard in Enterprise Manager. The new 
>box does not have the same drive setup as the old and I'm getting an error 
>that says something about using "with move". I've been told that I need to 
>use transact SQL to make that work. I can't find any decent examples on 
>Books Online. Can anyone point me to an example? Am I taking the right 
>approach?
>Also do I need to backup and move the Master database? Thanks.
>
>
>_
>Lee Surma
>Public Radio International
>[EMAIL PROTECTED]
>612-330-9223
>_
>
>--
>Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
>To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebarsts&bodysts/cf_talk or send 
>a message to [EMAIL PROTECTED] with 'unsubscribe' in the body.


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Statistical Analyses

2000-10-04 Thread Cary Gordon

Hi Karl,

I think that that a Java CFX might be an interesting way to go, but, unless 
you need platform independence, I would probably go for C++.  I'll bet that 
you can find algorithms and probably some raw code online.  You might try 
some of the component companies as well.

If all else fails, you could probably get min to write it for you.

Cary

At 10:02 AM 10/4/2000 -0700, you wrote:
>I would like to be able to perform statistical analyses (T-tests,
>Wilcoxon signed-rank tests, chi-square, linear regression, etc.) on data
>sets stored in databases (SQL Server 7 or Access).  There don't seem to
>be any custom tags at Allaire for the purpose.  Can anyone point me to
>custom tags or even pseudocode algorithms for doing statistics?
>
>In some discussion with local CF developers, we have considered what
>would be the optimal approach for doing statistical computing.  The
>consensus seems to be that Javascript is too slow, lacks many useful
>math functions, and would in some cases require a lot of data to be
>transferred for client-side processing.  ColdFusion offers the advantage
>of server-side processing of data and just delivering the results to the
>user, but might also be rather inefficient.  A compiled CFX would
>probably be an improvement, but requires the intervention of a whole
>lower-level programming environment.  I'm thinking that stored
>procedures might work well in SQL Server, but not everyone thinks so,
>citing lack of many math functions.  Some think that server-side Java is
>the way to go.  What do you people think?
>
>Regards,
>
>Karl Simanonok

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Statistical Analyses

2000-10-04 Thread JustinMacCarthy

There is a cfx , which has a lot of extra math functions

http://devex.allaire.com/developer/gallery/info.cfm?ID=CA347518-2830-11D4-AA
9700508B94F380&method=Full

that Tom wrote maybe that would be some help ?

Otherwise http://www.netlib.org is a good place to get LIB's  or check out
http://www.maths.uq.edu.au/~gks/webguide/source.html



Justin

- Original Message -
From: "Karl Simanonok" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Wednesday, October 04, 2000 6:02 PM
Subject: Statistical Analyses


> I would like to be able to perform statistical analyses (T-tests,
> Wilcoxon signed-rank tests, chi-square, linear regression, etc.) on data
> sets stored in databases (SQL Server 7 or Access).  There don't seem to
> be any custom tags at Allaire for the purpose.  Can anyone point me to
> custom tags or even pseudocode algorithms for doing statistics?
>
> In some discussion with local CF developers, we have considered what
> would be the optimal approach for doing statistical computing.  The
> consensus seems to be that Javascript is too slow, lacks many useful
> math functions, and would in some cases require a lot of data to be
> transferred for client-side processing.  ColdFusion offers the advantage
> of server-side processing of data and just delivering the results to the
> user, but might also be rather inefficient.  A compiled CFX would
> probably be an improvement, but requires the intervention of a whole
> lower-level programming environment.  I'm thinking that stored
> procedures might work well in SQL Server, but not everyone thinks so,
> citing lack of many math functions.  Some think that server-side Java is
> the way to go.  What do you people think?
>
> Regards,
>
> Karl Simanonok
>
> --

> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
>
>

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: cfscript?

2000-10-04 Thread Wayne E. Pfeffer

it really depends upon how big the if and/or set blocks are.  
spawns a seperate process to do its thing, so the larger the block, the more
time savings your gonna see.

Wayne E. Pfeffer
Sr. Web Applications Developer
NetRadio.com

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, October 04, 2000 12:04 PM
To: CF-Talk
Subject: cfscript?


is it faster to use cfscript to set variables and do if conditions rather
than
 and 


Get free email and a permanent address at http://www.netaddress.com/?N=1

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

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Dropped Form Fields

2000-10-04 Thread David B Brooks

Heya All,

Has anyone experienced form fields being dropped when Cold Fusion picks up
the page?

I have tested code written in CF against many browsers, but I have yet seen
it happen.  However, our error logs indicate that they happen, via the "Form
field does not exist" error.  I have a couple sites that check for the
existence of form fields, and set a default value if nothing exists (CF
Param tag).  Still, when users enter information into the form fields, no
form fields get passed to the CF page.

I have some questions:

(1) Could browser caching or any server side caching (from the ISP) cause
this? I have put the meta tag content type Expires on my pages and the form
fields still drop.

(2) Could IIS be involved in this problem?  I am running IIS version 4.0.
Is there a particular setting that deals with form fields?

Any information you all can provide would greatly be appreciated.

David Brooks


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Encryption in CF

2000-10-04 Thread Kevin Schmidt

I visited the site.  How does it work??
- Original Message -
From: "John Bowering" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Wednesday, October 04, 2000 12:28 PM
Subject: RE: Encryption in CF


> not safe
>
> http://shroom.dv8.org/cfd/
>
>
>
>
> -Original Message-
> From: Kevin Schmidt [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, October 04, 2000 1:53 PM
> To: CF-Talk
> Subject: Encryption in CF
>
>
> This is a multi-part message in MIME format.
>
> --=_NextPart_000_13F1_01C02E02.05D48540
> Content-Type: text/plain;
> charset="iso-8859-1"
> Content-Transfer-Encoding: quoted-printable
>
> How safe is the encryption in CF.  Are there ways to unecrypt encrypted =
> CF files? Known exploits?
>
> Thanks,
>
> Kevin Schmidt
> Internet Services Director
> PWB Integrated Marketing and Communications
> Office: 734.995.5000
> Mobile: 734.649.4843
>
>
> --=_NextPart_000_13F1_01C02E02.05D48540
> Content-Type: text/html;
> charset="iso-8859-1"
> Content-Transfer-Encoding: quoted-printable
>
> 
> 
>  http-equiv=3DContent-Type>
> 
> 
> 
> 
> How safe is the encryption in CF.  =
> Are there=20
> ways to unecrypt encrypted CF files? Known exploits?
>  
> Thanks,
>  
> Kevin SchmidtInternet Services =
> DirectorPWB=20
> Integrated Marketing and CommunicationsOffice: =
> 734.995.5000Mobile:=20
> 734.649.4843
>
> --=_NextPart_000_13F1_01C02E02.05D48540--
>
> --
--
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.
>
> --

> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
>

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



  1   2   >