req: CF Applets and WDDX help

2000-10-17 Thread Mooner Ent

Hi,

Below is brief description of what I'm attempting to do. If you could help
with some code snippets (or a good place to look) that would be great.

Objective:
1) To have an applet (on start or initialization) call the cfm page on the
home server with an id number.
2) The cfm page will take that id number and return an array of information
via WDDX.
3) The applet needs to deserialize the WDDX packet into a Java array.
4) The applet populates that array with information.
5) The applet needs to return that array back to the server, I'm assuming in
a newly serialized WDDX packet. A cfm page takes that packet and puts it
into the database.

Work to Date:
Passing the applet an id number is done.
Not done, applet passing the id to the cfm page.
The cfm page creating a wddx array packet is done.
Not done, the applet getting and deserializing the wddx packet.
Having the applet populate the array with info is done.
Not done, having the applet pass the newly serialized packet back to the
server.
Not done, having the cfm page take the packet and deserialize it.

My compiler has the following.
import org.xml.sax.InputSource;
import com.allaire.wddx.WddxDeserializer;
import com.allaire.wddx.WddxSerializer;
import com.jclark.xml.sax.Driver;

The WddxDeserializationDemo1.class generates this error at runtime:
C:\myJava>java WddxDeserializationDemo1
Hello
World!
Exception in thread "main" java.lang.NoClassDefFoundError:
org/xml/sax/InputSource at
WddxDeserializationDemo1.testDeserialization(WddxDeserializationDemo1.java:5
5) at WddxDeserializationDemo1.main(WddxDeserializationDemo1.java:27)

Why the demo from wddx.org sdk doesn't work I don't know.

Thanks,

Rick






__
Do You Yahoo!?
Talk to your friends online with Yahoo! Messenger.
http://im.yahoo.com

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



RE: Html email??

2000-10-17 Thread Pete Freitag

In CFMAIL you have to specify  otherwise it will show up
in plain text.

__
Pete Freitag ([EMAIL PROTECTED])
CFDEV.COM / NETDesign Inc.
ColdFusion Developer Resources
http://www.cfdev.com/

