locale settings on w2k

2001-06-25 Thread Will Swain

Hi all,

This has happened to me a couple of times, and I'm sure it is due to the
locale settings in w2k server, but my host is telling me that the locales
are set correctly to the uk.

When I use LSCurrencyFormat it is decimal formatting numbers but adding a $
dollar sign, not a £ pound sign.

Does anyone know if there is another setting that could be affecting this? I
will be using DecimalFormat anyway, and adding a £ myself.

Regards

Will


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

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



Re: locale settings on w2k

2001-06-25 Thread Paul Hastings

> When I use LSCurrencyFormat it is decimal formatting numbers but adding a
$
> dollar sign, not a £ pound sign.

you control cf's locale via the SetLocale function.  unfortunately,
what you're seeing looks like a bug. there appears to be several in
cf's international functions



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

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



Test - 0 messages

2001-06-25 Thread Scott Mulholland

Is this list working?
 
Scott Mulholland
Systems Programmer
Exario Networks
http://www.exario.net  
  888.2.EXARIO 
[EMAIL PROTECTED]  
 


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

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



quick count

2001-06-25 Thread Robert Orlini

How can I do a quick count within a certain column of a certain text that it
contains?

For instance I have a column called AST which may either be empty or contain
text such as "AST".

I would like to get a count of the occurrences of the "AST" text and display
a number of the occurrences. I tried the COUNT() tag but it counts all the
rows.

Any help appreciated. Thanks.

Robert O.

-
This some of my ROUGH coding, but my mind has writers block today:




SELECT AST FROM wweb
Where AST = 'AST'










AST: #astcount#


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

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



ArraySort()

2001-06-25 Thread Bernd VanSkiver

I am having problems with ArraySort() function.  Has a
2 dimensional array with one column having text and
the other having integers.  Here is what I am doing:


 ArraySort(PartnerArray, "text");


And it gives me this error:

The expression has requested a variable or an
intermediate expression result as a simple value,
however, the result cannot be converted to a simple
value. Simple values are strings, numbers, boolean
values, and date/time values. Queries, arrays, and COM
objects are examples of complex values.

Any ideas?  Not much documentation that I could find
on ArraySort()

=
Bernd VanSkiver
[EMAIL PROTECTED]
ColdFusion Developer
ICQ UIN: 916324
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



RE: quick count

2001-06-25 Thread Larry Juncker

You probably would need to do a query as such:


SELECT *
FROM tableName
WHERE AST CONTAINS "AST"



#getASTCount.RecordCount#


-Original Message-
From: Robert Orlini [mailto:[EMAIL PROTECTED]]
Sent: Monday, June 25, 2001 11:00 AM
To: CF-Talk
Subject: quick count


How can I do a quick count within a certain column of a certain text that it
contains?

For instance I have a column called AST which may either be empty or contain
text such as "AST".

I would like to get a count of the occurrences of the "AST" text and display
a number of the occurrences. I tried the COUNT() tag but it counts all the
rows.

Any help appreciated. Thanks.

Robert O.

-
This some of my ROUGH coding, but my mind has writers block today:




SELECT AST FROM wweb
Where AST = 'AST'










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

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



RE: quick count

2001-06-25 Thread Garza, Jeff

If you are doing this exactally as you've coded, then you should use
getcount.recordcount to display the number of records returned.
Alternately, you could do it within your database by running 


SELECT COUNT(AST) AS AST_Count
FROM wweb
Where AST = 'AST'


Then by outputting #getcount.AST_Count# you'll get the number of matching
records.
Kinda depends on what you are trying to accomplish...

HTH,

Jeff Garza
Lead Developer/Webmaster
Spectrum Astro, Inc.
480.892.8200
[EMAIL PROTECTED]
http://www.spectrumastro.com



-Original Message-
From: Robert Orlini [mailto:[EMAIL PROTECTED]] 
Sent: Monday, June 25, 2001 9:00 AM
To: CF-Talk
Subject: quick count


