Can't perform queries in Unix

2001-06-28 Thread W Luke

Hi,

I'm trying to run a query - as basic as they come - to insert form data into
a table.  Except that the server is throwing a strange error at me:

An error occurred while attempting to establish a connection to the server.

The most likely cause of this problem is that the server is not currently
running. Verify that the server is running and restart it if necessary.

Unix error number 2 occurred: No such file or directory

The form action and method have been defined, and the page definately does
exist.  I'm using the correct Datasource, DBtype, Username  Password - what
else can I do?

In desperation

--
Will
new media discussion for Berkshire -=- http://bnm.lukrative.com
local classifieds -=- http://www.localbounty.com
e: [EMAIL PROTECTED]  icq: 31099745



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

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



Does this work???

2001-06-28 Thread Adkins, Randy

Does this work? I have not seen messages
for over 5 days now.

I have subscribed, unsubscribed, resubscribed.

I am subscribed out...


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

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



Re: Lists

2001-06-28 Thread stas

You could do this in a loop:

cfquery name=qryOne datasource= dbtype=ODBC
 SELECT myValueOne
 FROM tblOne
/cfquery

cfloop query=qryOne
 cfloop list=#qryOne.myValueOne# index=i
  cfquery name=qryTwo datasource= dbtype=ODBC
   SELECT myValueTwo
   FROM tblTwo
   WHERE myValueTwo = #i#
  /cfquery
 /cfloop
/cfloop