-Original Message-
From: Joseph Eugene [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, October 18, 2000 12:16 AM
To: CF-Talk
Subject: Html email??


Hello all,
Is there a way to send html email, so most email clients
can resolve it.
I am sending html email and even Outlook express 5.0 or
Messenger 4.7
shows the html. It works fine in Microsoft Outlook 98
though.
Am i doing something wrong.
please advice.

Thanks
Joe



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


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



Re: Preventing Simultaneous Logins

2000-10-17 Thread Peter Alexandrou

I can think of many similar solutions but they are all useless because most
of the time users simply close their browsers or their sessions expire.

Surely someone out there has tackled this problem successfully?

- Original Message -
From: "Pete Freitag" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Wednesday, October 18, 2000 2:15 PM
Subject: RE: Preventing Simultaneous Logins


> Keep a log of when people login, and when they log out (could get very
> large, but you could purge it daily).  Then when someone logs in do the
> following...
>
> SELECT username FROM audit_table
> WHERE
> username = '#form.username#' AND
> timestamp > #DateAdd("n", -30, Now())#
> ORDER BY action
>
> That will see if  the user has been around in the last half hour
>
> Action could be a boolean field 1 being login 0 being logout
> 
> 
> already logged in 
> 
> 
> login...
>
> The problem with this entire process, is that there is no destructor
called
> when a session disappears, or times out.
>
> __
> Pete Freitag ([EMAIL PROTECTED])
> CFDEV.COM / NETDesign Inc.
> ColdFusion Developer Resources
> http://www.cfdev.com/
>
> -Original Message-
> From: Peter Alexandrou [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, October 17, 2000 7:37 PM
> To: CF-Talk
> Subject: Preventing Simultaneous Logins
>
>
> Hi guys,
>
> I'm new to the mailing list and have a quick question for y'all.
>
> What is the best way to prevent a userID being logged in twice i.e.
someone
> logs in with "login1" and then another user logs in with the same ID.
>
> Thanks,
>
> Peter Alexandrou
> Technical Leader
>
> tapestry communications : www.tapestry.net.au
> phone : 0411 445 111
> e-mail : [EMAIL PROTECTED]
>
> --
--
> 
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send
a
> message with 'unsubscribe' in the body to
[EMAIL PROTECTED]
>
> --
--
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send
a message with 'unsubscribe' in the body to
[EMAIL PROTECTED]


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



Re:

2000-10-17 Thread Adam Phillip Churvis

HOW COULD I FORGET??!!!  Of course, Michael Smith!  What was I thinking?

My apologies, Michael.  Of course you are a frontrunner.

At 08:46 PM 10/17/00 -0700, you wrote:
>I nominate Michael Smith from Teratech.  He goes to
>extremes giving his time and resources to the
>ColdFusion Community.  He's arranged a few free
>conferences, runs one of the Maryland ColdFusion
>User's Groups, writes articles and is generally
>proactive in making programming with ColdFusion a
>better experience.  (Not to mention he's always good
>for a free beer!)
>
>- Original Message - 
>From: "Adam Phillip Churvis"
><[EMAIL PROTECTED]>
>To: "CF-Talk" <[EMAIL PROTECTED]>
>Sent: Tuesday, October 17, 2000 6:44 PM
>Subject:  Awards
>
>
>> FusionFolks,
>> 
>> I would like to propose an annual award for the most
>helpful people in the
>> CF community.  The name I picked for this award is
>, because a
>> "Mensch" is a really caring person who treats others
>with respect, who
>> performs acts of kindness, and who tries to make the
>community a better place.
>> 
>> The people I would like to nominate are:
>> 
>> Michael Dinowitz
>> Dave Watts
>> Cameron Childress
>> 
>> I see some really outstanding advice and help coming
>from these folks (any
>> many others, to be sure), so I think we ought to
>"brand" them accordingly!
>> 
>> There are so many who help, and my list contains
>only those who stick out
>> in my mind most prominently, so I hope others will
>add their nominations, too.
>> 
>> What do you think, folks?
>> 
>> Respectfully,
>> 
>> Adam Phillip Churvis
>> President
>> Productivity Enhancement, Inc.
>> 
>>
>
>> *  PRODUCTIVITY ENHANCEMENT,
>INC.  *
>> *   
>  *
>> *Publishers of the CommerceBlocks line of
>modular development tools*
>> *  for ColdFusion   
>  *
>> *   
>  *
>> * Website: http://www.commerceblocks.com   E-mail:
>[EMAIL PROTECTED] *
>> * Phone:   770-446-8866Fax:   
>770-242-0410*
>> *   
>  *
>>
>
>> 
>>
>
>
>> Archives:
>http://www.mail-archive.com/cf-talk@houseoffusion.com/
>> Unsubscribe:
>http://www.houseoffusion.com/index.cfm?sidebar=lists
>or send a message with 'unsubscribe' in the body to
>[EMAIL PROTECTED]
>> 
>
>__
>Do You Yahoo!?
>Yahoo! Messenger - Talk while you surf!  It's FREE.
>http://im.yahoo.com/
>
>
>Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
>Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a 
>message with 'unsubscribe' in the body to [EMAIL PROTECTED]


Respectfully,

Adam Phillip Churvis
Productivity Enhancement, Inc.

Publishers of the CommerceBlocks line of 
modular ColdFusion development tools 

Website: http://www.commerceblocks.com   
E-mail:  [EMAIL PROTECTED]
Phone:   770-446-8866

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



RE: Preventing Simultaneous Logins

2000-10-17 Thread Pete Freitag

Keep a log of when people login, and when they log out (could get very
large, but you could purge it daily).  Then when someone logs in do the
following...

SELECT username FROM audit_table
WHERE
username = '#form.username#' AND
timestamp > #DateAdd("n", -30, Now())#
ORDER BY action

That will see if  the user has been around in the last half hour

Action could be a boolean field 1 being login 0 being logout


already logged in 


login...

The problem with this entire process, is that there is no destructor called
when a session disappears, or times out.

__
Pete Freitag ([EMAIL PROTECTED])
CFDEV.COM / NETDesign Inc.
ColdFusion Developer Resources
http://www.cfdev.com/

-Original Message-
From: Peter Alexandrou [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, October 17, 2000 7:37 PM
To: CF-Talk
Subject: Preventing Simultaneous Logins


Hi guys,

I'm new to the mailing list and have a quick question for y'all.

What is the best way to prevent a userID being logged in twice i.e. someone
logs in with "login1" and then another user logs in with the same ID.

Thanks,

Peter Alexandrou
Technical Leader

tapestry communications : www.tapestry.net.au
phone : 0411 445 111
e-mail : [EMAIL PROTECTED]



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


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



Html email??

2000-10-17 Thread Joseph Eugene

Hello all,
Is there a way to send html email, so most email clients
can resolve it.
I am sending html email and even Outlook express 5.0 or
Messenger 4.7
shows the html. It works fine in Microsoft Outlook 98
though.
Am i doing something wrong.
please advice.

Thanks
Joe


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



cf-talk@houseoffusion.com

2000-10-17 Thread Eron Cohen

I nominate Michael Smith from Teratech.  He goes to
extremes giving his time and resources to the
ColdFusion Community.  He's arranged a few free
conferences, runs one of the Maryland ColdFusion
User's Groups, writes articles and is generally
proactive in making programming with ColdFusion a
better experience.  (Not to mention he's always good
for a free beer!)

- Original Message - 
From: "Adam Phillip Churvis"
<[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, October 17, 2000 6:44 PM
Subject:  Awards


> FusionFolks,
> 
> I would like to propose an annual award for the most
helpful people in the
> CF community.  The name I picked for this award is
, because a
> "Mensch" is a really caring person who treats others
with respect, who
> performs acts of kindness, and who tries to make the
community a better place.
> 
> The people I would like to nominate are:
> 
> Michael Dinowitz
> Dave Watts
> Cameron Childress
> 
> I see some really outstanding advice and help coming
from these folks (any
> many others, to be sure), so I think we ought to
"brand" them accordingly!
> 
> There are so many who help, and my list contains
only those who stick out
> in my mind most prominently, so I hope others will
add their nominations, too.
> 
> What do you think, folks?
> 
> Respectfully,
> 
> Adam Phillip Churvis
> President
> Productivity Enhancement, Inc.
> 
>

> *  PRODUCTIVITY ENHANCEMENT,
INC.  *
> *   
  *
> *Publishers of the CommerceBlocks line of
modular development tools*
> *  for ColdFusion   
  *
> *   
  *
> * Website: http://www.commerceblocks.com   E-mail:
[EMAIL PROTECTED] *
> * Phone:   770-446-8866Fax:   
770-242-0410*
> *   
  *
>

> 
>

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

__
Do You Yahoo!?
Yahoo! Messenger - Talk while you surf!  It's FREE.
http://im.yahoo.com/

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



RE: Detecting search engine robots

2000-10-17 Thread Ed Toon

http://info.webcrawler.com/mak/projects/robots/active.html



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



Re: Detecting search engine robots

2000-10-17 Thread Terry - it-werks.com

This is not a flame, but I think that you have triggered the 0.01% of
the people who want to do what the search engines claim 1,000% of people who
use interactive programming on the internet sole purpose is ie: to redirect
them to a bogus page. I think that the search engine community is slowing
the growth of the internet especially where interactivity is concerned and
using reasons like the one above is backward thinking. I do not think a
small group of search engines should control the internet with noone
controlling them or their ethics.

Just a thought that bothers me from time to time, when a potential client
says, "Oh is this Cold Fusion going to hurt my position in the search
engines?"

PS, I personally don't think there is anything wrong in what you are asking
Sebastian, but using it to make a point to mull over.

Terry

- Original Message -
From: sebastian palmigiani <[EMAIL PROTECTED]>
To: CF-Talk <[EMAIL PROTECTED]>
Sent: Tuesday, October 17, 2000 8:09 PM
Subject: Detecting search engine robots


> on 10/17/00 6:19 PM, Peter Tilbrook at [EMAIL PROTECTED] wrote:
>
> > Or even: 
>
> How about detecting that it's a search engine spider making the request. I
> want to develop a script that identifies which search engine is requesting
> the page and then give it a page optimized for that search engine and give
> the browser the regular page.
>
> Does http.user_agent identify robots? And if so what is the string that is
> used in http.user_agent?
>
> --
>
> Sebastian
>
> --
--
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send
a message with 'unsubscribe' in the body to
[EMAIL PROTECTED]


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



Re: Awards

2000-10-17 Thread David Shadovitz

I nominate myself because...uh...um...never mind.
-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/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
with 'unsubscribe' in the body to [EMAIL PROTECTED]



Detecting search engine robots

2000-10-17 Thread sebastian palmigiani

on 10/17/00 6:19 PM, Peter Tilbrook at [EMAIL PROTECTED] wrote:

> Or even: 

How about detecting that it's a search engine spider making the request. I
want to develop a script that identifies which search engine is requesting
the page and then give it a page optimized for that search engine and give
the browser the regular page.

Does http.user_agent identify robots? And if so what is the string that is
used in http.user_agent?

--

Sebastian


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



RE: locking with IsDefined

2000-10-17 Thread Ed Toon

> I may be wrong, but my understanding is that reads do not need a lock,
> only writes.

You would be wrong...



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



Re: (Admin) Ads

2000-10-17 Thread Michael Dinowitz

One of the things I'm going to add to this is a small CF program to trim out
the ad and the admin info at bottom when its part of a reply. Should save a
TON of space.


>
> From: "Michael Dinowitz" <[EMAIL PROTECTED]>
>
> > I plan to start adding a three line ad at the bottom of the CF-Talk
posts
> > (above the unsubscribe/archive info). The money for this will go to
support
> > of the various lists, expanding the abilities of them (much better
> > archives), and more. Any feedback, suggestions, or complaints should be
sent
> > to me off list.
> > Just as a side note, the ads will be limited to tech and CF using
companies
> > only and your user information (email, etc.) will never be given out.
> >
>
> I've seen this sort of thing turn into .sig wars ... hope people will be
> resaonable ( AND TRIM THEIR RESPONSES!! ).
>
> Pan
>
>
> --
--
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send
a message with 'unsubscribe' in the body to
[EMAIL PROTECTED]
>


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



Re: (Admin) Ads

2000-10-17 Thread pan


From: "Michael Dinowitz" <[EMAIL PROTECTED]>

> I plan to start adding a three line ad at the bottom of the CF-Talk posts
> (above the unsubscribe/archive info). The money for this will go to support
> of the various lists, expanding the abilities of them (much better
> archives), and more. Any feedback, suggestions, or complaints should be sent
> to me off list.
> Just as a side note, the ads will be limited to tech and CF using companies
> only and your user information (email, etc.) will never be given out.
> 

I've seen this sort of thing turn into .sig wars ... hope people will be
resaonable ( AND TRIM THEIR RESPONSES!! ).

Pan



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



RE: Multiple row form data submission to database?

2000-10-17 Thread Adrian Cesana

Here is some code you can hack up that should do the trick, I slimmed it
down to make it easier to digest...







Line No
Q P/N
C P/N



























  
















INSERT INTO blah
(
"line",
"item",
"part"
)
 VALUES
(
'#SingleLineNo#',
'#SingleQPart#',
'#SingleCPart#'
)









Notes:
Add tests as needed, perhaps to require at least one line of input.
In this process I use LINENO to check if there is another record to insert,
so there
could be a problem if the user skips a line and continues to input, you can
add a test
to the initial loop to handle this.

I also add some tests within the second loop that check if the record exist
or whatever, this may
not be a problem easily added with some CFIF stuff

Hope it helps, should be a good start or at least give you some idea's


-Adrian



> -Original Message-
> From: Dharmesh Goel [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, October 17, 2000 1:19 PM
> To: CF-Talk
> Subject: Multiple row form data submission to database?
>
>
> Hello Everyone,
>
> I am trying to make a small data entry screen in ColdFusion.
> There are five
> columns in the table. Number of rows is dynamically generated
> with the first
> column automatically filled in. Others have to be filled in by a
> user. When
> the user submits the form, each row is inserted in a database as
> a new row.
>
> I have not done a form submission until now that updates multiple rows. I
> hope you can help me with the basic logic involved in this. My guess would
> be to insert the data from the form into a 2 dimensional Array
> and then loop
> over the array while inserting into the database. How do I insert
> it into an
> array and proceed from there?
>


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



RE: Awards

2000-10-17 Thread Patrick H. Mullins

I'd like to nominate David Shadovitz.   As a new CF programmer I
had a ton of questions.  David patiently answered each and every
one.  I never would have been able to finish my DVD site without
his help.

Patrick Mullins

> > -Original Message-
> > From: Adam Phillip Churvis [mailto:[EMAIL PROTECTED]]
> > Sent: Tuesday, October 17, 2000 3:45 PM
> > To: CF-Talk
> > Subject:  Awards
> >
> >
> > FusionFolks,
> >
> > I would like to propose an annual award for the most helpful
> people in the
> > CF community.  The name I picked for this award is ,
> because a
> > "Mensch" is a really caring person who treats others with respect, who
> > performs acts of kindness, and who tries to make the community a
> > better place.
> >
> > The people I would like to nominate are:
> >
> > Michael Dinowitz
> > Dave Watts
> > Cameron Childress
> >
> > I see some really outstanding advice and help coming from these
> folks (any
> > many others, to be sure), so I think we ought to "brand" them
> accordingly!
> >
> > There are so many who help, and my list contains only those who
> stick out
> > in my mind most prominently, so I hope others will add their
> > nominations, too.
> >
> > What do you think, folks?
> >
> > Respectfully,
> >
> > Adam Phillip Churvis
> > President
> > Productivity Enhancement, Inc.
> >
> > **
> > **
> > *  PRODUCTIVITY ENHANCEMENT, INC.
> >  *
> > *
> >  *
> > *Publishers of the CommerceBlocks line of modular development
> > tools*
> > *  for ColdFusion
> >  *
> > *
> >  *
> > * Website: http://www.commerceblocks.com   E-mail:
> > [EMAIL PROTECTED] *
> > * Phone:   770-446-8866Fax:770-242-0410
> >  *
> > *
> >  *
> > **
> > **
> >
> > --
> > --
> > Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> > Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
> > or send a message with 'unsubscribe' in the body to
> > [EMAIL PROTECTED]
>
> --
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
> or send a message with 'unsubscribe' in the body to
> [EMAIL PROTECTED]



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


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



OT:Netscape 6

2000-10-17 Thread Jaime Garza

This is a multi-part message in MIME format.

--=_NextPart_000_0032_01C0385E.92C61430
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 7bit

I developed a commercial product that so far only supported IE4 and above,
for the sake of development speed and our customers needs.  No Netscape.  I
try my system every now and then in Netscape just to check how broken I am
in case I need a Netscape version.  I got Netscape 6 preview version 3
today, and It almost ran all the way thru!  I am amazed...  Even my IFRAMES
work to a point!

So all of you people trying to decode CGI.HTTP_USER_AGENT, check it out



"If A equals success, then the formula is: A=X+Y+Z. X is work. Y is play. Z
is keep your mouth shut. " Albert Einstein

P.S.

I need way more Y and lots of Z





--=_NextPart_000_0032_01C0385E.92C61430
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable






I =
developed a=20
commercial product that so far only supported IE4 and above, for the =
sake of=20
development speed and our customers needs.  No Netscape.  I =
try my=20
system every now and then in Netscape just to check how broken I am in =
case I=20
need a Netscape version.  I got Netscape 6 preview version 3 today, =
and It=20
almost ran all the way thru!  I am amazed...  Even my IFRAMES =
work to=20
a point!
 
So all =
of you people=20
trying to decode CGI.HTTP_USER_AGENT, check it out
 

 
"If A equals success, then the formula is: =
A=3DX+Y+Z. X is work.=20
Y is play. Z is keep your mouth shut. " Albert=20
Einstein
 
P.S.
 
I need =
way more Y=20
and lots of Z
 
 

--=_NextPart_000_0032_01C0385E.92C61430--


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



RE: Awards

2000-10-17 Thread Chapman, Katrina

Are we going to vote or is this one of those things that every nominee is a
winner?  And if so what do we get? :) (j/k)

I'd like to nominate Fred Sanders.  Not sure if he's on this list but he's
helped me several times before and I see him responding to lots of posts.

--K

P.S. I'm cross posting this to community as that's where it really belongs.

-Original Message-
From: Warrick, Mark [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, October 17, 2000 5:14 PM
To: CF-Talk
Subject: RE:  Awards


What the heck.  I'll nominate her as well.  She's a sweetie.

---mark

--
Mark Warrick
Phone: (714) 547-5386
Efax.com Fax: (801) 730-7289
Personal Email: [EMAIL PROTECTED]
Personal URL: http://www.warrick.net 
Business Email: [EMAIL PROTECTED]
Business URL: http://www.fusioneers.com
ICQ: 346566
--


> -Original Message-
> From: Jaime Garza [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, October 17, 2000 4:27 PM
> To: CF-Talk
> Subject: RE:  Awards
> 
> 
> I'll nominate Katrina Chapman.  Always there, specially for the novice.
> 
> 
> 
> > -Original Message-
> > From: Adam Phillip Churvis [mailto:[EMAIL PROTECTED]]
> > Sent: Tuesday, October 17, 2000 3:45 PM
> > To: CF-Talk
> > Subject:  Awards
> >
> >
> > FusionFolks,
> >
> > I would like to propose an annual award for the most helpful 
> people in the
> > CF community.  The name I picked for this award is , 
> because a
> > "Mensch" is a really caring person who treats others with respect, who
> > performs acts of kindness, and who tries to make the community a
> > better place.
> >
> > The people I would like to nominate are:
> >
> > Michael Dinowitz
> > Dave Watts
> > Cameron Childress
> >
> > I see some really outstanding advice and help coming from these 
> folks (any
> > many others, to be sure), so I think we ought to "brand" them 
> accordingly!
> >
> > There are so many who help, and my list contains only those who 
> stick out
> > in my mind most prominently, so I hope others will add their
> > nominations, too.
> >
> > What do you think, folks?
> >
> > Respectfully,
> >
> > Adam Phillip Churvis
> > President
> > Productivity Enhancement, Inc.
> >
> > **
> > **
> > *  PRODUCTIVITY ENHANCEMENT, INC.
> >  *
> > *
> >  *
> > *Publishers of the CommerceBlocks line of modular development
> > tools*
> > *  for ColdFusion
> >  *
> > *
> >  *
> > * Website: http://www.commerceblocks.com   E-mail:
> > [EMAIL PROTECTED] *
> > * Phone:   770-446-8866Fax:770-242-0410
> >  *
> > *
> >  *
> > **
> > **
> >
> > --
> > --
> > Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> > Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
> > or send a message with 'unsubscribe' in the body to
> > [EMAIL PROTECTED]
> 
> --
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists 
> or send a message with 'unsubscribe' in the body to 
> [EMAIL PROTECTED]



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

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



RE: Awards

2000-10-17 Thread Warrick, Mark

What the heck.  I'll nominate her as well.  She's a sweetie.

---mark

--
Mark Warrick
Phone: (714) 547-5386
Efax.com Fax: (801) 730-7289
Personal Email: [EMAIL PROTECTED]
Personal URL: http://www.warrick.net 
Business Email: [EMAIL PROTECTED]
Business URL: http://www.fusioneers.com
ICQ: 346566
--


> -Original Message-
> From: Jaime Garza [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, October 17, 2000 4:27 PM
> To: CF-Talk
> Subject: RE:  Awards
> 
> 
> I'll nominate Katrina Chapman.  Always there, specially for the novice.
> 
> 
> 
> > -Original Message-
> > From: Adam Phillip Churvis [mailto:[EMAIL PROTECTED]]
> > Sent: Tuesday, October 17, 2000 3:45 PM
> > To: CF-Talk
> > Subject:  Awards
> >
> >
> > FusionFolks,
> >
> > I would like to propose an annual award for the most helpful 
> people in the
> > CF community.  The name I picked for this award is , 
> because a
> > "Mensch" is a really caring person who treats others with respect, who
> > performs acts of kindness, and who tries to make the community a
> > better place.
> >
> > The people I would like to nominate are:
> >
> > Michael Dinowitz
> > Dave Watts
> > Cameron Childress
> >
> > I see some really outstanding advice and help coming from these 
> folks (any
> > many others, to be sure), so I think we ought to "brand" them 
> accordingly!
> >
> > There are so many who help, and my list contains only those who 
> stick out
> > in my mind most prominently, so I hope others will add their
> > nominations, too.
> >
> > What do you think, folks?
> >
> > Respectfully,
> >
> > Adam Phillip Churvis
> > President
> > Productivity Enhancement, Inc.
> >
> > **
> > **
> > *  PRODUCTIVITY ENHANCEMENT, INC.
> >  *
> > *
> >  *
> > *Publishers of the CommerceBlocks line of modular development
> > tools*
> > *  for ColdFusion
> >  *
> > *
> >  *
> > * Website: http://www.commerceblocks.com   E-mail:
> > [EMAIL PROTECTED] *
> > * Phone:   770-446-8866Fax:770-242-0410
> >  *
> > *
> >  *
> > **
> > **
> >
> > --
> > --
> > Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> > Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
> > or send a message with 'unsubscribe' in the body to
> > [EMAIL PROTECTED]
> 
> --
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists 
> or send a message with 'unsubscribe' in the body to 
> [EMAIL PROTECTED]


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



RE: Awards

2000-10-17 Thread Warrick, Mark

Can we nominate ourselves?(kidding)

--
Mark Warrick
Phone: (714) 547-5386
Efax.com Fax: (801) 730-7289
Personal Email: [EMAIL PROTECTED]
Personal URL: http://www.warrick.net 
Business Email: [EMAIL PROTECTED]
Business URL: http://www.fusioneers.com
ICQ: 346566
--


> -Original Message-
> From: Adam Phillip Churvis [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, October 17, 2000 3:45 PM
> To: CF-Talk
> Subject:  Awards
> 
> 
> FusionFolks,
> 
> I would like to propose an annual award for the most helpful people in the
> CF community.  The name I picked for this award is , because a
> "Mensch" is a really caring person who treats others with respect, who
> performs acts of kindness, and who tries to make the community a 
> better place.
> 
> The people I would like to nominate are:
> 
> Michael Dinowitz
> Dave Watts
> Cameron Childress
> 
> I see some really outstanding advice and help coming from these folks (any
> many others, to be sure), so I think we ought to "brand" them accordingly!
> 
> There are so many who help, and my list contains only those who stick out
> in my mind most prominently, so I hope others will add their 
> nominations, too.
> 
> What do you think, folks?
> 
> Respectfully,
> 
> Adam Phillip Churvis
> President
> Productivity Enhancement, Inc.
> 
> **
> **
> *  PRODUCTIVITY ENHANCEMENT, INC. 
>  *
> * 
>  *
> *Publishers of the CommerceBlocks line of modular development 
> tools*
> *  for ColdFusion 
>  *
> * 
>  *
> * Website: http://www.commerceblocks.com   E-mail: 
> [EMAIL PROTECTED] *
> * Phone:   770-446-8866Fax:770-242-0410   
>  *
> * 
>  *
> **
> **
> 
> --
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists 
> or send a message with 'unsubscribe' in the body to 
> [EMAIL PROTECTED]


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



RE: Storing passwords in database as one way hash

2000-10-17 Thread BORKMAN Lee

Hi all,

You can do better than hashing on the server side.  I use a JavaScript MD5
hash on the client-side.  This prevents the password being sent over the
network in clear, and alleviates the need for SSL in some circumstances.

Works like a dream.

Lee (Bjork) Borkman
http://bjork.net ColdFusion Tags by Bjork





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

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



RE: CFLDAP

2000-10-17 Thread Warrick, Mark

I'm not sure about the 4.5 version, but I recall in 4.01 dealing with LDAP servers was 
a bitch.  For one thing, you cannot query the LDAP server for all the available 
attributes - you have to know them.  This might be your current problem.

---mark

--
Mark Warrick
Phone: (714) 547-5386
Efax.com Fax: (801) 730-7289
Personal Email: [EMAIL PROTECTED]
Personal URL: http://www.warrick.net 
Business Email: [EMAIL PROTECTED]
Business URL: http://www.fusioneers.com
ICQ: 346566
--


> -Original Message-
> From: Keith Wiley [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, October 17, 2000 2:40 PM
> To: CF-Talk
> Subject: CFLDAP
> 
> 
> I'm trying to pull all of the attributes from our ldap server at once and
> output to a file.  It seems that there is a limit to the amount of rows
> returned at once, do you know if this is the case, and if so what is the
> limit?
> --
> 
> 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/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebarRsts or send a message with 
'unsubscribe' in the body to [EMAIL PROTECTED]



RE: Include Perl script?

2000-10-17 Thread Warrick, Mark

Try CFHTTP and include the results into your CFM page.

--
Mark Warrick
Phone: (714) 547-5386
Efax.com Fax: (801) 730-7289
Personal Email: [EMAIL PROTECTED]
Personal URL: http://www.warrick.net 
Business Email: [EMAIL PROTECTED]
Business URL: http://www.fusioneers.com
ICQ: 346566
--


> -Original Message-
> From: Ethan Rosch [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, October 17, 2000 2:03 PM
> To: CF-Talk
> Subject: Include Perl script?
> 
> 
> I am trying to include a poll.cgi perl script into my .cfm page, but I am
> having trouble getting the .cgi to parse, read the templates, and spit the
> page back to me as an include...
> 
> any ideas?
> 
> thanks,
> 
> ethan
> 
> --
> 
> 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/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebarRsts or send a message with 
'unsubscribe' in the body to [EMAIL PROTECTED]



RE: Multiple row form data submission to database?

2000-10-17 Thread Warrick, Mark

This is a somewhat complex process involving loops and the evaluate function.  I'll 
try to be specific and brief at the same time.

The concept you are describing is exactly the same concept as updating the contents of 
a shopping cart.  The only difference is that you've got more fields.  So as a 
supplement to my comments, try to find samples of how shopping carts work in one of 
the many ColdFusion tutorial sites.

I'm not going to give you all the code because it simply takes too long to build, and 
well, you know - paying clients come first.  But here's the concept:

In the form which people are updating data, you need to create at least one dynamic 
form field name per row of data.  This is your key which you'll use in the processing 
script.

So let's just say your key is "somefieldname".

You create numbers using CFSET, incrementing the number with each row, and appending 
the number you create to the key fieldname: eg. somefieldname#rowcount#.

You also need a total rows count.  Create a number using cfset, increment it with each 
row, set a final variable with the final number, and pass the value through a hidden 
field to the processing script.

eg. 

Now, in your processing script, you're going to create a loop to evaluate the form 
field names from the previous page.

To evaluate dynamic form field names, you can use something like the following:






Insert whatever logic you want here.  You'll have a key for the particular row 
of data you need to process.



Good luck.

---mark

--
Mark Warrick
Phone: (714) 547-5386
Efax.com Fax: (801) 730-7289
Personal Email: [EMAIL PROTECTED]
Personal URL: http://www.warrick.net 
Business Email: [EMAIL PROTECTED]
Business URL: http://www.fusioneers.com
ICQ: 346566
--


> -Original Message-
> From: Dharmesh Goel [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, October 17, 2000 1:19 PM
> To: CF-Talk
> Subject: Multiple row form data submission to database?
> 
> 
> Hello Everyone,
> 
> I am trying to make a small data entry screen in ColdFusion. 
> There are five
> columns in the table. Number of rows is dynamically generated 
> with the first
> column automatically filled in. Others have to be filled in by a 
> user. When
> the user submits the form, each row is inserted in a database as 
> a new row.
> 
> I have not done a form submission until now that updates multiple rows. I
> hope you can help me with the basic logic involved in this. My guess would
> be to insert the data from the form into a 2 dimensional Array 
> and then loop
> over the array while inserting into the database. How do I insert 
> it into an
> array and proceed from there?
> 
> CH1   CH2 CH3 CH4 CH5
> --
> --
> -
> Field1Field2  Field3  Field4  
> Field5
> Field1Field2  Field3  Field4  
> Field5
> Field1Field2  Field3  Field4  
> Field5
> Field1Field2  Field3  Field4  
> Field5
> " "   "   "   "
> " "   "   "   "
> 
> Field1 is auto populated with a query result.
> 
> Thank you,
> 
> Dharmesh Goel
> Programmer Analyst
> IT Dept. - Discount Car & Truck Rentals
> 416-744-0123 x290
> 
> --
> 
> 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/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebarRsts or send a message with 
'unsubscribe' in the body to [EMAIL PROTECTED]



Re: Preventing Simultaneous Logins

2000-10-17 Thread Russell Jones

Oooo, good timing! I could use an answer to that one myself right now :)

-Russ

> From: "Peter Alexandrou" <[EMAIL PROTECTED]>
> Reply-To: [EMAIL PROTECTED]
> Date: Wed, 18 Oct 2000 09:37:14 +1000
> To: CF-Talk <[EMAIL PROTECTED]>
> Subject: Preventing Simultaneous Logins
> 
> Hi guys,
> 
> I'm new to the mailing list and have a quick question for y'all.
> 
> What is the best way to prevent a userID being logged in twice i.e. someone
> logs in with "login1" and then another user logs in with the same ID.
> 
> Thanks,
> 
> Peter Alexandrou
> Technical Leader
> 
> tapestry communications : www.tapestry.net.au
> phone : 0411 445 111
> e-mail : [EMAIL PROTECTED]
> 
> --
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a
> message with 'unsubscribe' in the body to [EMAIL PROTECTED]
> 


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



RE: Awards

2000-10-17 Thread Jaime Garza

I'll nominate Katrina Chapman.  Always there, specially for the novice.



> -Original Message-
> From: Adam Phillip Churvis [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, October 17, 2000 3:45 PM
> To: CF-Talk
> Subject:  Awards
>
>
> FusionFolks,
>
> I would like to propose an annual award for the most helpful people in the
> CF community.  The name I picked for this award is , because a
> "Mensch" is a really caring person who treats others with respect, who
> performs acts of kindness, and who tries to make the community a
> better place.
>
> The people I would like to nominate are:
>
> Michael Dinowitz
> Dave Watts
> Cameron Childress
>
> I see some really outstanding advice and help coming from these folks (any
> many others, to be sure), so I think we ought to "brand" them accordingly!
>
> There are so many who help, and my list contains only those who stick out
> in my mind most prominently, so I hope others will add their
> nominations, too.
>
> What do you think, folks?
>
> Respectfully,
>
> Adam Phillip Churvis
> President
> Productivity Enhancement, Inc.
>
> **
> **
> *  PRODUCTIVITY ENHANCEMENT, INC.
>  *
> *
>  *
> *Publishers of the CommerceBlocks line of modular development
> tools*
> *  for ColdFusion
>  *
> *
>  *
> * Website: http://www.commerceblocks.com   E-mail:
> [EMAIL PROTECTED] *
> * Phone:   770-446-8866Fax:770-242-0410
>  *
> *
>  *
> **
> **
>
> --
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
> or send a message with 'unsubscribe' in the body to
> [EMAIL PROTECTED]


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



RE: Storing passwords in database as one way hash

2000-10-17 Thread Jon Tillman

Every time a particular string is encrypted, the hash will be the same
therefore, if you have the hash for 'password' stored, and the user types
'password' for their password, i can compare the resultant hash against the one
in the database, and if they match, then the user has typed the proper password.

On Tue, 17 Oct 2000, Robert Everland III spake thusly:
> But if it's a one way hash, why do you need to store it, you can't decrypt
> it. What is the purpose?
> 
> 
> Bob Everland
> 
> -Original Message-
> From: Jon Tillman [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, October 17, 2000 4:39 PM
> To: CF-Talk
> Subject: RE: Storing passwords in database as one way hash
> 
> 
> Who ever said it is going to be used one time?
> I need to securely store the passwords for several dozen competing users
> 
> On Tue, 17 Oct 2000, Robert Everland spake thusly:
> > Why even bother storing a password in a one way hash if it's only gonna be
> > used one time?
> >
> > Robert Everland III
> > Web Developer
> > Dixon Ticonderoga
> >
> >
> > -Original Message-
> > From: Cameron Childress [mailto:[EMAIL PROTECTED]]
> > Sent: Tuesday, October 17, 2000 2:32 PM
> > To: CF-Talk
> > Subject: RE: Storing passwords in database as one way hash
> >
> >
> > > anybody know of anything that does such?
> > > I am looking for pretty much the same functionality as a standard
> > > *NIX login
> >
> > Look up the function Hash().  I think it was introduced in CF 4.5.
> > Actually, I just looks at the online cfdocs and don't see it in there, but
> > it is... maybe introduced in 4.5.1?
> >
> > There's also a CFX_HASH in the tag gallery that give many more options of
> > hash types.
> >
> > -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.
> > --
> 
> > 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]
>  JAPH
> ***
> 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.
> 
> --
> 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.
-- 
#include 
***
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
 JAPH
***
Be alert, the world needs more lerts
***


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



RE: Browser Detection

2000-10-17 Thread Peter Tilbrook

Or even: 


-Original Message-
From: Warrick, Mark [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, 18 October 2000 2:03
To: CF-Talk
Subject: RE: Browser Detection




--
Mark Warrick
Phone: (714) 547-5386
Efax.com Fax: (801) 730-7289
Personal Email: [EMAIL PROTECTED]
Personal URL: http://www.warrick.net 
Business Email: [EMAIL PROTECTED]
Business URL: http://www.fusioneers.com
ICQ: 346566
--


> -Original Message-
> From: Gavin Myers [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, October 17, 2000 8:48 AM
> To: CF-Talk
> Subject: Browser Detection
> 
> 
> Now i feel dumb for recently deleating all of that past browser detection
> talk
> 
> this is all i want to do:
> verify that whomever is using IE 5.0 or greater
> 
> so if I use
> 
> CGI.http_user_agent Mozilla/4.0 (compatible; MSIE 5.0; Windows NT; DigExt)
> 
> How can I just look for the MSIE 5.0, or is there something else 
> I should be
> looking for?
> --
> 
> 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/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
with 'unsubscribe' in the body to [EMAIL PROTECTED]



RE: Storing passwords in database as one way hash

2000-10-17 Thread Steve Bernard

You should store passwords in an encrypted form for several reasons:

1) Security. Only the user knows the plain-text passphrase. Not even Admin
can decipher it, short of a brute force
   attack.

2) Security. If your db is compromised the passwords are still protected.
Trying to log in using the hash will not
   work.

3) Security. Hashes typically have a fixed length. This not only helps by
allowing the dba to know exactly how big
   the field is going to be but, also, obfuscates the password length. My
password may only be 6 characters but,
   MD5 will create a 40 character hash.

In short, hashes are used for security; yours, your employer's, and your
client's.

Steve

-Original Message-
From: Robert Everland III [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, October 17, 2000 5:55 PM
To: CF-Talk
Subject: RE: Storing passwords in database as one way hash


But if it's a one way hash, why do you need to store it, you can't decrypt
it. What is the purpose?


Bob Everland


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



RE: Storing passwords in database as one way hash

2000-10-17 Thread Chapman, Katrina

The purpose is to keep people from peeking in the db and getting pw's they
shouldn't have.  

Hash() works great.  We used it on a project that I worked on before.
Unfortunately you have to have CF Server 4.5.1 to use it the way that I
believe it was intended.

--K

-Original Message-
From: Robert Everland III [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, October 17, 2000 2:55 PM
To: CF-Talk
Subject: RE: Storing passwords in database as one way hash


But if it's a one way hash, why do you need to store it, you can't decrypt
it. What is the purpose?


Bob Everland

-Original Message-
From: Jon Tillman [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, October 17, 2000 4:39 PM
To: CF-Talk
Subject: RE: Storing passwords in database as one way hash


Who ever said it is going to be used one time?
I need to securely store the passwords for several dozen competing users

On Tue, 17 Oct 2000, Robert Everland spake thusly:
> Why even bother storing a password in a one way hash if it's only gonna be
> used one time?
>
> Robert Everland III
> Web Developer
> Dixon Ticonderoga
>
>
> -Original Message-
> From: Cameron Childress [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, October 17, 2000 2:32 PM
> To: CF-Talk
> Subject: RE: Storing passwords in database as one way hash
>
>
> > anybody know of anything that does such?
> > I am looking for pretty much the same functionality as a standard
> > *NIX login
>
> Look up the function Hash().  I think it was introduced in CF 4.5.
> Actually, I just looks at the online cfdocs and don't see it in there, but
> it is... maybe introduced in 4.5.1?
>
> There's also a CFX_HASH in the tag gallery that give many more options of
> hash types.
>
> -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.
> --

> 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]
 JAPH
***
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.


--
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/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
with 'unsubscribe' in the body to [EMAIL PROTECTED]



RE: locking with IsDefined

2000-10-17 Thread Patricia Lee

Yes.  Because in order to check to see if said session variable isdefined,
CF must attempt a read of the variable.  Hence, a READONLY lock is required.

-Original Message-
From: sebastian palmigiani [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, October 17, 2000 5:45 PM
To: CF-Talk
Subject: locking with IsDefined


When testing for the existence of a session variable such as:

IsDefined("Session.Login")

do you need to use a  around it?

-
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.

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



RE: Storing passwords in database as one way hash

2000-10-17 Thread Norman Elton

Bob-

You store the password hashed. You're right, you can't decrypt it. When
someone attempts to login to the system, you hash their attempted password.
If that matches the hashed password in the database, then they're in. If
not, whatever they typed doesn't match the "dehashed" value in the database.

This allows you to authenticate users, but guarantee that nobody can "read"
their password.

Norman Elton
Information Technology
College of William & Mary

-Original Message-
From: Robert Everland III [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, October 17, 2000 5:55 PM
To: CF-Talk
Subject: RE: Storing passwords in database as one way hash


But if it's a one way hash, why do you need to store it, you can't decrypt
it. What is the purpose?


Bob Everland

-Original Message-
From: Jon Tillman [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, October 17, 2000 4:39 PM
To: CF-Talk
Subject: RE: Storing passwords in database as one way hash


Who ever said it is going to be used one time?
I need to securely store the passwords for several dozen competing users

On Tue, 17 Oct 2000, Robert Everland spake thusly:
> Why even bother storing a password in a one way hash if it's only gonna be
> used one time?
>
> Robert Everland III
> Web Developer
> Dixon Ticonderoga
>
>
> -Original Message-
> From: Cameron Childress [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, October 17, 2000 2:32 PM
> To: CF-Talk
> Subject: RE: Storing passwords in database as one way hash
>
>
> > anybody know of anything that does such?
> > I am looking for pretty much the same functionality as a standard
> > *NIX login
>
> Look up the function Hash().  I think it was introduced in CF 4.5.
> Actually, I just looks at the online cfdocs and don't see it in there, but
> it is... maybe introduced in 4.5.1?
>
> There's also a CFX_HASH in the tag gallery that give many more options of
> hash types.
>
> -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.
> --

> 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]
 JAPH
***
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.


--
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/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
with 'unsubscribe' in the body to [EMAIL PROTECTED]



Awards

2000-10-17 Thread Adam Phillip Churvis

FusionFolks,

I would like to propose an annual award for the most helpful people in the
CF community.  The name I picked for this award is , because a
"Mensch" is a really caring person who treats others with respect, who
performs acts of kindness, and who tries to make the community a better place.

The people I would like to nominate are:

Michael Dinowitz
Dave Watts
Cameron Childress

I see some really outstanding advice and help coming from these folks (any
many others, to be sure), so I think we ought to "brand" them accordingly!

There are so many who help, and my list contains only those who stick out
in my mind most prominently, so I hope others will add their nominations, too.

What do you think, folks?

Respectfully,

Adam Phillip Churvis
President
Productivity Enhancement, Inc.


*  PRODUCTIVITY ENHANCEMENT, INC.  *
*  *
*Publishers of the CommerceBlocks line of modular development tools*
*  for ColdFusion  *
*  *
* Website: http://www.commerceblocks.com   E-mail: [EMAIL PROTECTED] *
* Phone:   770-446-8866Fax:770-242-0410*
*  *



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



RE: locking with IsDefined

2000-10-17 Thread John McKown

I may be wrong, but my understanding is that reads do not need a lock,
only writes.

John McKown, VP Business Services
Delaware.Net, Inc.
30 Old Rudnick Lane, Suite 200 Dover, DE 19901
email: [EMAIL PROTECTED]
phone: 302-736-5515
fax: 302-736-5945
icq: 1495432



> -Original Message-
> From: sebastian palmigiani [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, October 17, 2000 5:45 PM
> To: CF-Talk
> Subject: locking with IsDefined
>
>
> When testing for the existence of a session variable such as:
>
> IsDefined("Session.Login")
>
> do you need to use a  around it?
>
> -
> 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.


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



RE: Storing passwords in database as one way hash

2000-10-17 Thread Dave Watts

> But if it's a one way hash, why do you need to store it, you 
> can't decrypt it. What is the purpose?

The purpose of using a one-way hash is to allow password comparisons without
actually sending the password itself over the network. Whenever you hash a
specific password, you get the same hash result. So, if I hash my password,
then send you the hash, and you store it, you can later compare it to
another hash of the same password. If they match, the password is obviously
the same.

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/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
with 'unsubscribe' in the body to [EMAIL PROTECTED]



Preventing Simultaneous Logins

2000-10-17 Thread Peter Alexandrou

Hi guys,

I'm new to the mailing list and have a quick question for y'all.

What is the best way to prevent a userID being logged in twice i.e. someone
logs in with "login1" and then another user logs in with the same ID.

Thanks,

Peter Alexandrou
Technical Leader

tapestry communications : www.tapestry.net.au
phone : 0411 445 111
e-mail : [EMAIL PROTECTED]


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



RE: locking with IsDefined

2000-10-17 Thread Dave Watts

> When testing for the existence of a session variable such as:
> 
> IsDefined("Session.Login")
> 
> do you need to use a  around it?

Yes. It's a read. It needs to be locked.

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/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
with 'unsubscribe' in the body to [EMAIL PROTECTED]



Re: locking with IsDefined

2000-10-17 Thread Michael Dinowitz

Yes. It doesn't have to be exclusive though.


> When testing for the existence of a session variable such as:
>
> IsDefined("Session.Login")
>
> do you need to use a  around it?
>
> -
> 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.
>


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



Re: win 2000/sql with cf 4.5 PROBLEMS

2000-10-17 Thread Marius Milosav

Check to see if your ODBC connection is setup to connect to your database.
By default when you create a new ODBC datasource it connects the master
database. Probably that is the reason you are seeing the system tables.

Marius Milosav
www.scorpiosoft.com
Virtual Help Desk Demo (VHD)
www.scorpiosoft.com/vhd/login.cfm

- Original Message -
From: "andrew kopelman" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, October 17, 2000 3:57 PM
Subject: win 2000/sql with cf 4.5 PROBLEMS


> After upgrading to Windows 2000, I get this interesting situation with SQL
> Server (or ODBC): any table that i create, isn't 'seen'. I get the error:
> Invalid object name 'onetable'. ('Onetable' being the single table I
> created.) If I query one of this same sqlserver database system tables,
like
> sysusers, it runs the query without complaint.  Therefore, my
'application'
> is connecting with the database, the databases native tables are seen, any
> new tables are not.
>
> Any ideas? Anybody else having other troubles with SQL on Windows 2000?
>
> _
> 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.

--
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: File replication packages

2000-10-17 Thread Dirk De Bock

did you try http://www.webagain.com/

also google gives 8 valid links in the first 10 links it returns :-)

the company website is at www.lockstep.com

but sorry for not providing a direct link in the first mail

- Original Message - 
From: "Paul's Mail" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, October 17, 2000 11:33 PM
Subject: RE: File replication packages


> Where can I find the WebAgain web site? My search turned up nothing.

--
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: Thanks was RE: returning top 10

2000-10-17 Thread Jim Watkins

Actually I am pulling info from Oracle using a cf pie tag and trying to just
pull top ten populated counties and group the rest into an "Other" category
http://www.ngtcollege.org/bannercfm/graphs/countypie.cfm

-Original Message-
From: Hong [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, October 17, 2000 2:15 PM
To: CF-Talk
Subject: Re: Thanks was RE: returning top 10


sounds familiar? are you doing your database class homework or
something??

maybe you can use:
SELECT blah...
FROM   blah...
WHERE  ... NOT IN ( query_select_top_10_countries )

Hong

Jim Watkins wrote:
>
> So far so good.  Now I have written another script that selects everyone
NOT
> in the top ten counties (rows).  How can I do that without naming the
> counties?
>
> -Original Message-
> From: Jim Watkins [mailto:[EMAIL PROTECTED]]
> Sent: Monday, October 16, 2000 9:09 PM
> To: CF-Talk
> Subject: returning top 10
>
> How do you write a SQL statement that will return the top 10 of something
> (eg. top 10 salaries, top ten students by GPA, top ten populated counties,
> etc.)?
>
> Currently I have:
> and student_pop
>
in('Towns','Union','White','Fannin','Habersham','Stephens','Rabun','Franklin
> ','Bibb','Jones')
>
> --
--
> --
> 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.

_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.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.

--
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.



(Admin) Ads

2000-10-17 Thread Michael Dinowitz

I plan to start adding a three line ad at the bottom of the CF-Talk posts
(above the unsubscribe/archive info). The money for this will go to support
of the various lists, expanding the abilities of them (much better
archives), and more. Any feedback, suggestions, or complaints should be sent
to me off list.
Just as a side note, the ads will be limited to tech and CF using companies
only and your user information (email, etc.) will never be given out.

Michael Dinowitz
Publisher - The Fusion Authority (www.fusionauthority.com/alert)
ListManager - CF-Talk, CF-Jobs, Spectra-Talk, JRun-Talk, etc.
(www.houseoffusion.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.



HNC Software opinions?

2000-10-17 Thread Nat Papovich

All voiced opinions appreciated, preferably off-list, from both a client and
employee perspective.

TIA

Nat Papovich
ICQ 32676414
"If it was hard to write," 
says the Real Programmer,
"it should be hard to understand."

--
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: Storing passwords in database as one way hash

2000-10-17 Thread Robert Everland III

But if it's a one way hash, why do you need to store it, you can't decrypt
it. What is the purpose?


Bob Everland

-Original Message-
From: Jon Tillman [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, October 17, 2000 4:39 PM
To: CF-Talk
Subject: RE: Storing passwords in database as one way hash


Who ever said it is going to be used one time?
I need to securely store the passwords for several dozen competing users

On Tue, 17 Oct 2000, Robert Everland spake thusly:
> Why even bother storing a password in a one way hash if it's only gonna be
> used one time?
>
> Robert Everland III
> Web Developer
> Dixon Ticonderoga
>
>
> -Original Message-
> From: Cameron Childress [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, October 17, 2000 2:32 PM
> To: CF-Talk
> Subject: RE: Storing passwords in database as one way hash
>
>
> > anybody know of anything that does such?
> > I am looking for pretty much the same functionality as a standard
> > *NIX login
>
> Look up the function Hash().  I think it was introduced in CF 4.5.
> Actually, I just looks at the online cfdocs and don't see it in there, but
> it is... maybe introduced in 4.5.1?
>
> There's also a CFX_HASH in the tag gallery that give many more options of
> hash types.
>
> -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.
> --

> 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]
 JAPH
***
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.

--
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.



CFX_PRINTREPORT

2000-10-17 Thread Nardi, Gaston

Hi. I'm having a lot of trouble with this tag.
Anyone knows a good source of information regarding that tag ?
Help is much appreciated.

Greets,


Gastón 
from Argentina
--
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: What sort of RegEx does Cold Fusion Support?

2000-10-17 Thread Joseph Thompson

http://www.rixsoft.com/ColdFusion/CFX/PCRegEx/
Rick did a great job porting the "perl" regex to CF

--
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: CF-Talk V1 #64: Extra records in CSV file generation

2000-10-17 Thread Jack Chesley

I've always had problems with line feeds in the output for .CSV files.  If you delete 
all line feeds within the cfoutputs (except one to give you a new row), you may find 
your problem.  Your code then looks really ugly and is hard to debug or modify, so do 
this after everything works (and use the code formatter when modifying later)
- jack

--
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.



locking with IsDefined

2000-10-17 Thread sebastian palmigiani

When testing for the existence of a session variable such as:

IsDefined("Session.Login")

do you need to use a  around it?

-
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: Include Perl script?

2000-10-17 Thread Owens, Howard


Two thoughts ... 

One, instead of using .cfm pages ... try using .shtml and a regular server
side include ... call any CF templates into the .shtml page that you might
need via the same include style.  I call .cfm pages into .shtml quite
regularly.

Two, if you can't get your CGI working, there are a couple of nice custom
tag polls in the custom tag gallary on the Allaire site.

H.

=
Howard Owens
Web Producer
InsideVC.com
mailto:[EMAIL PROTECTED]
=

> -Original Message-
> From: Ethan Rosch [SMTP:[EMAIL PROTECTED]]
> Sent: Tuesday, October 17, 2000 2:03 PM
> To:   CF-Talk
> Subject:  Include Perl script?
> 
> I am trying to include a poll.cgi perl script into my .cfm page, but I am
> having trouble getting the .cgi to parse, read the templates, and spit the
> page back to me as an include...
> 
> any ideas?
> 
> thanks,
> 
> ethan
> 
> --
> 
> 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: Storing passwords in database as one way hash

2000-10-17 Thread Hong

one way hash does NOT mean use once.  it means once encrypted, there's
no way to decrypt it,
and we compare the hashed passwords instead of comparing the real
passwords.  passwords cannot be retrieved, they can only be replaced.

-- 
Hong Wu
Senior Web Developer
DoubleSpace


Robert Everland wrote:
> 
> Why even bother storing a password in a one way hash if it's only gonna be
> used one time?
> 
> Robert Everland III
> Web Developer
> Dixon Ticonderoga
> 
> -Original Message-
> From: Cameron Childress [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, October 17, 2000 2:32 PM
> To: CF-Talk
> Subject: RE: Storing passwords in database as one way hash
> 
> > anybody know of anything that does such?
> > I am looking for pretty much the same functionality as a standard
> > *NIX login
> 
> Look up the function Hash().  I think it was introduced in CF 4.5.
> Actually, I just looks at the online cfdocs and don't see it in there, but
> it is... maybe introduced in 4.5.1?
> 
> There's also a CFX_HASH in the tag gallery that give many more options of
> hash types.
> 
> -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.
> --
> 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.

__
Do You Yahoo!?
Talk to your friends online with Yahoo! Messenger.
http://im.yahoo.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: Include Perl script?

2000-10-17 Thread CF

CFHTTP could handle this.  There are plenty of recent post outlining
problems with CFHTTP, but I've had success using it to send data to a Perl
Script.

HTH,

Peter Janett

New Media One Web Services

WEB HOSTING FOR WEB DEVELOPERS

  -> Sun, IRIX, NT, Linux <-
PHP, MySQL, Perl, Cold Fusion,
MS SQL, ASP, SSI, SSL
http://www.newmediaone.net
[EMAIL PROTECTED]
  (303)828-9882

- Original Message -
From: Ethan Rosch <[EMAIL PROTECTED]>
To: CF-Talk <[EMAIL PROTECTED]>
Sent: Tuesday, October 17, 2000 3:02 PM
Subject: Include Perl script?


> I am trying to include a poll.cgi perl script into my .cfm page, but I am
> having trouble getting the .cgi to parse, read the templates, and spit the
> page back to me as an include...
>
> any ideas?
>
> thanks,
>
> ethan
>
> --

> 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: Include Perl script?

2000-10-17 Thread Pete Freitag

You can't call it with , you have to use CFHTTP, or CFEXEC to run
it.

__
Pete Freitag ([EMAIL PROTECTED])
CFDEV.COM / NETDesign Inc.
ColdFusion Developer Resources
http://www.cfdev.com/

-Original Message-
From: Ethan Rosch [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, October 17, 2000 5:03 PM
To: CF-Talk
Subject: Include Perl script?


I am trying to include a poll.cgi perl script into my .cfm page, but I am
having trouble getting the .cgi to parse, read the templates, and spit the
page back to me as an include...

any ideas?

thanks,

ethan


--
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: What sort of RegEx does Cold Fusion Support?

2000-10-17 Thread Michael Dinowitz

Perlish (I believe a Posix base). It does support a lot of 'standard' RegEx,
but some features (like backreferencing inside parenthesis) don't work.
Someone wrote a CFX for extended RegEx which looked very promising.

> Just a quick question as I prepare to write a tempalte that will
(hopefully)
> save me days of mindnumbing work:
> How well does ColdFuison support Regular Expressions?  Does it use a perl
or
> perl-ish model, strict POSIX standards, or some weird, homegrown  flavor?
> Basically I want to kow if I use a regular expression that works with, say
.
> . . grep, will it provide the desired functionality?
>
> Thanks,
>
> Chris Martin.
>
> --

> 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.



CFLDAP

2000-10-17 Thread Keith Wiley

I'm trying to pull all of the attributes from our ldap server at once and
output to a file.  It seems that there is a limit to the amount of rows
returned at once, do you know if this is the case, and if so what is the
limit?
--
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: What sort of RegEx does Cold Fusion Support?

2000-10-17 Thread Rick Osborne [Mojo]

Christopher S Martin asked:
> How well does ColdFuison support Regular Expressions?

Ah, the topic has come 'round again.  :)  This question gets asked about
once a month, so I guess it was time again.  :)  But, if no one asked it,
then I wouldn't have an excuse to plug my CFX tag.

Ahem-hem.


The built-in CF regexs are okay for mild to moderate use, but anyone who ise
used to Perl (or grep) is going to choke when they try to do some of the
stuff they are used to (escape sequences and non-greedy matches especially).
CF regexes also seem (to me) to be single-use oriented, which is to say that
I think there are too many hoops to jump through to perform repeated matches
and replaces on a string.  However, CF regexs tend to be prettier (which is
to say more readable) because they don't support most backslash escape
sequences, only the POSIX versions.  (That is, you cannot say '\W', you must
say '[:alnum:]', which is a loose interpretation at best.)  Once you get
used to them, CF regexes aren't so bad, but they definitely have some
limitations.



However, there is hope.  I just completed a CFX tag that uses the PCRE (Perl
Compatible RegEx) engine and uploaded it to the tag gallery not 2 weeks ago.
It will give you complete compatibility with Perl regexes, and quite often
superior performance.  It'll even do subexpressions (more efficiently than
CF) and Replace()-style functionality (with backreferences to
subexpressions).  It's free and even comes with source (under the GPL).  In
short: it's a free alternative to the built-in CF functionality that is more
functional, more flexible, and can even be faster if implemented correctly.


If you run into a regex that you simply cannot translate into a
CF-compatible state, snag a copy of the CFX and see if it works for you.[1]
If it does, email the author and let him know that he rocks.  Programmers
like that kind of thing.

-Rick

[1]
http://devex.allaire.com/developer/gallery/info.cfm?id=47AA9175-9AFE-11D4-AA
A700508B94F380&method=full

--
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: What sort of RegEx does Cold Fusion Support?

2000-10-17 Thread Steve Bernard

CF's native RegEx support comes from a library created by a third party who
is unknown to me. It conforms to POSIX in some things and not others,
supports some functionality but not others; to be short, it's frustrating.
There is a new custom tag, thank goodness, available through the Developer's
Exchange, CFX_PCRegEx, that supports Perl style RegEx's and is supposed to
be fully POSIX compliant, hallelujah.

http://devex.allaire.com/developer/gallery/info.cfm?ID=47AA9175-9AFE-11D4-AA
A700508B94F380&method=Full


Steve

-Original Message-
From: Christopher S Martin [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, October 17, 2000 4:32 PM
To: CF-Talk
Subject: What sort of RegEx does Cold Fusion Support?


Just a quick question as I prepare to write a tempalte that will (hopefully)
save me days of mindnumbing work:
How well does ColdFuison support Regular Expressions?  Does it use a perl or
perl-ish model, strict POSIX standards, or some weird, homegrown  flavor?
Basically I want to kow if I use a regular expression that works with, say .
. . grep, will it provide the desired functionality?

Thanks,

Chris Martin.


--
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: File replication packages

2000-10-17 Thread Paul's Mail

Where can I find the WebAgain web site? My search turned up nothing.


Paul Burgess

> -Original Message-
> From: Dirk De Bock [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, October 17, 2000 9:04 PM
> To: CF-Talk
> Subject: Re: File replication packages
>
>
> WebAgain seems to behave quite nicely at a few sites I manage. It can
> replicate both through netbios shares and ftp which gives it the
> flexibility
> to also replicate to remote sites.
>
> - Original Message -
> From: "Mark Johnson" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Tuesday, October 17, 2000 12:15 PM
> Subject: OT: File replication packages
>
>
> > Those of you using server farms and or loadbalancing.  How do
> you publish
> > your CF files to all your servers?  What software are you using to
> acomplish
> > this?  What should we aviod in implementing a file replication package.
> >
> > Mark Johnson
> > ---
> > Senior Cold Fusion Developer
> > Cardinal Communications
> >
> >
> --
> 
> > 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: Storing passwords in database as one way hash

2000-10-17 Thread Hong

Try CFX_HASH tag, it provides MD5, SHA-1, ... etc. algorithms.

-- 
Hong Wu
Senior Web Developer
DoubleSpace

Jon Tillman wrote:
> 
> anybody know of anything that does such?
> I am looking for pretty much the same functionality as a standard *NIX login
> 
> --
> ***
>  Jon Tillman
>  LINUX USER: #141163
>  ICQ: 4015362
>  http://www.eruditum.org
>  [EMAIL PROTECTED]
>  JAPH
> ***
> 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.

_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.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: CFQUERY into groups of 5 to keep WML deck small.

2000-10-17 Thread Heath Lord

Custom tags available for it... prevnext I think is the name.

-Original Message-
From: Laszlo Nadai [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, September 27, 2000 10:21 AM
To: CF-Talk
Subject: CFQUERY into groups of 5 to keep WML deck small.


I have to display records from a query in groups of five to keep the
deck size small.
Is there a known 'technique' to do this?
I want to let the user navigate to next 5 prev. 5 etc.
TIA,
laszlo

--
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.



No Subject

2000-10-17 Thread Ethan Rosch

This is a multi-part message in MIME format.

--=_NextPart_000_0101_01C0385D.7BE01190
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

I am trying to include a poll.cgi perl script into my .cfm page, but I =
am
having trouble getting the .cgi to parse, read the templates, and spit =
the
page back to me as an include...

any ideas?

thanks,

ethan





--=_NextPart_000_0101_01C0385D.7BE01190
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable








I am trying to include a poll.cgi perl =
script into=20
my .cfm page, but I amhaving trouble getting the .cgi to parse, read =
the=20
templates, and spit thepage back to me as an include...any=20
ideas?thanks,ethan
 
 
 

--=_NextPart_000_0101_01C0385D.7BE01190--

--
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: IP Sort

2000-10-17 Thread Michael Ross

store them in a seperate fieldsuse a list to seperate them

>>> [EMAIL PROTECTED] 10/13/00 12:52PM >>>
Look into CAST() or CONVERT() I think you can do this using the CAST()
function.

-Adrian

-Original Message-
From: Lee Surma [mailto:[EMAIL PROTECTED]] 

I have a bunch of IP numbers stored in a VarChar field in SQL7. When I sort
them, it sorts like text, as it should, with not great results. Is there a
quick and easy way to get the IP numbers to sort like a number?


--
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.



Include Perl script?

2000-10-17 Thread Ethan Rosch

I am trying to include a poll.cgi perl script into my .cfm page, but I am
having trouble getting the .cgi to parse, read the templates, and spit the
page back to me as an include...

any ideas?

thanks,

ethan

--
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: Storing passwords in database as one way hash

2000-10-17 Thread Dan O'Keefe

I believe the way it is used is when a user logs in, hash the password they
entered, retrieved the hashed password from the db, and compare them.

Dan

-Original Message-
From: Robert Everland [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, October 17, 2000 2:39 PM
To: CF-Talk
Subject: RE: Storing passwords in database as one way hash


Why even bother storing a password in a one way hash if it's only gonna be
used one time?

Robert Everland III
Web Developer
Dixon Ticonderoga


-Original Message-
From: Cameron Childress [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, October 17, 2000 2:32 PM
To: CF-Talk
Subject: RE: Storing passwords in database as one way hash


> anybody know of anything that does such?
> I am looking for pretty much the same functionality as a standard
> *NIX login

Look up the function Hash().  I think it was introduced in CF 4.5.
Actually, I just looks at the online cfdocs and don't see it in there, but
it is... maybe introduced in 4.5.1?

There's also a CFX_HASH in the tag gallery that give many more options of
hash types.

-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.

--
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.



Verity Command Line Help

2000-10-17 Thread Bryan Martin

Has anyone successfully updated a Verity collection using the MKVDK.exe utility?  I 
have been trying to get it to work without success.  Any help would be greatly 
appreciated.

Bryan Martin
--
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: access color selection box with CF?

2000-10-17 Thread Walker, Matthew

> Has anyone accessed the windows color select box using CF?

Yes, I have. I use it for the admin pages in a shopping cart (select product
colour). It's the standard windows colour picker. However, I've only managed
to make it work for Win98 so far. Found virtually no info anywhere -- only
info I found was for using it in VB and the like. Nevertheless, it does work
beautifully for me. 

Send me a note offlist if you want to see it going. 
--
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: Storing passwords in database as one way hash

2000-10-17 Thread Jon Tillman

Who ever said it is going to be used one time?
I need to securely store the passwords for several dozen competing users

On Tue, 17 Oct 2000, Robert Everland spake thusly:
> Why even bother storing a password in a one way hash if it's only gonna be
> used one time? 
> 
> Robert Everland III
> Web Developer
> Dixon Ticonderoga
> 
> 
> -Original Message-
> From: Cameron Childress [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, October 17, 2000 2:32 PM
> To: CF-Talk
> Subject: RE: Storing passwords in database as one way hash
> 
> 
> > anybody know of anything that does such?
> > I am looking for pretty much the same functionality as a standard
> > *NIX login
> 
> Look up the function Hash().  I think it was introduced in CF 4.5.
> Actually, I just looks at the online cfdocs and don't see it in there, but
> it is... maybe introduced in 4.5.1?
> 
> There's also a CFX_HASH in the tag gallery that give many more options of
> hash types.
> 
> -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.
> --
> 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]
 JAPH
***
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.



file upload permissions on a solaris/cf

2000-10-17 Thread Aaron Johnson

Anyone have any pointers or articles on what permissions would be for CF to
handle file uploads on Solaris?

Thanks!

AJ

--
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.



What sort of RegEx does Cold Fusion Support?

2000-10-17 Thread Christopher S Martin

Just a quick question as I prepare to write a tempalte that will (hopefully)
save me days of mindnumbing work:
How well does ColdFuison support Regular Expressions?  Does it use a perl or
perl-ish model, strict POSIX standards, or some weird, homegrown  flavor?
Basically I want to kow if I use a regular expression that works with, say .
. . grep, will it provide the desired functionality?

Thanks,

Chris Martin.

--
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.



Multiple row form data submission to database?

2000-10-17 Thread Dharmesh Goel

Hello Everyone,

I am trying to make a small data entry screen in ColdFusion. There are five
columns in the table. Number of rows is dynamically generated with the first
column automatically filled in. Others have to be filled in by a user. When
the user submits the form, each row is inserted in a database as a new row.

I have not done a form submission until now that updates multiple rows. I
hope you can help me with the basic logic involved in this. My guess would
be to insert the data from the form into a 2 dimensional Array and then loop
over the array while inserting into the database. How do I insert it into an
array and proceed from there?

CH1 CH2 CH3 CH4 CH5

-
Field1  Field2  Field3  Field4  Field5
Field1  Field2  Field3  Field4  Field5
Field1  Field2  Field3  Field4  Field5
Field1  Field2  Field3  Field4  Field5
"   "   "   "   "
"   "   "   "   "

Field1 is auto populated with a query result.

Thank you,

Dharmesh Goel
Programmer Analyst
IT Dept. - Discount Car & Truck Rentals
416-744-0123 x290

--
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: access color selection box with CF?

2000-10-17 Thread Mark Adams

Actually, I am trying to access the windows color palette via browser. But,
I'm not sure how to call it up.


- Original Message -
From: Doug Powell <[EMAIL PROTECTED]>
To: CF-Talk <[EMAIL PROTECTED]>
Sent: Tuesday, October 17, 2000 12:03 PM
Subject: RE: access color selection box with CF?


> ?
> If your trying to make a select box have color you can use this
>
> 
>   
>  2>STYLE="background-color:blue;">
> #what you want#
> 
>   
> 
>
> -Original Message-
> From: Mark Adams [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, October 17, 2000 1:54 PM
> To: CF-Talk
> Subject: access color selection box with CF?
>
>
> Has anyone accessed the windows color select box using CF?
>
> -Mark
>
> --
--
> --
> 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: File replication packages

2000-10-17 Thread Dirk De Bock

WebAgain seems to behave quite nicely at a few sites I manage. It can
replicate both through netbios shares and ftp which gives it the flexibility
to also replicate to remote sites.

- Original Message -
From: "Mark Johnson" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, October 17, 2000 12:15 PM
Subject: OT: File replication packages


> Those of you using server farms and or loadbalancing.  How do you publish
> your CF files to all your servers?  What software are you using to
acomplish
> this?  What should we aviod in implementing a file replication package.
>
> Mark Johnson
> ---
> Senior Cold Fusion Developer
> Cardinal Communications
>
> --

> 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: Expand Select Box -- Take Two

2000-10-17 Thread j p

I need to actually 'drop down' the selection options NOT expand the width of 
the select box.

In other words, Click Here, and the select box drops down to display options 
somewhere else on the page.

Jp




>From: "Doug Powell" <[EMAIL PROTECTED]>
>Reply-To: [EMAIL PROTECTED]
>To: CF-Talk <[EMAIL PROTECTED]>
>Subject: RE: Expand Select Box (JS Question)
>Date: Tue, 17 Oct 2000 14:51:24 -0400
>
>
>-
>
>
>to get the size you want and then call a function to get rid
>of the lines such as
>
>function clearBlanks() {
>  document.something.whatever.options[0] = null;
>  document.something.whatever.options[0] = null;
>  return true;
>}
>
>In the body tag call the function onLoad="clearBlanks()
>-Original Message-
>From: j p [mailto:[EMAIL PROTECTED]]
>Sent: Tuesday, October 17, 2000 1:37 PM
>To: CF-Talk
>Subject: Expand Select Box (JS Question)
>
>
>
>Is It possible through JS to expand a select box, I need to expand a select
>box when someone clicks on something (not the little arrow if the select
>box)
>
>JP
>_
>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.
>
>
>--
>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.



win 2000/sql with cf 4.5 PROBLEMS

2000-10-17 Thread andrew kopelman

After upgrading to Windows 2000, I get this interesting situation with SQL 
Server (or ODBC): any table that i create, isn't 'seen'. I get the error: 
Invalid object name 'onetable'. ('Onetable' being the single table I 
created.) If I query one of this same sqlserver database system tables, like 
sysusers, it runs the query without complaint.  Therefore, my 'application' 
is connecting with the database, the databases native tables are seen, any 
new tables are not.

Any ideas? Anybody else having other troubles with SQL on Windows 2000?

_
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: Divide field in query and output resluts.

2000-10-17 Thread Jeremy Toevs

Thanks

>>> Hong <[EMAIL PROTECTED]> 10/17/00 10:00AM >>>
SELECT ROUND( ( TOTAL / HIT ), 1 ) AS output_result


-- 
Hong Wu
Senior Web Developer
DoubleSpace


Jeremy Toevs wrote:
> 
> Is there a way to make it round to the nearest tenth?
> 
> >>> Hong <[EMAIL PROTECTED]> 10/16/00 03:20PM >>>
> use SQL math divide operator,
> 
> SELECT ( TOTAL / HIT ) AS output_result
> ...
> 
> --
> Hong Wu
> Senior Web Developer
> DoubleSpace
> 
> Jeremy Toevs wrote:
> >
> > Can you divide field in a query an output the results. Bacially, I have a TOTAL 
>field that I want to divid by a HIT field. How would I do that if you can?
> >
> > Thanks for the help.
> >
> > Jeremy
> >
> > --
> > 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.
> 
> _
> Do You Yahoo!?
> Get your free @yahoo.com address at http://mail.yahoo.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.
> 
> --
> 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.

_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.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.

--
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: [Storing passwords in database as one way hash]

2000-10-17 Thread Jon Tillman

Access

On Sat, 22 Nov 2036, [EMAIL PROTECTED] spake thusly:
> what database? MySQL has a password() function that encrypts
> 
> Jon Tillman <[EMAIL PROTECTED]> wrote:
> anybody know of anything that does such?
> I am looking for pretty much the same functionality as a standard *NIX login

-- 
***
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
 JAPH
***
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: Storing passwords in database as one way hash

2000-10-17 Thread Robert Everland

Why even bother storing a password in a one way hash if it's only gonna be
used one time? 

Robert Everland III
Web Developer
Dixon Ticonderoga


-Original Message-
From: Cameron Childress [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, October 17, 2000 2:32 PM
To: CF-Talk
Subject: RE: Storing passwords in database as one way hash


> anybody know of anything that does such?
> I am looking for pretty much the same functionality as a standard
> *NIX login

Look up the function Hash().  I think it was introduced in CF 4.5.
Actually, I just looks at the online cfdocs and don't see it in there, but
it is... maybe introduced in 4.5.1?

There's also a CFX_HASH in the tag gallery that give many more options of
hash types.

-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.
--
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.



Browser Detect

2000-10-17 Thread Chuck Hergenroeder

Does anyone know of a way to auto-detect whether a browser has 40bit or 128bit 
encryption?


--
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.



Threading issue

2000-10-17 Thread Dan Allison


I am having a problem with a thread being held open.  I have set performance
monitor so I can see all the threads.  Occasionally I have a thread that
goes to 100% and eventually eats up memory and causes slow performance.
Stopping and starting CF services seems to solve the problem. Looking
through the logs I see error messages "warning unresponsive thread count."
This goes from 1 to usually 10 and then our site locks up.  Anyone have any
thoughts on the cause?  It seems to be a coding error that we can't
track down or a memory leak.  Has anyone seen this before?

Thanks,
Dan
--
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: Storing passwords in database as one way hash

2000-10-17 Thread Steve Bernard

I just use CFX_HASH or Hash() to MD5 hash passwords before inserting them
into a db. For example:

Insert
--



  INSERT INTO USERS (username, password)
  VALUES ('#FORM.str_Username#', '#VARIABLES.hash_Password#')


Query
-




  SELECT USERID
  FROM USERS
  WHERE username = '#FORM.str_Username#' AND password = '#hash_Password#'


Steve


-Original Message-
From: Jon Tillman [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, October 17, 2000 1:44 PM
To: CF-Talk
Subject: Storing passwords in database as one way hash


anybody know of anything that does such?
I am looking for pretty much the same functionality as a standard *NIX login

--
***
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
 JAPH
***
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.

--
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: access color selection box with CF?

2000-10-17 Thread Doug Powell

?
If your trying to make a select box have color you can use this


  
STYLE="background-color:blue;">
#what you want#

  


-Original Message-
From: Mark Adams [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, October 17, 2000 1:54 PM
To: CF-Talk
Subject: access color selection box with CF?


Has anyone accessed the windows color select box using CF?

-Mark


--
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: Passwords in O'Reilly WebSite

2000-10-17 Thread W Luke

Thanks very much indeed Michael, I'll give it go when I get into work
tomorrow.

Looks exactly what I need.

Thanks

Will
--

- Original Message -
From: "Michael Dinowitz" <[EMAIL PROTECTED]>
Newsgroups: cf-talk
Sent: Tuesday, October 17, 2000 4:54 PM
Subject: Re: Passwords in O'Reilly WebSite


> http://www.houseoffusion.com/cfapi/cfx_wsauth.zip
> Does the crypto for you and I got the code for that section directly from
> Denny.
>
>
> > Hello,
> >
> > The Users' passwords in the Registry of O'Reilly WebSite are all
> encrpyted.
> > Fine.
> >
> > I'm creating an App in CF to automate WebSite - but I don't know how to
> > encrypt the passwords. If I enter in a plain-text password, it doesn't
> like
> > it.
> >
> > Can anyone advise as to what I should do?
> >
> > Thanks
> >
> > 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: Expand Select Box (JS Question)

2000-10-17 Thread Doug Powell


   -


to get the size you want and then call a function to get rid
of the lines such as

function clearBlanks() {
 document.something.whatever.options[0] = null;
 document.something.whatever.options[0] = null;
 return true;
}

In the body tag call the function onLoad="clearBlanks()
-Original Message-
From: j p [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, October 17, 2000 1:37 PM
To: CF-Talk
Subject: Expand Select Box (JS Question)



Is It possible through JS to expand a select box, I need to expand a select
box when someone clicks on something (not the little arrow if the select
box)

JP
_
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.


--
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: CFFILE ACTION=UPLOAD probs

2000-10-17 Thread Alex Sherwood

At 11:06 AM 10/17/2000 -0700, you wrote:
>I am using the below code to upload some text files, if the file has an .csv
>extension is will fail the test and get the error, if I just rename the same
>file with no extension it works ok.  I though the accept="text/plain" looks
>at the file contents not the extension.  Any recommendations on how to get
>around this?
>
>Thanks,Adrian
>
>
>
>nameconflict="ERROR" accept="text/plain">
>destination="G:\blah\blah.#currentdate#.#currenttime#">
>
>
>The File Cold NOT Be Uploaded.
>Make Sure The File You Are Uploading Is In A Plain Text Format.
>
>


MIME types are based on file extesions. I wonder what would happen if you 
tried to setup a MIME type with no extension?

--
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: Allaire gov't rep?

2000-10-17 Thread David Fauth


Kevin Davis
703 313-4947



-- Original Message --
From: "Park, Simon" <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
Date: Tue, 17 Oct 2000 11:50:04 -0400

>I remember from an old CFUG meeting that Allaire has a person who
>specifically deals with using ColdFusion for government contracts, answering
>questions and allaying fears about security, scalability and such. Does
>anyone have the contact info for this person?
>
>Thanks
>
>=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
>Simon Park  Computer Systems Management, Inc.
>Ph: 703-823-4300 x119   205 South Whiting Street #201
>fax: 703-823-4301   Alexandria, VA  22304
> http://www.csmi.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.
>
--
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: outputting data in a matrix

2000-10-17 Thread Chapman, Katrina

No Prob.

--K

-Original Message-
From: Richard Colman [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, October 17, 2000 10:55 AM
To: CF-Talk
Subject: RE: outputting data in a matrix


This worked just great. Thank you.

Richard Colman

-Original Message-
From: Chapman, Katrina [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, October 17, 2000 9:55 AM
To: CF-Talk
Subject: RE: outputting data in a matrix


No offence to anyone but your all making this much more difficult than it
is.

With a little creative HTML you can do this.


SELECT bookcat.Name, book.title
FROM bookcat, book
WHERE book.catid = bookcat.id
ORDER BY bookcat.name







#name#




#title#









This is just an example but you don't need to make it more difficult than it
is.  Of course you can modify this so that you only go three across or pull
a certain number of records at a time.  If you'd like to see this in action
go to www.katrinachapman.com/test_group.cfm and if you need any help please
feel free to contact me off list.

--K


-Original Message-
From: Stewart, Mark [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, October 17, 2000 6:57 AM
To: CF-Talk
Subject: RE: outputting data in a matrix


Richard,

If you're comfortable with using Crystal Reports, give that a try.

~Mark

-Original Message-
From: Richard Colman [mailto:[EMAIL PROTECTED]]
Sent: Monday, October 16, 2000 6:28 PM
To: CF-Talk
Subject: outputting data in a matrix


Can someone suggest how to do this:

category1  category2category3
   --   ---
item 1  item 1   item 1
item 2  item 2   item 2
item 3  item 3
item 4


where the data table looks like:

category, item, etc.

there will be an unequal number of items per category.

ideas for an approach appreciated. Thank you.

Richard Colman

--
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: What's with all the space?

2000-10-17 Thread Bill Killillay

Take a look at CFENABLEOUTPUTONLY, and there are a bunch of Custom tags on
Allaires web site for stripping out the white space also.

> -Original Message-
> From: Peter Benoit [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, October 17, 2000 1:04 PM
> To: CF-Talk
> Subject: What's with all the space?
>
>
> Viewing the source code of my CF apps, I see lots of white space.  Space
> that isn't there in other server side programming languages.
>
> Why is this, and is there something I can do about it?

--
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: Storing passwords in database as one way hash

2000-10-17 Thread Cameron Childress

> anybody know of anything that does such?
> I am looking for pretty much the same functionality as a standard
> *NIX login

Look up the function Hash().  I think it was introduced in CF 4.5.
Actually, I just looks at the online cfdocs and don't see it in there, but
it is... maybe introduced in 4.5.1?

There's also a CFX_HASH in the tag gallery that give many more options of
hash types.

-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: Comprehensive Scope Listing

2000-10-17 Thread Ryan Springer

Thanks, exactly what I wanted. =)

Ryan Springer


-Original Message-
From: David Shadovitz [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, October 17, 2000 12:24 PM
To: CF-Talk
Subject: Re: Comprehensive Scope Listing


In CF Studio's help, check out Developing Web Applications With
ColdFuison | Creating and Manipulating Variables | Using Application and
Session Variables.

Also see Teratech's http://www.cfug-md.org/articles/scope_worksheet.PDF
and http://www.cfug-md.org/articles/scope_STORAGE_analysis.PDF (watch the
word wrap)

-David

On Tue, 17 Oct 2000 10:58:42 -0500 Ryan Springer <[EMAIL PROTECTED]> writes:
> I know and have worked with several variable scopes in cold fusion,
> but I
> have never found a COMPLETE listing of all the scopes with their
> differences
> explained.  Every listing I find seems to omit or ignore at least
> one of the
> scopes.  Can anyone point me to a comprehensive scope listing?
>
> Thanks
>
> Ryan
>
>
-
-
> 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.


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: What's with all the space?

2000-10-17 Thread Chapman, Katrina

Look at the cfsetting tag.  The white space is caused by the cf tags taking
up space but not appearing in the source code.

--K

-Original Message-
From: Peter Benoit [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, October 17, 2000 10:04 AM
To: CF-Talk
Subject: What's with all the space?


Viewing the source code of my CF apps, I see lots of white space.  Space
that isn't there in other server side programming languages.  

Why is this, and is there something I can do about it?



--
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: What's with all the space?

2000-10-17 Thread Warrick, Mark

There are several ways to do this.  Here's one:

You can surround all of your code with the following tag:



Then make sure that anything you want returned to the screen is surrounded by 
 tags.

---mark

--
Mark Warrick
Phone: (714) 547-5386
Efax.com Fax: (801) 730-7289
Personal Email: [EMAIL PROTECTED]
Personal URL: http://www.warrick.net 
Business Email: [EMAIL PROTECTED]
Business URL: http://www.fusioneers.com
ICQ: 346566
--


> -Original Message-
> From: Peter Benoit [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, October 17, 2000 10:04 AM
> To: CF-Talk
> Subject: What's with all the space?
> 
> 
> Viewing the source code of my CF apps, I see lots of white space.  Space
> that isn't there in other server side programming languages.  
> 
> Why is this, and is there something I can do about it?
> 
> 
> --
> 
> 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?sidebarRsts&bodyRsts/cf_talk or send a message 
to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: [What's with all the space?]

2000-10-17 Thread double-down

use 

and
the custom tag  from the allaire exchange

Peter Benoit <[EMAIL PROTECTED]> wrote:
Viewing the source code of my CF apps, I see lots of white space.  Space
that isn't there in other server side programming languages.  

Why is this, and is there something I can do about it?


--
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 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.



Re: [Storing passwords in database as one way hash]

2000-10-17 Thread double-down

what database? MySQL has a password() function that encrypts

Jon Tillman <[EMAIL PROTECTED]> wrote:
anybody know of anything that does such?
I am looking for pretty much the same functionality as a standard *NIX login

-- 
***
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
 JAPH
***
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.



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.



writing files from oracle

2000-10-17 Thread Chris Hamer

Is there a way to get oracle to write a csv file from a coldfusion request.
Does oracle have a 'bcp' type program like sql server that writes files out
quickly?
I need to write a file with about 10 - 15,000 records without over-taxing
the cfserver.

Chris Hamer
Web Development
ImageServe, Inc.
http://www.imageserve.com
[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: Thanks was RE: returning top 10

2000-10-17 Thread Hong

sounds familiar? are you doing your database class homework or
something??

maybe you can use:
SELECT blah...
FROM   blah...
WHERE  ... NOT IN ( query_select_top_10_countries )

Hong

Jim Watkins wrote:
> 
> So far so good.  Now I have written another script that selects everyone NOT
> in the top ten counties (rows).  How can I do that without naming the
> counties?
> 
> -Original Message-
> From: Jim Watkins [mailto:[EMAIL PROTECTED]]
> Sent: Monday, October 16, 2000 9:09 PM
> To: CF-Talk
> Subject: returning top 10
> 
> How do you write a SQL statement that will return the top 10 of something
> (eg. top 10 salaries, top ten students by GPA, top ten populated counties,
> etc.)?
> 
> Currently I have:
> and student_pop
> in('Towns','Union','White','Fannin','Habersham','Stephens','Rabun','Franklin
> ','Bibb','Jones')
> 
> 
> --
> 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.

_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.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: returning top 10

2000-10-17 Thread Hong

SELECT TOP 10
..

-- 
Hong Wu
Senior Web Developer
DoubleSpace


Jim Watkins wrote:
> 
> What I mean is I do not want to hard code the top ten in.  I want Cold
> Fusion/Oracle to determine what the top ten are from say a list of 60.
> 
> -Original Message-
> From: Shawnea Carter [mailto:[EMAIL PROTECTED]]
> Sent: Monday, October 16, 2000 9:15 PM
> To: CF-Talk
> Subject: RE: returning top 10
> 
> Select top 10 * (or your fields)
> FROM table
> WHERE blah blah blah and student_pop
> in('Towns','Union','White','Fannin','Habersham','Stephens','Rabun','Franklin
> ','Bibb','Jones')
> 
> -Original Message-
> From: Jim Watkins [mailto:[EMAIL PROTECTED]]
> Sent: Monday, October 16, 2000 9:09 PM
> To: CF-Talk
> Subject: returning top 10
> 
> How do you write a SQL statement that will return the top 10 of something
> (eg. top 10 salaries, top ten students by GPA, top ten populated counties,
> etc.)?
> 
> Currently I have:
> and student_pop
> in('Towns','Union','White','Fannin','Habersham','Stephens','Rabun','Franklin
> ','Bibb','Jones')
> 
> 
> --
> 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.

_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.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.



OT: File replication packages

2000-10-17 Thread Mark Johnson

Those of you using server farms and or loadbalancing.  How do you publish
your CF files to all your servers?  What software are you using to acomplish
this?  What should we aviod in implementing a file replication package.

Mark Johnson
---
Senior Cold Fusion Developer
Cardinal Communications

--
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.



CFFILE ACTION=UPLOAD probs

2000-10-17 Thread Adrian Cesana

I am using the below code to upload some text files, if the file has an .csv
extension is will fail the test and get the error, if I just rename the same
file with no extension it works ok.  I though the accept="text/plain" looks
at the file contents not the extension.  Any recommendations on how to get
around this?

Thanks,Adrian







The File Cold NOT Be Uploaded.
Make Sure The File You Are Uploading Is In A Plain Text 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.



access color selection box with CF?

2000-10-17 Thread Mark Adams

Has anyone accessed the windows color select box using CF?

-Mark

--
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: outputting data in a matrix

2000-10-17 Thread Richard Colman

This worked just great. Thank you.

Richard Colman

-Original Message-
From: Chapman, Katrina [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, October 17, 2000 9:55 AM
To: CF-Talk
Subject: RE: outputting data in a matrix


No offence to anyone but your all making this much more difficult than it
is.

With a little creative HTML you can do this.


SELECT bookcat.Name, book.title
FROM bookcat, book
WHERE book.catid = bookcat.id
ORDER BY bookcat.name







#name#




#title#









This is just an example but you don't need to make it more difficult than it
is.  Of course you can modify this so that you only go three across or pull
a certain number of records at a time.  If you'd like to see this in action
go to www.katrinachapman.com/test_group.cfm and if you need any help please
feel free to contact me off list.

--K


-Original Message-
From: Stewart, Mark [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, October 17, 2000 6:57 AM
To: CF-Talk
Subject: RE: outputting data in a matrix


Richard,

If you're comfortable with using Crystal Reports, give that a try.

~Mark

-Original Message-
From: Richard Colman [mailto:[EMAIL PROTECTED]]
Sent: Monday, October 16, 2000 6:28 PM
To: CF-Talk
Subject: outputting data in a matrix


Can someone suggest how to do this:

category1  category2category3
   --   ---
item 1  item 1   item 1
item 2  item 2   item 2
item 3  item 3
item 4


where the data table looks like:

category, item, etc.

there will be an unequal number of items per category.

ideas for an approach appreciated. Thank you.

Richard Colman

--
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: CFFile Copy action

2000-10-17 Thread Aaron Johnson

you absolutely can have CF modify/delete/copy files on a network drive.  The
issue you're having, or more specifically that Cold Fusion is having, is
that CF doesn't have any rights on the network.  You'll need to have CF
start under an account that has rights on the network.  Start -- Control
Panel -- Services -- Cold Fusion Application Server

AJ

-Original Message-
From: Simon Horwith [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, October 17, 2000 1:04 PM
To: CF-Talk
Subject: RE: CFFile Copy action


I don't believe CFFILE will do that (I tried to do the same thing once upon
a time).  You could use a com object (via cfobject), stored procedure or DTS
Package on SQL Srvr, CFX tag, CFFTP (if you have an ftp server on the remote
machine), etc. but I do not believe you can just CFFILE manipulate files
on network drives.  Somebody enlighten us both, if I'm wrong about this.

~Simon

-Original Message-
From: Joseph Vincent [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, October 17, 2000 12:19 PM
To: CF-Talk
Subject: CFFile Copy action


I am trying to use the CFFile Copy action to copy a file from one of our
network drives over to our Web Server every morning.  I tried to do this and

got an error stating that the network file could not be found.  Does anyone
know if this should be able to be done?
_
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.

--
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   >