How can I do a quick count within a certain column of a certain text that it
contains?

For instance I have a column called AST which may either be empty or contain
text such as "AST".

I would like to get a count of the occurrences of the "AST" text and display
a number of the occurrences. I tried the COUNT() tag but it counts all the
rows.

Any help appreciated. Thanks.

Robert O.

-
This some of my ROUGH coding, but my mind has writers block today:




SELECT AST FROM wweb
Where AST = 'AST'










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

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



Test

2001-06-25 Thread Russel Madere

I haven't gotten anything since Friday.

Russel

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

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



help using sql sum function

2001-06-25 Thread Jeff Fongemie

Hello cf-talk,

Why the heck is this throwing an error? "Expression result cannot be
converted to a string"


SELECT  SUM(racedaylunch)
FROM thelist



#exlunch#


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



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

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



test ignore

2001-06-25 Thread Lomvardias, Christopher

test

Chris
--
Chris Lomvardias
[EMAIL PROTECTED]
Syscom, Inc.
400 E. Pratt Street, Suite 300
Baltimore, MD 21202
(410)539-3737 x1722 voice
(410)539-7302 fax
[EMAIL PROTECTED] (pager via email)
http://www.syscom.com/
--


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

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



Re: test ignore

2001-06-25 Thread Dave Hannum

What's the difference between a test ignore and a real ignore???  8-)

Dave
- Original Message -
From: "Lomvardias, Christopher" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Monday, June 25, 2001 12:03 PM
Subject: test ignore


> test
>
> Chris
> --
> Chris Lomvardias
> [EMAIL PROTECTED]
> Syscom, Inc.
> 400 E. Pratt Street, Suite 300
> Baltimore, MD 21202
> (410)539-3737 x1722 voice
> (410)539-7302 fax
> [EMAIL PROTECTED] (pager via email)
> http://www.syscom.com/
> --
>
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



Re: help using sql sum function

2001-06-25 Thread stas

You need to alias the result of the aggregate function.


SELECT  SUM(racedaylunch) as LunchSum
FROM thelist



#LunchSum#

- Original Message -
From: "Jeff Fongemie" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Monday, June 25, 2001 12:09 PM
Subject: help using sql sum function


Hello cf-talk,

Why the heck is this throwing an error? "Expression result cannot be
converted to a string"


SELECT  SUM(racedaylunch)
FROM thelist



#exlunch#


Best regards,
 Jeff Fongemie  mailto:[EMAIL PROTECTED]

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

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



Testing: Is this thing on

2001-06-25 Thread Robert Everland



Robert Everland III
Dixon Ticonderoga
Web Developer Extraordinaire

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

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



Re: Testing: Is this thing on

2001-06-25 Thread Michael Dinowitz

yes, but if others want to 'shout out', I've got no problems.


>
>
> Robert Everland III
> Dixon Ticonderoga
> Web Developer Extraordinaire
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



Chat Room

2001-06-25 Thread Steven A. del Sol

Can anyone recommend an inexpensive chat room to run on IIS and CF 4.5?  It 
is for a non-profit site that we are doing as a donation.  If you have an 
application you wrote and would like to donate it let me know.  I will 
ensure you get recognition for it.

Steven A. del Sol
NETPACQ Systems, Inc.
[EMAIL PROTECTED]
http://www.netpacq.com
-
Vendor Representative
San Diego Cold Fusion
User Group
[EMAIL PROTECTED]
http://www.sdcfug.org



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

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



Is this list screwed up again?

2001-06-25 Thread Len Conrad



I haven´t received but about 150 msgs in the last 10 days, versus 100+ msgs 
per day up to 15 June.

A couple of other CF Talk members have contacted me directly, saying they 
weren´t getting msgs either.

What´s up?

10 days?

Len


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

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



Re: Is this list screwed up again?

2001-06-25 Thread Michael Dinowitz