- Original Message -
From: David Clay [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Wednesday, June 27, 2001 5:40 PM
Subject: Lists


I have more than 1 value in a table field (values=test1,test2)

How can I query those to match one of those values with a value of another
table?

Thank you fro your help.

Dave Clay
Internet Facilitator
Trus Joist, A Weyerhaeuser Business
5995 Greenwood Plaza Blvd, Suite 100
Greenwood Village, CO 80111
303.770.8506
303.770.8506
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



RE: CFHTTP Prob

2001-06-28 Thread Larry Juncker

Jim

I am using that very setup and my code works very well.
Do you not have a return variable set up so that you can check
the results.

If you CFOUTPUT#CFHTTP.FileContent#/CFOUTPUT

You should get a result from your processing company that you can read.
Sometimes if it is coming back in XML, you will not see it unless you
surround result such as this:

CFOUTPUTXMP#CFHTTP.FileContent#/XMP/CFOUTPUT

The example above is what I have to use when receiving a reply back from
SurePay

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

-Original Message-
From: Jim Mixon [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, June 27, 2001 10:01 PM
To: CF-Talk
Subject: CFHTTP Prob


Hi list . .
  Anyone using a tag that sends data, such as to a credit card server,
using CFHTTP POST and doing it successfully using
WinNT 4, sp 6 and CF 4.5 ?

It seems like the tag is functioning but I don't think it is actually
delivering the data . . . this was working previously on CF 4.0 and 4.01
but not 4.5 and I have tried it on actual other servers set up the same way
and it does not work on them either, so I don't think it has anything to do
with the actual server itself . . .


thanks for any help with this problem .. .

Jim Mixon - CEO
APT POINT NET, Inc. A Premiere InterNET Gateway . . .
[EMAIL PROTECTED]   http://www.apt.net/
PO Box 160217 Hialeah, FL 33016 305-821-8451
FAX (305) 821-8189 auto-switching FAX
powered by Cold Fusion 4.01 . . . . feel the force!
CF Hosting Now Available . . . . !
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



Re: CFMAIL practical limits

2001-06-28 Thread tom muck

Have you found a setting that allows you to spool more than 100 messages
every 15 seconds?  With those limits set by the CF Administrator we've only
been able to dump 24,000 messages per hour to our mail server.

tom

Dylan Bromby [EMAIL PROTECTED] wrote in message
000301c0ff30$3c59b900$6401a8c0@bromby">news:000301c0ff30$3c59b900$6401a8c0@bromby...
 I use CFMAIL to send 50,000 emails a pop and it takes less than 30 minutes
 to send them all to the mail server (IMail 6.0.x).

 --Dylan




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

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



RE: CFMAIL practical limits

2001-06-28 Thread Dylan Bromby

This is the code I use. I've found (and I don't know why) it works best when
I send batches of 8,000 at a time. 8,000 will spool to the mail server in
less than 3 minutes.

--Dylan

---
CFQUERY NAME=[query] DATASOURCE=[DSN]
SELECT
email_address
FROM
[table]
/CFQUERY

!--- Starting time stamp 
CFOUTPUT
#TimeFormat(Now(), 'hh:mm:ss')#
/CFOUTPUT
BR

CFLOOP QUERY=get_email STARTROW=1 ENDROW=8000
CFMAIL
FROM=[from]
TO=#email_address#
SUBJECT=[subject]
Mail Body
/CFMAIL
/CFLOOP

BRBR

!--- Ending time stamp ---
CFOUTPUT
#TimeFormat(Now(), 'hh:mm:ss')#
/CFOUTPUT
---



-Original Message-
From: tom muck [mailto:[EMAIL PROTECTED]]
Sent: Thursday, June 28, 2001 6:47 AM
To: CF-Talk
Subject: Re: CFMAIL practical limits


Have you found a setting that allows you to spool more than 100 messages
every 15 seconds?  With those limits set by the CF Administrator we've only
been able to dump 24,000 messages per hour to our mail server.

tom

Dylan Bromby [EMAIL PROTECTED] wrote in message
000301c0ff30$3c59b900$6401a8c0@bromby">news:000301c0ff30$3c59b900$6401a8c0@bromby...
 I use CFMAIL to send 50,000 emails a pop and it takes less than 30 minutes
 to send them all to the mail server (IMail 6.0.x).

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

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



Re: Does this work???

2001-06-28 Thread Michael Dinowitz

Due to an impending drive failure I had to build a new box for the lists.
Problem is, the DNS for it is taking a lng time to go through to some
people (about 15% of the entire list at last count). This is slowly
changing, but its a bit out of my hands at the moment. Once the DNS is ok by
you, then you'll get your mail.
As a side note, your able to post. It's just the receipt that's the problem.


 Does this work? I have not seen messages
 for over 5 days now.

 I have subscribed, unsubscribed, resubscribed.

 I am subscribed out...



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

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



ot: SQL select all BUT

2001-06-28 Thread Michael Lugassy

Is there a way to run a select statment that fetch ALL (*) colums BUT colum5,coulm6

something which is similiar to:
SELECT colum1,colum2,colum3,colum4


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

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



Re: Does this work???

2001-06-28 Thread Kevin Mansel

Testing.
- Original Message -
From: Michael Dinowitz [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Thursday, June 28, 2001 8:10 AM
Subject: Re: Does this work???


 Due to an impending drive failure I had to build a new box for the lists.
 Problem is, the DNS for it is taking a lng time to go through to some
 people (about 15% of the entire list at last count). This is slowly
 changing, but its a bit out of my hands at the moment. Once the DNS is ok
by
 you, then you'll get your mail.
 As a side note, your able to post. It's just the receipt that's the
problem.


  Does this work? I have not seen messages
  for over 5 days now.
 
  I have subscribed, unsubscribed, resubscribed.
 
  I am subscribed out...
 
 
 

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

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



Re: CFMAIL practical limits

2001-06-28 Thread tom muck

Have you actually looked at the mail server itself to see if the emails are
getting there?  I know that CF will send the emails to the cfusion mail 
spool folder in a matter of seconds, but once the individual emails are in
the spool folder, they go out at a rate of 100 every 15 seconds (default is
60 seconds in the CF Administrator).  That's the setting I'm trying to
increase.  I have a job coming up that is 400,000 emails, and I would love
to speed up the process so my mail server isn't sitting idle while
ColdFusion sends 24,000 messages per hour to the mail server.

tom

Dylan Bromby [EMAIL PROTECTED] wrote in message
000201c0ffe0$cc660890$6401a8c0@bromby">news:000201c0ffe0$cc660890$6401a8c0@bromby...
 This is the code I use. I've found (and I don't know why) it works best
when
 I send batches of 8,000 at a time. 8,000 will spool to the mail server in
 less than 3 minutes.

 --Dylan

 ---
 CFQUERY NAME=[query] DATASOURCE=[DSN]
 SELECT
 email_address
 FROM
 [table]
 /CFQUERY

 !--- Starting time stamp 
 CFOUTPUT
 #TimeFormat(Now(), 'hh:mm:ss')#
 /CFOUTPUT
 BR

 CFLOOP QUERY=get_email STARTROW=1 ENDROW=8000
 CFMAIL
 FROM=[from]
 TO=#email_address#
 SUBJECT=[subject]
 Mail Body
 /CFMAIL
 /CFLOOP

 BRBR

 !--- Ending time stamp ---
 CFOUTPUT
 #TimeFormat(Now(), 'hh:mm:ss')#
 /CFOUTPUT
 ---



 -Original Message-
 From: tom muck [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, June 28, 2001 6:47 AM
 To: CF-Talk
 Subject: Re: CFMAIL practical limits


 Have you found a setting that allows you to spool more than 100 messages
 every 15 seconds?  With those limits set by the CF Administrator we've
only
 been able to dump 24,000 messages per hour to our mail server.

 tom

 Dylan Bromby [EMAIL PROTECTED] wrote in message
 000301c0ff30$3c59b900$6401a8c0@bromby">news:000301c0ff30$3c59b900$6401a8c0@bromby...
  I use CFMAIL to send 50,000 emails a pop and it takes less than 30
minutes
  to send them all to the mail server (IMail 6.0.x).
 
  --Dylan

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

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



CFCONTENT

2001-06-28 Thread Bruce, Rodney

Hello all


I am creating PowerPoint slides using cfcontent.

Mostly this works fine.  the problem is when a user choices the option
Open file from its current position.   The file opens fine and shows the
slide.  but when user moves or clicks on the scroll bar the error The Page
cannot be displayed comes up and the user then has to use the back button a
few times to get back to a usable page.

Has anyone else come across this?  is it possible to not allow the option
Open file from its current position?

and if not does anyone know how to work around this?


Thanks
Rodney

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

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



cfx_imageinfose

2001-06-28 Thread Michael Lugassy

has someone had the problem with cfx_imageinfose that suddently it stoped working?
just giving 0,0,0 for all images?

Thanks,
\
michael.


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

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



RE: Does this work???

2001-06-28 Thread Angél Stewart

i.e.  you can use the List ARchives to see responses to what you've posted heh heh.

-Gel


-Original Message-
From: Michael Dinowitz [mailto:[EMAIL PROTECTED]]

Due to an impending drive failure I had to build a new box for the lists.
Problem is, the DNS for it is taking a lng time to go through to some
people (about 15% of the entire list at last count). This is slowly
changing, but its a bit out of my hands at the moment. Once the DNS is ok by
you, then you'll get your mail.
As a side note, your able to post. It's just the receipt that's the problem.


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

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



Re: Does this work???

2001-06-28 Thread Michael Dinowitz

Very true. Problem is, the people who have to hear this aren't getting
posts. :)


 i.e.  you can use the List ARchives to see responses to what you've posted
heh heh.

 -Gel


 -Original Message-
 From: Michael Dinowitz [mailto:[EMAIL PROTECTED]]

 Due to an impending drive failure I had to build a new box for the lists.
 Problem is, the DNS for it is taking a lng time to go through to some
 people (about 15% of the entire list at last count). This is slowly
 changing, but its a bit out of my hands at the moment. Once the DNS is ok
by
 you, then you'll get your mail.
 As a side note, your able to post. It's just the receipt that's the
problem.



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

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



Re: Session hijacking - help!

2001-06-28 Thread Scott Weikert

Gang,

Thanks for the input.

I've done a couple of things to fix this, including the suggestions of:

* Including the id/token in the URL
* using CFLOCK around any session vars
* Setting the locking stuff in the CF Administrator

To keep my CFLOCK usage to a minimum, at the top of any page, I'm coping
Session into another local structure, and use it to do my reads.

So far, nothing is breaking, but I don't know 100% if it's fixing the issue
until we do some testing with folks inside the client's network (which we're
doing in a few minutes).

FYI, the issues only happen INSIDE the company's LAN - the CF server and the
client machines are all basically one hop away from each other. No proxies
are involved. The issues do NOT happen with us OUTSIDE the lan, going
through the firewall. I still suspect there's something funky going on
inside their LAN - perhaps their client machines are set to munge cookies,
or there's some weird communication issue going on internally. But I'm
hoping that all this will be moot - I'm personally betting on the passing
the id/token fix being the key thing here, i.e. short-circuiting the
necessity of a cookie in the first place.

--Scott


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

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



SQL single entry question

2001-06-28 Thread Deanna L. Schneider

Hi Folks,
I'm having a stupid brain block on this one, and since the list isn't very
busy, I thought I'd toss it out there.

I have an oracle table like so:

POSPERLEN
positionid
responseid

What would the query be to count how many responseid's are in the table only
once (a person can have multiple positions)?

I'm thinking it has something to do with a having clause, but what I've
tried isn't working (the where clause just insures it's a completed record):
SELECT COUNT(a.responseid) as totalresponse
FROM fsnep.posperlen a
WHERE a.responseid IN (select responseid from fsnep.result where taskid =
'F7')
GROUP BY a.responseid HAVING count(a.responseid) = 1

Thanks for the help.




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




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

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



RE: Session hijacking - help! [sidebar]