1. the old box had dead drives so we had to move over
2. bad DNS on the new box (it should be 207.31.122.190)
3. a 'feature' of post.office that says that a message can not be sent to
someone who has mail in the deferred directory. As there are over 2k people
of this sort with hundreds of messages each, the system is being cranky.
I've dealt with that.
4. CF 5 issues (yes, CF 5 and website as well as CFMAIL) have some small
issues.
5. time. I'm trying to get everything back up and balanced but each new
issue or old one takes some time. Things should be ok or close to it now.
6. People have to post. People are starting to get mail and post now and
it'll take a few days to get back up to 100%


>
>
> I haven´t received but about 150 msgs in the last 10 days, versus 100+
msgs
> per day up to 15 June.
>
> A couple of other CF Talk members have contacted me directly, saying they
> weren´t getting msgs either.
>
> What´s up?
>
> 10 days?
>
> Len
>
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



Dropping Null fields from a Query

2001-06-25 Thread Chad Gray

I am populating a drop down menu with a query from a database:




 #select.Color1#



Inside of the database there are NULL or blank entries.  So when i get the 
drop down populated i get a bunch of blank spaces.

Is there a way i can modify my CFOUTPUT so it does not display the blank 
entries into my Drop Down???

Thanks,
Chad


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

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



RE: Dropping Null fields from a Query

2001-06-25 Thread Garza, Jeff





   #select.Color1#





HTH,

Jeff Garza
Lead Developer/Webmaster
Spectrum Astro, Inc.
480.892.8200
[EMAIL PROTECTED]
http://www.spectrumastro.com



-Original Message-
From: Chad Gray [mailto:[EMAIL PROTECTED]] 
Sent: Monday, June 25, 2001 9:59 AM
To: CF-Talk
Subject: Dropping Null fields from a Query


I am populating a drop down menu with a query from a database:




 #select.Color1#



Inside of the database there are NULL or blank entries.  So when i get the 
drop down populated i get a bunch of blank spaces.

Is there a way i can modify my CFOUTPUT so it does not display the blank 
entries into my Drop Down???

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

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



RE: Dropping Null fields from a Query

2001-06-25 Thread Chad Gray

Oh.. duh...  i need more coffee.

Thanks for the help



At 10:07 AM 6/25/2001 -0700, you wrote:
>
> 
> 
> 
>#select.Color1#
> 
> 
> 
>
>
>HTH,
>
>Jeff Garza
>Lead Developer/Webmaster
>Spectrum Astro, Inc.
>480.892.8200
>[EMAIL PROTECTED]
>http://www.spectrumastro.com
>
>
>
>-Original Message-
>From: Chad Gray [mailto:[EMAIL PROTECTED]]
>Sent: Monday, June 25, 2001 9:59 AM
>To: CF-Talk
>Subject: Dropping Null fields from a Query
>
>
>I am populating a drop down menu with a query from a database:
>
>
> 
> 
>  #select.Color1#
> 
>
>
>Inside of the database there are NULL or blank entries.  So when i get the
>drop down populated i get a bunch of blank spaces.
>
>Is there a way i can modify my CFOUTPUT so it does not display the blank
>entries into my Drop Down???
>
>Thanks,
>Chad
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



SQL2000 Move data

2001-06-25 Thread Mike

I need to move an entire data base from one SQL Server to anouther with ftp
or zipdisk/cdrom.
How is this done
Thanks Mike

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

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



Re: Dropping Null fields from a Query

2001-06-25 Thread stas

You can ignore the rows with NULL or blank values from your query recordset.

.
WHERE Color1 IS NOT NULL AND Color1 <> ''

If you need the records with NULL or blank values for some other purposes on
the same page, you could use the SQL function ISNULL to substitues NULLs
with other values, like this:

SELECT ISNULL(Color1,'0') as Color1
..

THEN in your form select element:






 #select.Color1#





- Original Message -
From: "Chad Gray" <[EMAIL PROTECTED]>