2001-06-28 Thread Noel Flatters

Just a quick question about locking session variables. When the timeout
attribute of a read-only lock is assigned to the session variable, does the
lock last the duration of the timeout specified, or is the variable released
once whatever processing is required completes?

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

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



Re: How does cold fusion track user w/out cookies

2001-06-28 Thread W Luke

Hi Daniel,

If you were tracking users who are logging into a system, you could validate
their login and then do something like this:

cfset client.userID = '#form.email#'

If you had a members-only page, and needed the user to be logged in, you
could then check if client.userID is defined:

cfif isdefined('client.userID')

User is logged in as cfoutput#client.userID#/cfoutput

cfelse

Please login
/cfif

That sorta thing

hth

--
Will
new media discussion for Berkshire -=- http://bnm.lukrative.com
local classifieds -=- http://www.localbounty.com
e: [EMAIL PROTECTED]  icq: 31099745

- Original Message -
From: Daniel [EMAIL PROTECTED]
Newsgroups: cf-talk
Sent: Thursday, June 28, 2001 7:06 PM
Subject: How does cold fusion track user w/out cookies


 If I decide to not track user's with cookies how does CF keep track of
that
 person using urlToken?  Client Variables are being stored in a database
and
 not registry.

 thanks

 daniel




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

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



Session Hijacking, even more...

2001-06-28 Thread Scott Weikert

This is getting WAY strange.

I've inserted some extra fields into a database table that is used to track
user progress through this application. I've found that not only are people
hijacking sessions, but the ID/Token values as well - I've got multiple
people in the app at once that are sporting the same ID/Token pair.

The creepy thing is, I'm passing the ID/Token pair in the URL for each page
refresh so how, pray tell, would these be changing?

I'm doing a href=index.cfm?CFID=#CFID#CFTOKEN=#CFTOKEN#blah/a
basically. Is this flawed? Should I be using #URL.CFID# etc.?

--Scott


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

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



CFDecrypt URL

2001-06-28 Thread Larry Juncker

Guys;

I have lost my decrypted file.  Can someone give me the URL again for
CFDecrypt?
You can send it offline even if someone has it.

Thanks inadvance

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


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

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



RE: CFDecrypt URL

2001-06-28 Thread Semrau, Steven L Mr SRA

Let's not get started on this again...

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


-Original Message-
From: Larry Juncker [mailto:[EMAIL PROTECTED]]
Sent: Thursday, June 28, 2001 4:19 PM
To: CF-Talk
Subject: CFDecrypt URL


Guys;

I have lost my decrypted file.  Can someone give me the URL again for
CFDecrypt?
You can send it offline even if someone has it.

Thanks inadvance

Larry Juncker
Senior Cold Fusion Developer
Heartland Communications Group, Inc.
[EMAIL PROTECTED]
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



Re: CFDecrypt URL

2001-06-28 Thread Kevin Mansel

I remember the discussion so so well   ;o)