I am populating a drop down menu with a query from a database:




 #select.Color1#



Inside of the database there are NULL or blank entries.  So when i get the
drop down populated i get a bunch of blank spaces.

Is there a way i can modify my CFOUTPUT so it does not display the blank
entries into my Drop Down???

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

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



running RDS service as non-system account

2001-06-25 Thread Mark Woods

I'm running CF 4.5.2 on Windows and currently have RDS service running and 
use CF Studio to develop on the 'live' machine (well, fix things here and 
there, there is a separate development server).

I really, really want to continue using CF Studio for remote development, 
but I'm really, really worried about security. I'd rest easier if I could 
run the RDS service under a different user which has limited permissions on 
the server, but I tried this and though the service would run, I couldn't 
access with CF Studio anymore (is this just because I need to run both RDS 
and App Server services under the same user?).

- Has anyone got the RDS service running under an account other than local 
system?
- Is data transferred using RDS encrypted in any way?
- Can I force the RDS service to listen (and CF Studio to connect) on a 
port other than 80? At least that way I could allow access only to known IPs.


Thanks

Mark


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

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



Re: test ignore

2001-06-25 Thread Michael Dinowitz

No one can hear you with a real one. :)

> What's the difference between a test ignore and a real ignore???  8-)
>
> Dave
> - Original Message -
> From: "Lomvardias, Christopher" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Monday, June 25, 2001 12:03 PM
> Subject: test ignore
>
>
> > test
> >
> > Chris
> > --
> > Chris Lomvardias
> > [EMAIL PROTECTED]
> > Syscom, Inc.
> > 400 E. Pratt Street, Suite 300
> > Baltimore, MD 21202
> > (410)539-3737 x1722 voice
> > (410)539-7302 fax
> > [EMAIL PROTECTED] (pager via email)
> > http://www.syscom.com/
> > --
> >
> >
> >
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



Re: Duplicate name conflict error message

2001-06-25 Thread hearl

Hi Gene,

Thanks for the advice and for the code.  I particularly like it because it
hard wire the number of properties into the application, and so allows the
application to be more flexible.  A few questions:

> If there's a possibility of more than 3 properties, you might consider
> asking a question at the beginning about how many properties
> they'd like to insure. Then post the form back to itself,

1.  By 'post' do you mean as in email?
2.  The application has a number of templates.  One contains the code for
the form itself.  Another is the 'engine' that updates and deletes data
already entered into the database.  Can I use the code you just sent to
allow the field names to be looped in the query clause, so that instead of
having to code

SELECT PremAddress_1,
 PremAddress_2,
 PremAddress_3,
 etc.
I could have the loop automatically done?
3.  Is there a way to do the same thing for the  clauses, so that
instead of coding

  etc.
I could arrange for an automatic loop?
4.  How can I arrange for the number of fields in the relevant table of the
database to be increased commensurately with the number of properties?

Hubert
---
Hubert Earl

ICQ#: 16199853

My Jamaican Art, Craft & More Online Store:
http://www.angelfire.com/ny/hearl/link_page_for_go_jamaica.html
Check out the art print bargains available! Beautiful prints as low as
US$7.50 each, less if you purchase 2 or more. Also being sold:  the
Genealogy of Jamaica CD-ROM


- Original Message -
From: <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Saturday, June 23, 2001 10:43 PM
Subject: Re: Duplicate name conflict error message


> You may be better off to name the property fields "property1",
> "property2", "property3", etc., then apply the validation as required.
>
> If there's a possibility of more than 3 properties, you might consider
> asking a question at the beginning about how many properties
> they'd like to insure. Then post the form back to itself, reading the
> response and using that number as the control for a loop
> something like this:
>
> 
> 
> 
> 
> 
> 
> 
>
> Gene Kraybill
>
> On 22 Jun 2001, at 11:30, [EMAIL PROTECTED] wrote:
>
> > Thanks for the response. You're right.  The problem actually is that I
have
> > more than one
> > field in the form with the same name.  The reason for this is that the
form
> > allows users to apply for insurance to cover their property or
properties.
> > As an applicant may have more than one property to be insured,  I've
> > repeated the code in that part of the form dealing with property details
> > three times, hence the repeat occurrance of fieldnames.
> >
> > At first, I only used the  and  tags.  However, because I
> > needed to flag the first occurrance of the various property fields as
> > required, I changed these to  and  tags, but thereby
ran
> > into the problem that CF doesn't allow for repeated fieldnames (and I
> > couldn't flag any of these fields as 'required' or 'no null allowed' in
> > Access, since that would cause an error if an applicant had only one or
two
> > properties to be insured, and so left any of the repeated part of the
form
> > blank).
> >
> > Here is what I need to do:
> > 1.  I need to be able to allow users of my form to enter in details of
> > anywhere from one to three properties, either by repeating the form code
or
> > by some other device of which I'm presently unaware, at the same time.
> > 2.  I need to be able to make the fields, in the first instance of the
part
> > of the form dealing with property details, required fields, but not any
of
> > the other instances.
> >
> > I'd appreciate any advice.
> >
> > Hubert
> >
> > ---
> > Hubert Earl
> >
> > ICQ#: 16199853
> >
> > My Jamaican Art, Craft & More Online Store:
> > http://www.angelfire.com/ny/hearl/link_page_for_go_jamaica.html
> > Check out the art print bargains available! Beautiful prints as low as
> > US$7.50 each, less if you purchase 2 or more. Also being sold:  the
> > Genealogy of Jamaica CD-ROM
> >
> >
> > - Original Message -
> > From: James Taavon <[EMAIL PROTECTED]>
> > To: CF-Talk <[EMAIL PROTECTED]>
> > Sent: Thursday, June 21, 2001 3:16 PM
> > Subject: Re: Duplicate name conflict error message
> >
> >
> > >
> > > It is probably because you have two form elements with the same name.
> > > Hope that helps.
> > >
> > >
> > >
> > >
> > > [EMAIL PROTECTED] wrote:
> > > >
> > > > Hi,
> > > >
> > > > I'm getting a 'Duplicate name conflict' error message.  I'm unable
to
> > solve it, because the code in which it is appearing is over 1,000 lines
> > long.  Also, the error message states:
> > > > "The error occurred while processing an element with a general
> > identifier of (CFINPUT), occupying document position (380:1) to
(381:39)."
> > > >
> > > > This doesn't help me, because line 280 contains only the code 
and
> > line 381 is completely blank, with nothing on it at all.  I don't
> > understand, therefore, how th

Re: CF-Talk-list V1 #38

2001-06-25 Thread Stephen Garrett


This is the one of the few CF-Talks that I have seen lately. I suspect
that MD has some serious DNS problems. I know my mailservers have been
up all of the time, yet I am not received (for the most part) any cf-talk
messages.

Steve

At 08:55 AM 6/22/2001 +1200, Cameron wrote:
>Hmmm, is something up with the list?
>
>Cause usually I get atleast one large (>40K) digest a day, usually a few
small ones too.
>
>But yesterday I had no emails, & today I get digest #38 with only one
message. & last Tuesday (list time) I got three small digests (biggest was
6K)...
>
>Seems the list is a lot slower at the moment for some strange reason...
>
>Cameron
>
>- Original Message - 
>From: "CF-Talk" <[EMAIL PROTECTED]>
>To: <[EMAIL PROTECTED]>
>Sent: Friday, June 22, 2001 3:10 AM
>Subject: CF-Talk-list V1 #38
>
>
>> CF-Talk-list   Thu, 21 Jun 2001   Volume 1 :
Number 38
>> 
>> In this issue:
>> 
>> Re: encrypt credit card field?
>> 
>> 
>> --
>> 
>> Date: Thu, 21 Jun 2001 22:31:01 +0800
>> From: "Kay Smoljak" <[EMAIL PROTECTED]>
>> To: "CF-Talk" <[EMAIL PROTECTED]>
>> Subject: Re: encrypt credit card field?
>> Message-ID: <[EMAIL PROTECTED]>
>> 
>> Tom,
>> 
>> Have a look at our cfx_pwcardcrypt tag,
http://developer.perthweb.com.au. We
>> designed it for a client storing cc numbers for monthly subscriptions, it
>> uses RSA public key crypto.
>> 
>> HTH,
>> K.
>> 
>> On Thu, 21 Jun 2001 08:43:19 -0500, "Tom Davison"
<[EMAIL PROTECTED]>
>> wrote:
>> >How would you go about securing credit card info in an access database?
 Is