- Original Message -
From: Semrau, Steven L Mr SRA [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Thursday, June 28, 2001 1:38 PM
Subject: RE: CFDecrypt URL


 Let's not get started on this again...

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


 -Original Message-
 From: Larry Juncker [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, June 28, 2001 4:19 PM
 To: CF-Talk
 Subject: CFDecrypt URL


 Guys;

 I have lost my decrypted file.  Can someone give me the URL again for
 CFDecrypt?
 You can send it offline even if someone has it.

 Thanks inadvance

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

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

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



RE: CFDecrypt URL

2001-06-28 Thread Larry Juncker

Your right lets not - I found my file so nevermind


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

-Original Message-
From: Kevin Mansel [mailto:[EMAIL PROTECTED]]
Sent: Thursday, June 28, 2001 3:50 PM
To: CF-Talk
Subject: Re: CFDecrypt URL


I remember the discussion so so well   ;o)


- Original Message -
From: Semrau, Steven L Mr SRA [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Thursday, June 28, 2001 1:38 PM
Subject: RE: CFDecrypt URL


 Let's not get started on this again...

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


 -Original Message-
 From: Larry Juncker [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, June 28, 2001 4:19 PM
 To: CF-Talk
 Subject: CFDecrypt URL


 Guys;

 I have lost my decrypted file.  Can someone give me the URL again for
 CFDecrypt?
 You can send it offline even if someone has it.

 Thanks inadvance

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

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

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



(admin) What's up

2001-06-28 Thread Michael Dinowitz


I'm happy to say that the net as we know it is more secure today than it was
years back. I can speak to this security first hand due to the list
problems. Lets examine what's really going on.
1. Anyone who wants to post can.
2. Some people were always receiving mail from the lists. These people have
problems that I'll get into in a moment.
3. Many people could not get posts from the list.
4. Some people still can't get posts from the list.
What's going on? The answer is security. When the HoF mail server tries to
send a message to someone it attempts to connect to port 25 on their box and
pipe the message to them directly. The actual process is :
HoF: hi, I'm the HoF mail server with a message for you.
recipient: Well, you may be a spammer. let me check your DNS info to see if
your really who you say you are.
HoF: ok, I'll wait
recipient: OK, your you. let me see the message.
HoF: here it is.
recipient: OK, it's for someone here. I'll deliver it. Thanks
HoF: your welcome
Now due to a DNS change, the info for the HoF server was not correct. This
is changing slowly as DNS servers cycle, but takes time. Because of this,
many messages are being rejected by the recipient. This means that:
1. Those who have always been getting mail do not have proper security on
their mail servers or their DNS changes really, really fast (probably the
former).
2. Those who are receiving messages now but had a lull have good security on
their mail servers and their DNS has cycled.
3. Those who have not gotten messages have slower DNS server cycle rates.
As time goes by and servers cycle, people will start getting their mail
again and happiness will reign. Tell your friends that happy days are coming
again really soon. :)

For those who want to see the actual error message that is recorded with the
message, here it is:
Defer-Reason: Couldn't establish SMTP connection on port 25
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



Filtering adult content

2001-06-28 Thread W Luke

Hi,

On one of my sites I'm getting increased numbers of Ads of an Adult nature.
What I'd like to do is write a Family Filter program which would allow
users to turn this on or off, so that children aren't exposed to the
content.  The actual content of the Ads isn't explicit, but the external
links are.  There are usually keywords such as - well, you get the picture.

I was wondering whether there was a tag or whether someone had attempted to
do this already - and if so, could offer some tips?  I thought about using
ReFindNoCase to check for a list of obvious keywords (Adult, xxx etc) in the
content - if it finds any in the content, I could then display a warning
message such as Adult content ahead - proceed?  This could then be tied in
with the Family Filter idea, so that if their filter is off, it would
automatically allow them to view the Adult Ads.

Comments appreciated.

--
Will
new media discussion for Berkshire -=- http://bnm.lukrative.com
local classifieds -=- http://www.localbounty.com
e: [EMAIL PROTECTED]  icq: 31099745


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

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



Re: Session Hijacking, even more...

2001-06-28 Thread Bill Davidson

Have you by chance accidentally somewhere hardcoded a URL token into your
application?  We had a user copy a url to paste somewhere else in our
managed content system, and he copied the CFID  CFTOKEN bit!  Was throwing
us for awhile trying to figure out what was going on

-Bill
brainbox

- Original Message -
From: Scott Weikert [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Thursday, June 28, 2001 3:37 PM
Subject: Session Hijacking, even more...


 This is getting WAY strange.

 I've inserted some extra fields into a database table that is used to
track
 user progress through this application. I've found that not only are
people
 hijacking sessions, but the ID/Token values as well - I've got multiple
 people in the app at once that are sporting the same ID/Token pair.

 The creepy thing is, I'm passing the ID/Token pair in the URL for each
page
 refresh so how, pray tell, would these be changing?

 I'm doing a href=index.cfm?CFID=#CFID#CFTOKEN=#CFTOKEN#blah/a
 basically. Is this flawed? Should I be using #URL.CFID# etc.?

 --Scott



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

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



Word Wrap

2001-06-28 Thread Jim McAtee

First, I'm getting zilch from the list, so please email your replies
directly to me.

I'm looking for a good (fast) word wrap tag.  I've tried out cf_wordwrap
from the tag gallery, but it doesn't work very well.  I need the tag to
preserve any carriage returns and line feeds contained within the body of
text, so that short lines and paragraph breaks are preserved.  Another bug
within that tag is that it wraps one character short of the desired line
length.

Thanks,
Jim



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

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



SOT BrainBench CF 4.51 Test

2001-06-28 Thread Dick Applebaum

I just took the BrainBench test for CF 4.51 programming.

It consisted of 40 multiple-choice questions.

I thought it was reasonable... mostly!

I think that 7 or 8 of the questions did *not* belong in the test. 
They were related to the CF Administrator, Java and C++ programming 
of CFX custom tags, managing  a Verity collection, etc.

I would normally just accept this without comment, but it was 20% of 
the questions.

There were also several questions about CFForm-related tags... which 
are (mostly) ignored by experienced CF programmers.

I thought the CFStoredProc-related questions were reasonable, 
although many of us write them in the native language of the 
particular db (e.g. T/SQL).

Several of the questions involved lists and they were defined in error:

   cfset myList = 1, 2, 3, 4

instead of


   cfset myList = 1,2,3,4

The questions were presented in a variable-spaced font and lines were 
wrapped after about 20 characters,   They tags also included a lot of 
unnecessary # signs, etc.  For example (from memory):

cfset myList = 1, 12, 12, 32, 16, 10, 20, 64
cfloop Index=i from=1 to=#ListLen(#myList#)#
step=2
   cfif ListGetAt(#myList#, #i#), EQ
  #URL.Part#
 cfset  qty =  #ListSetAt(#myList#, i+1,
#ListGetAt(#myList#, i+1) + #URL.Quantity#)#
   /cfif
/cfloop

Admittedly, none of them were this gross... many were close though.

I got the impression that they were trying to do a gotcha, rather 
then test your knowledge of CF, technique, and good programming 
habits.

Anyone have any comments or experience with this?

TIA

Dick

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

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



Spell Checking a Textarea Field

2001-06-28 Thread Steve Reich

How can I have my users spellcheck a textarea?

Thanks,
Steve



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

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



Re: Spell Checking a Textarea Field

2001-06-28 Thread Michael Dinowitz

Any way I can think of is to have the text 'sent' to the server to be run
through something like Ben's CFX_Spell. You can do it on form submit or you
can have an onchange event do a popup with the 'wrong' words. Either way,
you need something on the server. To have anything on the client is going to
be huge.


 How can I have my users spellcheck a textarea?

 Thanks,
 Steve




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

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



Re: Spell Checking a Textarea Field

2001-06-28 Thread Dick Applebaum

Steve

This is brute force, but practical... especially if need 
industry-specific dictionaries (medical, legal, etc)...

 copy/paste to a wp or other local program

This may not be as heretical as it sounds...

it is a lot easier to do text entry into a wp than into a browser, so 
why not recognize the fact, enter the text there, spell check, then 
copy/paste to the text area.

HTH\
Dick


At 9:21 PM -0400 6/28/01, Steve Reich wrote:
How can I have my users spellcheck a textarea?

Thanks,
Steve

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

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