>> it possible?
>>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



running RDS service as non-system account (forgot to say...)

2001-06-25 Thread Mark Woods

I'm running CF Pro, not Enterprise so don't have the Advanced Security 
options in the administrator, though I've just seen a comparison matrix at:
http://www.macromedia.com/software/coldfusion/productinfo/matrix/cf5_matrix.pdf
which lists cf4.5 pro as having the advanced security options - whassastory?


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

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



Fusebox list

2001-06-25 Thread stas

Could anybody pleas post the information on where the Fusebox list moved.
House of Fusion still lists it as [EMAIL PROTECTED], but it's been
dead for a while. Thank you.


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

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



RE: DHTML - HierMenus

2001-06-25 Thread phumes1


Hi,

Has anyone incorporated the DHTML HeirMenus on their site but as a 
horizontal menu and sub-menus from the main?

All the examples I see are like:

[Menu 1]  ->  [Sub-heading 1]
[Sub-heading 2]
[Sub-heading 3]
[Sub-heading 4]


Example:

[Menu 1] [Menu 2] [Menu 3] [Menu 4] [Menu 5] [Menu 6]
|
|
 ->   [Sub-heading 1]
[Sub-heading 2]
[Sub-heading 3]
[Sub-heading 4]



http://www.webreference.com/dhtml/hiermenus/


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

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



RE: DHTML - HierMenus

2001-06-25 Thread Larry Juncker

Take a look at http://www.get1used.com and see if that is what you mean.
If it is, then Yes, I have.

Larry Juncker
Senior Cold Fusion Developer
Heartland Communications Group, Inc.
[EMAIL PROTECTED]

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Monday, June 25, 2001 2:05 PM
To: CF-Talk
Subject: RE: DHTML - HierMenus



Hi,

Has anyone incorporated the DHTML HeirMenus on their site but as a
horizontal menu and sub-menus from the main?

All the examples I see are like:

[Menu 1]  ->  [Sub-heading 1]
[Sub-heading 2]
[Sub-heading 3]
[Sub-heading 4]


Example:

[Menu 1] [Menu 2] [Menu 3] [Menu 4] [Menu 5] [Menu 6]
|
|
 ->   [Sub-heading 1]
[Sub-heading 2]
[Sub-heading 3]
[Sub-heading 4]



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

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



RE: SQL2000 Move data

2001-06-25 Thread Mark Warrick

The simplest way would be to use the import or export features of SQL server
to connect the two servers together and transfer the database.  Although, if
that's not an option, you could also try backing up the SQL database and
restoring it on the other server or you can export the SQL database to
Access, import it to the other SQL server, and reset all the constraints
manually.

There's many other ways to do it as well.

Perhaps if you could explain the situation more clearly, we could provide
you with a solution that best fits your needs.

---mark


Mark Warrick - Fusioneers.com
Personal Email: [EMAIL PROTECTED]
Business Email: [EMAIL PROTECTED]
Phone: 714-547-5386
Efax: 801-730-7289
Personal URL: http://www.warrick.net
Business URL: http://www.fusioneers.com
ICQ: 125160 / AIM: markwarric


> -Original Message-
> From: Mike [mailto:[EMAIL PROTECTED]]
> Sent: Monday, June 25, 2001 10:34 AM
> To: CF-Talk
> Subject: SQL2000 Move data
>
>
> I need to move an entire data base from one SQL Server to
> anouther with ftp
> or zipdisk/cdrom.
> How is this done
> Thanks Mike
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



what's going on?

2001-06-25 Thread Nathan Chen

Is it just me or something is wrong with this list? I haven't received
posts for several days.

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

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



RE: Fusebox list

2001-06-25 Thread Brad Roberts

[EMAIL PROTECTED]

> -Original Message-
> From: stas [mailto:[EMAIL PROTECTED]]
> Sent: Monday, June 25, 2001 2:41 PM
> To: CF-Talk
> Subject: Fusebox list
>
>
> Could anybody pleas post the information on where the Fusebox list moved.
> House of Fusion still lists it as [EMAIL PROTECTED], but it's been
> dead for a while. Thank you.
>
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



RE: Detecting if Browser has Cookies Enabled

2001-06-25 Thread Dennis Powers

I put this in the Application.cfm page:















Then you can append #Token# to the end of every url variable statement.

Best Regards,

Dennis Powers
UXB Internet
(203) 879-2844
http://www.uxbinfo.com/

-Original Message-
From: Graham Pearson [mailto:[EMAIL PROTECTED]]
Sent: Monday, June 18, 2001 10:26 AM
To: CF-Talk
Subject: Detecting if Browser has Cookies Enabled

List Subscribers:

I am trying to find a section of code that I can put into my pages to test
the existence of cookies and if they do not exist, I am wanting to add CFID
and CFTOKEN to each Link after a user logs in. If the browser has cookies
enabled, I want to use cookies.

Does anyone have a reference on how this can be done.


---
Graham Pearson, President and CFUG Manager
Northern Indiana Coldfusion User Group
Website: Http://www.nicufg.org
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



RE: URL Hacks

2001-06-25 Thread Dennis Powers

It is good to bring this subject up every now and then especially since we
get too focused on making the application work, we often forget to check out
ways make it break.

Allaire has some knowledgebase articles about this that may be helpful:


http://www.allaire.com/Handlers/index.cfm?ID=14558&Method=Full

http://www.allaire.com/Handlers/index.cfm?ID=14557&Method=Full


Best Regards,

Dennis Powers
UXB Internet
(203) 879-2844
http://www.uxbinfo.com/

-Original Message-
From: Don Vawter [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, June 13, 2001 7:10 PM
To: CF-Talk
Subject: URL Hacks

Having recently suffered (not too much fortunately) through an attempt of a
hacker to corrupt a database by embedding sql in url paramaters I have put
together a few tips on preventing these attacks from being successful. I
realize that this is not new (I first heard of if at least 2 years ago) but
sometimes a little reminder doesn't hurt because obviously the hackers are
still out there.

If anyone has any interest it is at: http://www.vawter.com/urlhack.cfm

HTH

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

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



test

2001-06-25 Thread Michael Wilson

Test message




Michael Wilson - CTO/Secretary
http://www.xionmedia.com

Xion Media, Inc. Web Development
P: 704-398-2454  F: 704-398-2063

"In the middle of difficulty lies opportunity." --Albert Einstein 


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

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



CF Query to XML

2001-06-25 Thread Jay E Wigginton

Is there a custom tag that will take the result set of a query and write it
to an XML file?

thanks
Jay


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

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



RE: CF Query to XML

2001-06-25 Thread Ryan Sabir


Converting it to a string using CFWDDX and then writing it to a text file
will achieve basically that...

Or were you after something more sophisticated?

-Original Message-
From: Jay E Wigginton [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, 26 June 2001 3:27 PM
To: CF-Talk
Subject: CF Query to XML


Is there a custom tag that will take the result set of a query and write it
to an XML file?

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

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