RE: CGI script question

2000-04-24 Thread Dave Watts

 Can someone tell me what language the following CGI script is
 written in? Whatever it is, can it run on a CF site? Thanks.  sf


 sub valid
 { ### Copyright Keynetics Inc. Patents pending.
   my($a,$b,$c,$i,$q,$w,$x,$y,$z,@s,@v);

   ###
   $a='YOUR_SECRET_KEY_GOES_HERE';
   ###

   $q=''.substr($ENV{'QUERY_STRING'},0,256);
   $q=~/\Wseed=(\w+)/; $b=$1;
   $q=~/\Wcbpop=(\w+)/; $c=$1;

   return 0 unless $a$b$c;

   $q=''; $w=uc "$a $b"; $x=$y=$z=17;
   @v=unpack("C*",$w); $n=1+$#v;
   for($i=0;$i256;$i++)
   { $w=($x+$y)0x; $w=($w$z)|($w(32-$z));
 $w+=$v[$i%$n]; $s[$i7]+=$w31; $z=$y31; $y=$x; $x=$w;
   }

   for ($i=0;$i8;$i++)
   { $q.=substr('0123456789BCDEFGHJKLMNPQRSTVWXYZ',$s[$i]31,1); }

   return $c eq $q;
 }

It looks a bit like Perl to me. You could run it on your CF server, as long
as you installed Perl on there as well. Alternatively, you could port it to
CF I suppose, if you really didn't want to use Perl.

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

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



Re: CGI script question

2000-04-24 Thread Dana Larose

Guessing by the $ in from of the variables, I'd say it's perl, so
presumably, if you install perl on your webserver, you should be able to
make it run.

Dana


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



RE: ReReplaceNoCase is too greedy question

2000-04-24 Thread Paul Wakefield

Instead of:
"%%(.+)%%"

try:
"%%([^%]+)%%"

"%%, followed by one or more characters that don't match %, followed by %%"

-- 
Paul Wakefield

All opinions expressed herein are those of the author and not of The Board
of Executors


 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
 Sent: Friday, April 21, 2000 10:08 PM
 To: [EMAIL PROTECTED]
 Subject: ReReplaceNoCase is too greedy question
 
 
 Hi,
 
 I am trying to do a regular express that will replace all 
 defined areas of a
 text file with a blank.  ie..
 
 City, State, Zip:Aurora, California, 80013 Relocation Date
 (Generally same as start date): 12/31/ Relocation
 Category:_%%TestField%%
 blah blah blah blah
 %%NextField%%
 My regular express looks like this 
 cfset content = ReReplaceNoCase(content,"%%(.+)%%","",'All')
 This call replaces everything between the first "%%" and the 
 last "%%" 3
 lines down in the text with the blank.  I want it to not be greedy and
 replace "%%TestField%%" with a blank, then leave the text 
 alone until it
 encounters "%%NextField%%" which once encountered it only blanks the
 "%%NextField%%"
 Any help is appreciated.
 
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Basic Query Question

2000-04-24 Thread Scott M. Berry

Much Thanks!

Scott Berry

- Yahoo!GeoCities Senior Liaison
  http://www.geocities.com/~harryhoudini
- Magic Castle Junior Society
  http://www.magiccastle.com/Juniors/index.html
- College of the Canyons Web Design
  http://www.coc.cc.ca.us

- Original Message -
From: "Pete Freitag" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Saturday, April 22, 2000 11:59 PM
Subject: RE: Basic Query Question


 WHERE Membername != '#Cookie.Memebername#'

 OR

 WHERE Membername  '#Cookie.Membername#'

 See http://www.cfdev.com/resources/discussion/messages.cfm?id=7

 For more SQL info

 ___
 Pete Freitag
 CFDEV.COM
 Cold Fusion Developer Resources
 http://www.cfdev.com/

 -Original Message-
 From: Scott M. Berry [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, April 20, 2000 10:24 PM
 To: [EMAIL PROTECTED]
 Subject: Basic Query Question


 I need to do a query with his logic in it:

 WHERE Membername IS NOT '#Cookie.Membername#'

 How do I do a NOT in a WHERE?

 Scott Berry

 - Yahoo!GeoCities Senior Liaison
   http://www.geocities.com/~harryhoudini
 - Magic Castle Junior Society
   http://www.magiccastle.com/Juniors/index.html
 - College of the Canyons Web Design
   http://www.coc.cc.ca.us



 
--
 Archives: http://www.eGroups.com/list/cf-talk
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_tal
k or send a message to [EMAIL PROTECTED] with
'unsubscribe' in the body.



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



CheckBox

2000-04-24 Thread Scott M. Berry

Ok.. checkbox question:

I want to check in the action page to see if the check box was checked
on the previous form page. Is that a IsDefined or a ParameterExists...
in other words.. does it always exists, even if it wasn't checked, or
do I just need to check if it exists? Thanks!

Scott Berry

- Yahoo!GeoCities Senior Liaison
  http://www.geocities.com/~harryhoudini
- Magic Castle Junior Society
  http://www.magiccastle.com/Juniors/index.html
- College of the Canyons Web Design
  http://www.coc.cc.ca.us



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



RE: CheckBox

2000-04-24 Thread Dave Watts

 Ok.. checkbox question:

 I want to check in the action page to see if the check box was checked
 on the previous form page. Is that a IsDefined or a ParameterExists...
 in other words.. does it always exists, even if it wasn't checked, or
 do I just need to check if it exists? Thanks!

You'll want to use IsDefined to check for its existence in the action page:

CFIF IsDefined("Form.mycheckbox")

The ParameterExists function is essentially deprecated, and you shouldn't
bother using it - just use IsDefined instead.

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

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



RE: CheckBox

2000-04-24 Thread Pete Freitag

Checkboxes only show up on the action page if they were checked, so if they
exist then they were checked.  So you have to use IsDefined() to test for
their existence.  A checkbox can also have a value, and this works the same
way a regular text field does.

___
Pete Freitag
CFDEV.COM
Cold Fusion Developer Resources
http://www.cfdev.com/

-Original Message-
From: Scott M. Berry [mailto:[EMAIL PROTECTED]]
Sent: Monday, April 24, 2000 3:06 AM
To: [EMAIL PROTECTED]
Subject: CheckBox


Ok.. checkbox question:

I want to check in the action page to see if the check box was checked
on the previous form page. Is that a IsDefined or a ParameterExists...
in other words.. does it always exists, even if it wasn't checked, or
do I just need to check if it exists? Thanks!

Scott Berry

- Yahoo!GeoCities Senior Liaison
  http://www.geocities.com/~harryhoudini
- Magic Castle Junior Society
  http://www.magiccastle.com/Juniors/index.html
- College of the Canyons Web Design
  http://www.coc.cc.ca.us




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

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



Basic datasource question

2000-04-24 Thread R Navaneethan

I am trying to create datasource for SQL Server 6.5
database (default Master database). I try with
following details:
DSN Name: test
Server  : Sales
Database: Master

Any other settings necessary to set the dsn?

Also, please give the syntax for "Host string" to
create DSN for Oracle 8.0 with native driver.

Thanks,
naveen


__
Do You Yahoo!?
Send online invitations with Yahoo! Invites.
http://invites.yahoo.com
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Basic datasource question

2000-04-24 Thread Rahul

In case of DSN for 6.5 u have to give security information like user name 
password .. it will be user name = sa  password = whatever u have given for
sa ...
BTW u r creating this dsn in cf or through control panel -odbc  ??

- Original Message -
From: R Navaneethan [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, April 24, 2000 3:31 PM
Subject: Basic datasource question


 I am trying to create datasource for SQL Server 6.5
 database (default Master database). I try with
 following details:
 DSN Name: test
 Server  : Sales
 Database: Master

 Any other settings necessary to set the dsn?

 Also, please give the syntax for "Host string" to
 create DSN for Oracle 8.0 with native driver.

 Thanks,
 naveen


 __
 Do You Yahoo!?
 Send online invitations with Yahoo! Invites.
 http://invites.yahoo.com
 --

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


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



RE: Basic datasource question

2000-04-24 Thread Akbar Pasha

u should even look into the security issue of login name and pwd. and if u r
intending to use spectra enable retrival of long text.:-)


-Original Message-
From: R Navaneethan [mailto:[EMAIL PROTECTED]]
Sent: Monday, April 24, 2000 6:01 PM
To: [EMAIL PROTECTED]
Subject: Basic datasource question


I am trying to create datasource for SQL Server 6.5
database (default Master database). I try with
following details:
DSN Name: test
Server  : Sales
Database: Master

Any other settings necessary to set the dsn?

Also, please give the syntax for "Host string" to
create DSN for Oracle 8.0 with native driver.

Thanks,
naveen


__
Do You Yahoo!?
Send online invitations with Yahoo! Invites.
http://invites.yahoo.com

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



Re: Able Commerce knock-off

2000-04-24 Thread Brandon Whitaker

snip

The guy has already apologized for it.  Drop it please.

Consider it dropped.  I hadn't received that message at that point; when
combined with 48 straight hours of being force-fed PL/SQL for a project far
better served by CF, I guess it just brought out the smartass in me.

We now return you to your regularly-scheduled Mozilla-thrashing. :)

Brandon Whitaker
[EMAIL PROTECTED]
---
"It'll get used by the same people using Opera.  People dressed in black
wearing berets."
- Dave Watts, on Mozilla
"The net interprets censorship as damage and routes around it."
- John Gilmore


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



Re: What happened to this list?

2000-04-24 Thread Brandon Whitaker

I am demanding that you post his name to the list. It is a disservice to
the
rest of us if you let him keep his anonymity. Let him suffer the global
consequences for his actions. If there's a fox in the hen house, we all
have
a right to know who it is and adjust accordingly.

Umm...'scuse me, but in the spirit of repeated requests to return this list
back to its formerly non-confrontational state, do you think you *might*
consider backing down off the Torquemada routine a little bit?  I want this
jackass outed as much as you, and MANY here have voiced a similar desire -
but making brash (and futile, and impotent) "demands" is more likely to
dissuade compliance than encourage it.

If Dr. Kiel wishes to share the name of the misbegotten little rat sh*t with
us, he will.  If he doesn't, he won't.  It's that simple.  Ultimately the
decision is his.

To Dr. Kiel: put yourself in our positions - you know you'd want to feel
like you could safely ask a simple question without some underhanded little
trouser-stain putting your job at risk.  I can see how you'd find it a point
of honor to place yourself above this person - that revealing his name would
be invading his privacy and, in some way, might put you on the same moral
level as him.

This isn't the case, I assure you.  This person, and anyone like him, is a
threat to the community we have set up.  HE chose this road; you're not
burning his privacy, your helping the rest of us maintain our OWN privacy.

Respectfully,

Brandon Whitaker
[EMAIL PROTECTED]
---
"It'll get used by the same people using Opera.  People dressed in black
wearing berets."
- Dave Watts, on Mozilla
"The net interprets censorship as damage and routes around it."
- John Gilmore


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



Re: Cfhttp error?? help?

2000-04-24 Thread Brandon Whitaker

 Is there something wrong in my Code?

Running your code from here, it works fine, other than that the page
returned from Yahoo is an error page (it apparently doesn't support the POST
method, try GET instead.)

Can you contact this page from the server console?  If the server itself
can't reach the site, CFHTTP won't be able to, either.

If you can reach the site from your server's console, does your server use a
HTTP Proxy?  If so, that proxy address:port needs to be specified in the
CFHTTP tag.

Other than that, it seems to work just fine

HTH. HAND.

Brandon Whitaker
[EMAIL PROTECTED]
---
"It'll get used by the same people using Opera.  People dressed in black
wearing berets."
- Dave Watts, on Mozilla
"The net interprets censorship as damage and routes around it."
- John Gilmore


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



Re: New Public Beta Release of exciting new automatic FORM CREATION tag!

2000-04-24 Thread Brandon Whitaker

Hello,

HI!!!

I am excited to announce snip

I am equally excited to announce your arrival in MY BRAND-SPANKING NEW
KILLFILTER!!!  You're ##1!!! (note careful use of TWO pound signs!)

How about a custom tag for THAT function?

CF_Plonk regex="Br(ian|ay)" prejudice="EXTREME"

Brandon Whitaker
[EMAIL PROTECTED]
---
"It'll get used by the same people using Opera.  People dressed in black
wearing berets."
- Dave Watts, on Mozilla
"The net interprets censorship as damage and routes around it."
- John Gilmore


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



Re: Proper Case?

2000-04-24 Thread Brandon Whitaker

Supposing I am getting an output of a query. If the
company name in the database is :

THE GOOD COMPANY INC

How do I convert it to:
The Good Company Inc

Appreciate
AB

I don't suppose you're using an Oracle DB, are you?  That's as simple as
"SELECT INITCAP(foo) FROM bar"...

Other than that, I believe you have to lowercase the entire string, then
loop through it and cap the first letter after each space...

HTH

Brandon Whitaker
[EMAIL PROTECTED]
---
"It'll get used by the same people using Opera.  People dressed in black
wearing berets."
- Dave Watts, on Mozilla
"The net interprets censorship as damage and routes around it."
- John Gilmore


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



RE: Cybercash Merchant Kit

2000-04-24 Thread Bill Plummer

Good luck, I worked through this one about 6 months ago.  It was painful and
full of poor documentation and Cybercash tech support answering 1/2 a
question each time you called.  The whole process took me several weeks.

For your sake, I hope it's improved a bunch:-)

PS:  It did work well after all was said and done...

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Sunday, April 23, 2000 4:15 PM
To: [EMAIL PROTECTED]
Subject: Cybercash Merchant Kit


Hello Everyone,

Happy Easter!

Does anyone know of a concise and clear resource/guide for cybercash
installation and implementation(w/ coldfusion sites)?  I am reading through
the one from cybercash.com site and a little overwhelmed at the volume of
reading.

Any suggestions are greatly appreciated...

Thanks,

Nehal

 --

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


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


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

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



RE: Cybercash Merchant Kit

2000-04-24 Thread stäs

I used CFWebstore for a site, and that includes CyberCash support, using 
Allaire's free tag, or other commercial tags to talk to the CyberCash 
server. Worked really flawlessly out of the box. CFWebstore was only $150, 
so even if you're using another e-commerce package, it could be worth 
getting it just to see how she is doing it?

At 08:29 AM 04/24/2000 -0400, you wrote:
Good luck, I worked through this one about 6 months ago.  It was painful and
full of poor documentation and Cybercash tech support answering 1/2 a
question each time you called.  The whole process took me several weeks.

For your sake, I hope it's improved a bunch:-)

PS:  It did work well after all was said and done...

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Sunday, April 23, 2000 4:15 PM
To: [EMAIL PROTECTED]
Subject: Cybercash Merchant Kit


Hello Everyone,

Happy Easter!

Does anyone know of a concise and clear resource/guide for cybercash
installation and implementation(w/ coldfusion sites)?  I am reading through
the one from cybercash.com site and a little overwhelmed at the volume of
reading.

Any suggestions are greatly appreciated...

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



= in mail sent through cfmail tag

2000-04-24 Thread Leong Yew

Dear list members,

Several weeks ago someone posted a message to the list concerning the
appearance of "=" signs in mail that has been sent through the CFMAIL tag. I
vaguely remember someone responding to this as a result of CF wordwrapping
the message body at certain intervals. Does anyone have a way around this
problem? I tried relocating the discussion thread on the cf-talk archive at
egroups.com, but that hasn't been updated since Feb.

Thanks

Leong

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



Re: = in mail sent through cfmail tag

2000-04-24 Thread Fred Sanders

If your referring to it happening on the list, it more likely being caused
by the fact that support for all MIME types has been turned off on the mail
server for this list.  Due to an outbreak of a script virus that got past
the servers virus protection not too long ago, it was disabled so that no
attachments would come through.

Fred T. Sanders
Galveston Island, TX
--
Having a bad day?
Imagine this...

You are in total seclusion from that hectic place called "The World".
The soothing sound of a gentle waterfall fills the air with a cascading
serenity.
The water is clear.
You can easily make out the face of the person you are holding underwater.

Feeling better?


- Original Message -
From: "Leong Yew" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, April 24, 2000 8:02 AM
Subject: "=" in mail sent through cfmail tag


 Dear list members,

 Several weeks ago someone posted a message to the list concerning the
 appearance of "=" signs in mail that has been sent through the CFMAIL tag.
I
 vaguely remember someone responding to this as a result of CF wordwrapping
 the message body at certain intervals. Does anyone have a way around this
 problem? I tried relocating the discussion thread on the cf-talk archive
at
 egroups.com, but that hasn't been updated since Feb.

 Thanks

 Leong

 --

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

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



RE: = in mail sent through cfmail tag

2000-04-24 Thread mherbene

There is also an archive at
http://www.mail-archive.com/cf-talk@houseoffusion.com.  I found a pair of
message from Apr 12 on the issue, though I didn't see a resolution.

-Original Message-
From: Leong Yew [mailto:[EMAIL PROTECTED]]
Sent: Monday, April 24, 2000 9:02 AM
To: [EMAIL PROTECTED]
Subject: "=" in mail sent through cfmail tag


Dear list members,

Several weeks ago someone posted a message to the list concerning the
appearance of "=" signs in mail that has been sent through the CFMAIL tag. I
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: ReReplaceNoCase is too greedy question

2000-04-24 Thread Chris . Austin

Thank you very much for your help.  That worked out really well...

Best regards,
Chris A.

-Original Message-
From: Paul Wakefield [mailto:[EMAIL PROTECTED]]
Sent: Monday, April 24, 2000 12:34 AM
To: '[EMAIL PROTECTED]'
Subject: RE: ReReplaceNoCase is too greedy question


Instead of:
"%%(.+)%%"

try:
"%%([^%]+)%%"

"%%, followed by one or more characters that don't match %, followed by %%"

-- 
Paul Wakefield

All opinions expressed herein are those of the author and not of The Board
of Executors


 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
 Sent: Friday, April 21, 2000 10:08 PM
 To: [EMAIL PROTECTED]
 Subject: ReReplaceNoCase is too greedy question
 
 
 Hi,
 
 I am trying to do a regular express that will replace all 
 defined areas of a
 text file with a blank.  ie..
 
 City, State, Zip:Aurora, California, 80013 Relocation Date
 (Generally same as start date): 12/31/ Relocation
 Category:_%%TestField%%
 blah blah blah blah
 %%NextField%%
 My regular express looks like this 
 cfset content = ReReplaceNoCase(content,"%%(.+)%%","",'All')
 This call replaces everything between the first "%%" and the 
 last "%%" 3
 lines down in the text with the blank.  I want it to not be greedy and
 replace "%%TestField%%" with a blank, then leave the text 
 alone until it
 encounters "%%NextField%%" which once encountered it only blanks the
 "%%NextField%%"
 Any help is appreciated.
 

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



RE: = in mail sent through cfmail tag

2000-04-24 Thread Leong Yew

Thanks for the prompt reply.

I'd better clarify. No I wasn't referring the "="s appearing on this list.
The problem seems to be occuring on quite often regardless of where I've
been sending my messages.

-Original Message-
From: Fred Sanders [mailto:[EMAIL PROTECTED]]
Sent: Monday, April 24, 2000 10:39 PM
To: [EMAIL PROTECTED]
Subject: Re: "=" in mail sent through cfmail tag


If your referring to it happening on the list, it more likely being caused
by the fact that support for all MIME types has been turned off on the mail
server for this list.  Due to an outbreak of a script virus that got past
the servers virus protection not too long ago, it was disabled so that no
attachments would come through.

Fred T. Sanders
Galveston Island, TX
--
Having a bad day?
Imagine this...

You are in total seclusion from that hectic place called "The World".
The soothing sound of a gentle waterfall fills the air with a cascading
serenity.
The water is clear.
You can easily make out the face of the person you are holding underwater.

Feeling better?


- Original Message -
From: "Leong Yew" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, April 24, 2000 8:02 AM
Subject: "=" in mail sent through cfmail tag


 Dear list members,

 Several weeks ago someone posted a message to the list concerning the
 appearance of "=" signs in mail that has been sent through the CFMAIL tag.
I
 vaguely remember someone responding to this as a result of CF wordwrapping
 the message body at certain intervals. Does anyone have a way around this
 problem? I tried relocating the discussion thread on the cf-talk archive
at
 egroups.com, but that hasn't been updated since Feb.

 Thanks

 Leong

 --

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


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

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



RE: Proper Case?

2000-04-24 Thread Sean Daniels

 Supposing I am getting an output of a query. If the
 company name in the database is :

 THE GOOD COMPANY INC

 How do I convert it to:
 The Good Company Inc

Search the Allaire Developers Exchange for the cf_capitalize custom tag. It
has an attribute you can set to Titlecase and works like a champ.


- Sean


Sean Daniels
Manager, Engineering
DealStream.com
[EMAIL PROTECTED]
http://www.dealstream.com

tel: 207.439.6030
cel: 978.764.0779



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



Re: HTTP request and CGI variables

2000-04-24 Thread Andrea W


Pan,

That is a good point. I just tried that. It still doesn't work - I also 
tried getting rid of the http_ as another person on this list recommended, 
and that does not work either. Could be that I am still not feeding it the 
exact user agent value it is looking for...

Andrea

Original Message Follows
From: "pan" [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: Re: HTTP request and CGI variables
Date: Sat, 22 Apr 2000 21:21:33 -0700


From: Andrea W [EMAIL PROTECTED]



  I am sending an http request using cfhttp to register a user on a remote
  site - the remote site is using asp. The asp code is looking for the 
browser
  type in the cgi variables. I am sending it the browser type as follows:
 
  cfhttp
 
url="http://remote.server.com/signup/signup.asp?username=andreapassword=sesame"
  method="post" resolveurl="true"
 
  CFHTTPPARAM TYPE="CGI" NAME="HTTP_USER_AGENT" VALUE="Mozilla/4.0
  (compatible; MSIE 5.01; Windows NT)"
 
  /cfhttp
 
  But the remote app is still balking and claiming that I have an old 
browser
  version. Does anyone know if there is some way that using the cfhttp tag 
can
  tack on some cgi variables that cannot be overridden by the cfhttpparam? 
I
  have shown this code to the asp developer who wrote the code that accepts
  the user registration, and he said the HTTP_USER_AGENT variable looked
  correct and is what his app is looking for.
 

Have you tried setting the user_agent to an older version?
Might be that the receivning app isn't filtering correctly
for 5.01 

Pan


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=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

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



RE: New Public Beta Release of exciting new automatic FORM CREATION tag!

2000-04-24 Thread Eric Dawson

isn't there another list for tag promotion?

having said that, I signed up.

I appreciate the annoucenement, if not the venue.

Eric

From: "Jim Taylor" [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: RE: New Public Beta Release of exciting new automatic FORM CREATION 
tag!
Date: Sun, 23 Apr 2000 20:27:07 -0700

so do we all promote our tags here or what ..:):)

-Original Message-
From: Fred Sanders [mailto:[EMAIL PROTECTED]]
Sent: Sunday, April 23, 2000 6:33 PM
To: [EMAIL PROTECTED]
Subject: Re: New Public Beta Release of exciting new automatic FORM
CREATION tag!


GRR

Fred T. Sanders
Galveston Island, TX
--
Having a bad day?
Imagine this...

You are in total seclusion from that hectic place called "The World".
The soothing sound of a gentle waterfall fills the air with a cascading
serenity.
The water is clear.
You can easily make out the face of the person you are holding underwater.

Feeling better?


- Original Message -
From: "Brian Bray" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Sunday, April 23, 2000 6:34 PM
Subject: New Public Beta Release of exciting new automatic FORM CREATION
tag!


 
  Hello,
 
  I am excited to announce the first public beta version of a new set of
  custom tags called Incredibly Powerful Form Manager for
  ColdFusion ('CFIPFM').
 
  To learn more about CFIPFM please read on.  In addition much
  documentation is available (and more is on the way) at:
  http://www.cfipfm.com.  In particular you will find the About -
  Philosophy page and the Support - Documenatation pages to be the most
  helpful.
 
  About CFIPFM
  
 
  Incredibly Powerful Form Manager for ColdFusion ("CFIPFM") is a set of
  custom tags that helps you create high-quality, web-based forms by
  providing a rich set of features and tools for designing and displaying
  the web-based forms. CFIPFM drastically reduces development time over
  normal hand-coded web-based forms by generalizing form definitions,
  performing automatic data validation, reusable forms and form components
  and dynamically generating database queries.
 
  CFIPFM will drastically reduce development time (up to 60%) while
  simultaniously improving overall site quality.  Thoes who have used it
  already cant praise it enough!
 
  CFIPFM is also extremely extensible and customizable. All HTML output is
  generated dynamically from global or local form "styles". These styles
  allow you to control EVERY HTML tag and tag parameter that is generated 
by
  CFIPFM, allowing you infinite control over the "look and feel" of your
  web-based forms.
 
  Additionally, large portions of the code can be re-written to perform
  entirely different tasks. You could create new "widgets" or form element
  types to suit your needs or you could completely re-write the database
  toninterface and change it to a email form if you wanted to! CFIPFM can
  adapt to most any web-based form circumstances.
 
 
  Beta Evaluation
  ===
 
  CFIPFM is in working order. It is already being used on several sites 
that
  my colleagues and I are working on. The problem is that CFIPFM has not 
had
  exposure to a wide range of applications, platforms and databases. The
  purpose of the beta program is to find and eliminate major bugs and to
  adapt CFIPFM to handle a wide range of situations and scenarios that it
  have not yet been encountered before a version is made available for
  purchase.
 
  Beta testers get the opportunity to influence the product development. In
  addition people who provide exceptional feedback and comments will be
  rewarded with a free single domain license.
 
  Download and Test
  =
 
  To download the beta evaluation goto: http://www.cfipfm.com/download/
 
  You can read more about the beta evaluation version at:
  http://www.cfipfm.com/beta/
 
 
  Sincerely,
  Brian Bray
  CFIPFM Author
 
 
 
 
 
 
 
 
 
 
  
--

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


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

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=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 

Re: HTTP request and CGI variables

2000-04-24 Thread Andrea W


Dick, that is very interesting, so it looks like the USER_AGENT=Cold Fusion 
4.0 overrides whatever you send along w/cfhttp as a cgi value.

That may be behind my difficulties...hmm, I could ask them to modify their 
code, not sure if they will make such a change for lowly me, but it's worth 
a shot.

Andrea

Original Message Follows
From: "Lawrence B. Afrin, M.D." [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: Re: HTTP request and CGI variables
Date: Sun, 23 Apr 2000 08:55:18 -0400

I had some difficulties with this problem recently, too, when I needed to
implement a monitor that checks on another site.  Some things to be aware
of:

1) The USERAGENT param to CFHTTP did not become available until CF4.5.  I
don't believe trying to set the user agent via CFHTTPPARAM in earlier
version of CF will accomplish the desired effect.  If you're not at 4.5,
upgrade, then use CFHTTP USERAGENT=...

2) Note that there is a problem in the cfhttp.dll with 4.5 that causes
buggy CFHTTP METHOD=POST operations (such that the receiving server will
misunderstand/reject the request).  A hotfix (basically, an updated
cfhttp.dll) is available at
http://www.allaire.com/handlers/index.cfm?ID=14140Method=Full, or you can
upgrade to 4.5.1, which includes this and all other 4.5 hotfixes, I believe.

-- LBA

--On Sunday, April 23, 2000, 1:26 AM -0700 Dick Applebaum [EMAIL PROTECTED]
wrote:

 
  Andrea
 
 
  I never had the need to examine this before, so I wrote a little
  program to check it out.
 
  CF passes a HTTP_USER_AGENT of:
 
 ColdFusion 4.0
 
  I can understand arguments for and against allowing you to spoof the
  user agent.
 
  (Tango does).
 
  I couldn't find anything in any CFDocs that says you can't but
  that probably means... you can't.
 
 
  In your case, maybe you can convince the ASP programmer to accept
  ColdFusion 4.0 as a valid browser???
 
 
  HTH
 
  Dick
 
 
 
  At 7:23 PM + 4/21/2000, Andrea W wrote:
  I am sending an http request using cfhttp to register a user on a remote
  site - the remote site is using asp. The asp code is looking for the
  browser type in the cgi variables. I am sending it the browser type as
  follows:
 
  cfhttp
  url="http://remote.server.com/signup/signup.asp?username=andreapassw
  ord=sesame"
  method="post" resolveurl="true"
 
  CFHTTPPARAM TYPE="CGI" NAME="HTTP_USER_AGENT" VALUE="Mozilla/4.0
  (compatible; MSIE 5.01; Windows NT)"
 
  /cfhttp
 
  But the remote app is still balking and claiming that I have an old
  browser version. Does anyone know if there is some way that using the
  cfhttp tag can tack on some cgi variables that cannot be overridden by
  the cfhttpparam? I have shown this code to the asp developer who wrote
  the code that accepts the user registration, and he said the
  HTTP_USER_AGENT variable looked correct and is what his app is looking
  for.
 
  Thanks,
 
  Andrea Wasik
 
  
  Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com
 
  
  -- Archives: http://www.eGroups.com/list/cf-talk
  To Unsubscribe visit
  http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_tal
  k or send a message to [EMAIL PROTECTED] with
  'unsubscribe' in the body.
 
  -
  - Archives: http://www.eGroups.com/list/cf-talk
  To Unsubscribe visit
  http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
  or send a message to [EMAIL PROTECTED] with 'unsubscribe'
  in the body.


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=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

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



Form Dilemma

2000-04-24 Thread Jeff W

This is a multi-part message in MIME format.

--=_NextPart_000_01A1_01BFADD5.6515A5A0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

I have a dilemma.

I want to make a multiparted form, lets say 5 mini-forms to eliminate =
one large form. You would get put into the first mini-form and be able =
to move throughout these parts by clicking on graphic buttons instead of =
submit buttons. It would update any changes if made. Then on the last =
mini-form it would actually process it and do what I need it to do.

The kicker is that I have 30 or so large forms. Some of these parts =
would be the same in all forms, others would be different. So I would =
love to be able to re-use the code.

I have some ideas, like tossing all the form. variables to session =
variables, but have no idea exactly how to actually convert them to =
session variables since I don't know how to do it without a submit =
button AND not being able to know WHICH form they will go to next to be =
able to set the form. variables to session. variables.=20

I figured I would toss this out on here to see if anyone had done this =
before and could shed some light on this for me.


Thanks,
Jeff
[EMAIL PROTECTED]

--=_NextPart_000_01A1_01BFADD5.6515A5A0
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
HTMLHEAD
META content=3D"text/html; charset=3Diso-8859-1" =
http-equiv=3DContent-Type
META content=3D"MSHTML 5.00.2920.0" name=3DGENERATOR
STYLE/STYLE
/HEAD
BODY bgColor=3D#ff
DIVFONT face=3DArial size=3D2I have a dilemma./FONT/DIV
DIVnbsp;/DIV
DIVFONT face=3DArial size=3D2I want to make a multiparted form, lets =
say 5=20
mini-forms to eliminate one large form. You would get put into the first =

mini-form and be able to move throughout these parts by clicking on =
graphic=20
buttons instead of submit buttons. It would update any changes if=20
made.nbsp;Then on the last mini-form it would actually process it and =
do what I=20
need it to do./FONT/DIV
DIVFONT face=3DArial size=3D2/FONTnbsp;/DIV
DIVFONT face=3DArial size=3D2The kicker is that I have 30 or so =
large=20
forms.nbsp;Some of these parts would be the same in all forms, others =
would be=20
different. So I would love to be able to re-use the code./FONT/DIV
DIVnbsp;/DIV
DIVFONT face=3DArial size=3D2I have some ideas, like tossing all the =
form.=20
variables to session variables, but have no idea exactly how =
tonbsp;actually=20
convert them to session variables since I don'tnbsp;knownbsp;how to do =
it=20
without a submit button AND not being able to know WHICH form they will =
go to=20
next to be able to set the form.nbsp;variables to session. variables.=20
/FONT/DIV
DIVFONT face=3DArial size=3D2/FONTnbsp;/DIV
DIVFONT face=3DArial size=3D2I figured I would toss this out on here =
to see=20
if/FONTnbsp;FONT face=3DArial size=3D2anyone had done this before =
and could=20
shed some light on this for me./FONT/DIV
DIVnbsp;/DIV
DIVnbsp;/DIV
DIVFONT face=3DArial size=3D2Thanks,/FONT/DIV
DIVFONT face=3DArial size=3D2Jeff/FONT/DIV
DIVFONT face=3DArial size=3D2A=20
href=3D"mailto:[EMAIL PROTECTED]"[EMAIL PROTECTED]/A/FONT/DIV=
/BODY/HTML

--=_NextPart_000_01A1_01BFADD5.6515A5A0--

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



RE: = in mail sent through cfmail tag

2000-04-24 Thread Joel Richards

--=_618824==_.ALT
Content-Type: text/plain; charset="us-ascii"


I have been having the same problem. Somewhere -- I think it was on this list
-- I picked up these two tags. They take care of the problem. insert them
inside your cfmail tag, but before the message body. 
cfmailparam name="Content-Transfer-Encoding" value="quoted-printable"
cfmailparam name="Mime-Version" value="1.0" 
Hope this helps
Joel


At 10:48 PM 4/24/00 +0930, Leong Yew wrote:
Thanks for the prompt reply.

I'd better clarify. No I wasn't referring the "="s appearing on this list.
The problem seems to be occuring on quite often regardless of where I've
been sending my messages.

-Original Message-
From: Fred Sanders [mailto:[EMAIL PROTECTED]]
Sent: Monday, April 24, 2000 10:39 PM
To: [EMAIL PROTECTED]
Subject: Re: "=" in mail sent through cfmail tag


If your referring to it happening on the list, it more likely being caused
by the fact that support for all MIME types has been turned off on the mail
server for this list.  Due to an outbreak of a script virus that got past
the servers virus protection not too long ago, it was disabled so that no
attachments would come through.

Fred T. Sanders
Galveston Island, TX
--
Having a bad day?
Imagine this...

You are in total seclusion from that hectic place called "The World".
The soothing sound of a gentle waterfall fills the air with a cascading
serenity.
The water is clear.
You can easily make out the face of the person you are holding underwater.

Feeling better?


- Original Message -
From: "Leong Yew" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, April 24, 2000 8:02 AM
Subject: "=" in mail sent through cfmail tag


 Dear list members,

 Several weeks ago someone posted a message to the list concerning the
 appearance of "=" signs in mail that has been sent through the CFMAIL tag.
I
 vaguely remember someone responding to this as a result of CF wordwrapping
 the message body at certain intervals. Does anyone have a way around this
 problem? I tried relocating the discussion thread on the cf-talk archive
at
 egroups.com, but that hasn't been updated since Feb.

 Thanks

 Leong

 --

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


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

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

Joel Richards
Web Developer
Brainstorm Industries
http://www.brainstormin.net/[EMAIL PROTECTED]
--=_618824==_.ALT
Content-Type: text/html; charset="us-ascii"

htmldivI have been having the same problem. Somewhere -- I think it
was on this list -- I picked up these two tags. They take care of the
problem. insert them inside your cfmail tag, but before the message body.
/div
divlt;cfmailparam name=quot;Content-Transfer-Encodingquot;
value=quot;quoted-printablequot;gt;/div
divlt;cfmailparam name=quot;Mime-Versionquot;
value=quot;1.0quot;gt; /div
divHope this helps/div
divJoel/div
br
br
divAt 10:48 PM 4/24/00 +0930, Leong Yew wrote:/div
divgt;Thanks for the prompt reply./div
divgt;/div
divgt;I'd better clarify. No I wasn't referring the quot;=quot;s
appearing on this list./div
divgt;The problem seems to be occuring on quite often regardless of
where I've/div
divgt;been sending my messages./div
divgt;/div
divgt;-Original Message-/div
divgt;From: Fred Sanders
[a href="mailto:[EMAIL PROTECTED]" 
EUDORA=AUTOURLmailto:[EMAIL PROTECTED]/a]/div
divgt;Sent: Monday, April 24, 2000 10:39 PM/div
divgt;To: [EMAIL PROTECTED]/div
divgt;Subject: Re: quot;=quot; in mail sent through cfmail
tag/div
divgt;/div
divgt;/div
divgt;If your referring to it happening on the list, it more likely
being caused/div
divgt;by the fact that support for all MIME types has been turned off
on the mail/div
divgt;server for this list.nbsp; Due to an outbreak of a script virus
that got past/div
divgt;the servers virus protection not too long ago, it was disabled
so that no/div
divgt;attachments would come through./div
divgt;/div
divgt;Fred T. Sanders/div
divgt;Galveston Island, TX/div
divgt;--/div
divgt;Having a bad day?/div
divgt;Imagine this.../div
divgt;/div
divgt;You are in total seclusion from that hectic place called
quot;The Worldquot;./div
divgt;The soothing sound 

Re: What happened to this list?

2000-04-24 Thread Earl, George

What has happened to this list is the same thing that has happened to the
Internet as a whole over the last 10 years, and especially over the last
five years. It's no longer the small, tightly-knit community of computer
geeks, propeller heads, techies and scientists that it was in those days.
Now everyone who has access to a PC has access to the Internet and we are
seeing the requisite influx of bad apples.

Used to be the CF community was pretty small and this list and the Allaire
forums were correspondingly small but they were all meat and everyone knew
each other and it was a nice place to be. As the CF user community has grown
(a good thing) we have had the same requisite influx of bad apples (a bad
thing).

Every list and newsgroup that I have ever belonged to or visited has gone
through the same thing. There are dozens of people who used to be gurus of
some sort or another on these lists and newsgroups who have fallen by the
wayside as the Internet has exploded. I miss these people and I wonder where
they are?

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



RE: Cybercash Merchant Kit

2000-04-24 Thread Andrea W

I went thru the exact same thing about a year ago...cybercash tech support 
is remarkably poor, and docs are not very helpful. Anyhow, you CAN get it to 
work, and if you tell me of a specific problem you encounter along the way, 
I can probably help you out. Offhand, I recall that there is a very specific 
way that you must pass the expiration date to cybercash, otherwise it finds 
the card invalid.


Andrea


Original Message Follows
From: "Bill Plummer" [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: RE: Cybercash Merchant Kit
Date: Mon, 24 Apr 2000 08:29:38 -0400

Good luck, I worked through this one about 6 months ago.  It was painful and
full of poor documentation and Cybercash tech support answering 1/2 a
question each time you called.  The whole process took me several weeks.

For your sake, I hope it's improved a bunch:-)

PS:  It did work well after all was said and done...

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Sunday, April 23, 2000 4:15 PM
To: [EMAIL PROTECTED]
Subject: Cybercash Merchant Kit


Hello Everyone,

Happy Easter!

Does anyone know of a concise and clear resource/guide for cybercash
installation and implementation(w/ coldfusion sites)?  I am reading through
the one from cybercash.com site and a little overwhelmed at the volume of
reading.

Any suggestions are greatly appreciated...

Thanks,

Nehal

  
--

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


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


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

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=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

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



RE: Cookies disappear

2000-04-24 Thread Lon Lentz


 From: cfm [mailto:[EMAIL PROTECTED]]

 I have created a dynamic site where I tried to save a lot of the dynamic
information in cookies.
 At any 1 time there could be about 25 cookies.  None of them are very
large, each holding a max of
 about 45 bytes.  This dynamic information is stuff like a cookie for the
main font color,  a cookie
 for the main domain url, etc.  These cookies are pulled up on every page.



  Cookies are limited to 20 per domain. The 21st cookie will cause the first
one to be purged. I
 believe that the max memory size for all of your site's cookies is 4k.



Lon Lentz
Applications Developer - GetLists.Com
DataWarehousing and List Sales - Market your lists on the Net!
[EMAIL PROTECTED]
941-541-9000 Ext. 210

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



Question about Netscape

2000-04-24 Thread tosmith



I am doing a form to query information from a database (access).  Having it
return information in text boxes.  Well it works just fine in IE but, when
it goes to display the returned information in netscape.  It does not show
up, but in the view source it is there.  Just not showing up.  Any ideas
what the problem could be other than netscape has went down hill.  I am
using 4.7 netscape.



Tony Smith
   IBM Learning Services
   3100 Windy Hill Road
   Marietta GA   30339
   770-835-3155
   t/l 596-3155


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



RE: stupid HTML question

2000-04-24 Thread Lennon Chris Contractor SA-ALC/ADTIC

Cool, now I know a couple ways around this HTML idiosyncrasy.  Thanks to
everyone who responded to my question.

Chris Lennon
Senior Software Engineer
A Terra Nova Design Technologies, Inc.


-Original Message-
From: David L. Rice [mailto:[EMAIL PROTECTED]]
Sent: Sunday, April 23, 2000 2:50 PM

Julia's version will work of course. However, I have a tendency not to nest
tables unless there is absolutely no other means of accomplishing an end.
What I would do (and this would be so much more elegant in DHTML of
course... ;)):

!--- Since left is the default "flow" of the first table onto the page, you
really don't need to use alignment in the first
table unless you simply wish to be explicit. ---
TABLE ALIGN="left"
TR
TDHello/TD
/TR
/TABLEBR CLEAR="all"

!--- If you wish a little space between the tables. ---
Pnbsp;/

TABLE ALIGN="center"
TR
TDHello/TD
/TR
/TABLE

As I said, not the most elegant of examples but if I understand what you
want correctly, this would be an alternative
solution. There are as many ways to accomplish this as there are developers,
btw...

Good luck!

Cheers,
--
David L. Rice
Web Development Consultant
[EMAIL PROTECTED]
Q: 177820
24/7 cell: 770.354.5953


 -Original Message-
 From: Julia Green [mailto:[EMAIL PROTECTED]]
 Sent: Sunday, April 23, 2000 3:07 PM
 To: [EMAIL PROTECTED]
 Subject: Re: stupid HTML question


 That's easy enough...

 table name="table1" align="left
   ...

 table name="table2" align="center"
 ...
 /table
 /table


 Julia Green
 Julia Computer Consulting
 http://www.juliagreen.com/
 Email:  [EMAIL PROTECTED]
 Phone:  617-926-3413
 FAX:  413-771-0306
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



SQL.LIKE question

2000-04-24 Thread Alex Puriche

cf-talk,

  I'm _Sorry_ for my poor English.

  Simple code:

cfset sql_search_string="'%"#replace(form.keywords, " ", "%','%","ALL")#"%'"
cfquery datasource="#application.dsn_name#" name="results"
SELECT  iArticleID, dtFileDate
FROMArticle
WHERE   vchTitle LIKE (#PreserveSingleQuotes(sql_search_string)#)
OR  vchKeywords  LIKE (#PreserveSingleQuotes(sql_search_string)#)
OR  txBody   LIKE (#PreserveSingleQuotes(sql_search_string)#)
OR  vchDesc  LIKE (#PreserveSingleQuotes(sql_search_string)#)
ORDER BYdtFileDate DESC
/cfquery  

Database contain string 
President Clinton's Presidency has been a failure
in the one area that really matters: foreign policy. 

I enter word  President  in search form and #results.recordcount#
give me 0.

Or string  Bill Clinton USA   (keyword  Clinton ) with the same results.


vchTitle, vchKeywords, vchDesc - field type 'Text'
txBody - field type 'Memo'

Database - MS Access '97

  Question: what is wrong? Last 16 hours didn't give my sense of
  relief.

-- 
 Regards,
 Alex  mailto:[EMAIL PROTECTED]

Certified HTML Programmer,
Java Script Programmer and
High IT Aptitude Specialist.
http://www.brainbench.com/transcript.jsp?pid=145368

Certified Cold Fusion 4.1 Programmer.
http://www.ecertifications.com/

Permanent FAQ Team player.
http://faq.worldrecovery.com/

Permanent MTeam player.
http://members.tripod.com/mteam1/


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



RE: Question about Netscape

2000-04-24 Thread Olive, Christopher M Mr USACHPPM

without seeing your code, it's hard to say, but NS is VERY picky about
proper HTML.  i'd be willing to bet that you need "'s around your values.
like this.

INPUT NAME="fred" VALUE="#somevalue#"

Chris Olive
DOHRS Website Administrator
[EMAIL PROTECTED]


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Monday, April 24, 2000 10:42 AM
To: [EMAIL PROTECTED]
Subject: Question about Netscape




I am doing a form to query information from a database (access).  Having it
return information in text boxes.  Well it works just fine in IE but, when
it goes to display the returned information in netscape.  It does not show
up, but in the view source it is there.  Just not showing up.  Any ideas
what the problem could be other than netscape has went down hill.  I am
using 4.7 netscape.



Tony Smith
   IBM Learning Services
   3100 Windy Hill Road
   Marietta GA   30339
   770-835-3155
   t/l 596-3155



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



Re: Cookies disappear

2000-04-24 Thread Fred Sanders

I thought it was 4k per cookie.
- Original Message -
From: "Lon Lentz" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, April 24, 2000 8:10 AM
Subject: RE: Cookies disappear




   Cookies are limited to 20 per domain. The 21st cookie will cause the
first
 one to be purged. I
  believe that the max memory size for all of your site's cookies is 4k.



 Lon Lentz
 Applications Developer - GetLists.Com
 DataWarehousing and List Sales - Market your lists on the Net!
 [EMAIL PROTECTED]
 941-541-9000 Ext. 210


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



RE: Question about Netscape

2000-04-24 Thread Bill Killillay

The display issue in Netscape could be anywhere in your code, not just your
form.  Check for any missing closing tags on Font's, tables, etc.  If
Netscape does not see a closing tag it does not display anything at all.  IE
is a bit more forgiving.  I would start by checking for any missing or
messed up HTML tags, I would venture a bet that it's something like that.
Has been my experience in the past anyway.  Hope that helps some...

Bill

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
 Sent: Monday, April 24, 2000 10:42 AM
 To: [EMAIL PROTECTED]
 Subject: Question about Netscape




 I am doing a form to query information from a database (access).
 Having it
 return information in text boxes.  Well it works just fine in IE but, when
 it goes to display the returned information in netscape.  It does not show
 up, but in the view source it is there.  Just not showing up.  Any ideas
 what the problem could be other than netscape has went down hill.  I am
 using 4.7 netscape.



 Tony Smith
IBM Learning Services
3100 Windy Hill Road
Marietta GA   30339
770-835-3155
t/l 596-3155


 --
 
 Archives: http://www.eGroups.com/list/cf-talk
 To Unsubscribe visit
 http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf
_talk or send a message to [EMAIL PROTECTED] with
'unsubscribe' in the body.

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



Re: Cookies disappear

2000-04-24 Thread James Smith

I was always led to believe the limit was 15 per domain, does anyone have a
definitive answer on this as I have never needed more than 2 so I have never
tested it?

--
James Smith - [EMAIL PROTECTED]
http://ask-ted.com - Thiele Euronet Directories Limited
=
ICMP: The protocol that goes PING!


- Original Message -
From: Lon Lentz [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, April 24, 2000 2:10 PM
Subject: RE: Cookies disappear


 
  From: cfm [mailto:[EMAIL PROTECTED]]
 
  I have created a dynamic site where I tried to save a lot of the dynamic
 information in cookies.
  At any 1 time there could be about 25 cookies.  None of them are very
 large, each holding a max of
  about 45 bytes.  This dynamic information is stuff like a cookie for the
 main font color,  a cookie
  for the main domain url, etc.  These cookies are pulled up on every
page.



   Cookies are limited to 20 per domain. The 21st cookie will cause the
first
 one to be purged. I
  believe that the max memory size for all of your site's cookies is 4k.



 Lon Lentz
 Applications Developer - GetLists.Com
 DataWarehousing and List Sales - Market your lists on the Net!
 [EMAIL PROTECTED]
 941-541-9000 Ext. 210

 --

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

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



Re: Question about Netscape

2000-04-24 Thread Brandon Whitaker

I am doing a form to query information from a database (access).  Having it
return information in text boxes.  Well it works just fine in IE but, when
it goes to display the returned information in netscape.  It does not show
up, but in the view source it is there.  Just not showing up.  Any ideas
what the problem could be other than netscape has went down hill.  I am
using 4.7 netscape.

1.) Are you using CSS?
2.) Are any/all of your table cells closed correctly before the data is
supposed to display?
3.) Is the data being ouput using some obscure JavaScript write() routine,
or is it just plain ol' HTML?

Brandon Whitaker
[EMAIL PROTECTED]
---
"It'll get used by the same people using Opera.  People dressed in black
wearing berets."
- Dave Watts, on Mozilla
"The net interprets censorship as damage and routes around it."
- John Gilmore


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



Re: Question about Netscape

2000-04-24 Thread David Shadovitz

You've probably got an error in your form or table.  Can we see the code?
-David
(IBM?  Isn't that one of those new dot-com startups?)

On Mon, 24 Apr 2000 10:41:54 -0400 [EMAIL PROTECTED] writes:
 
 
 I am doing a form to query information from a database (access).  
 Having it
 return information in text boxes.  Well it works just fine in IE 
 but, when
 it goes to display the returned information in netscape.  It does 
 not show
 up, but in the view source it is there.  Just not showing up.  Any 
 ideas
 what the problem could be other than netscape has went down hill.  I 
 am
 using 4.7 netscape.
 
 
 
 Tony Smith
IBM Learning Services
3100 Windy Hill Road
Marietta GA   30339
770-835-3155
t/l 596-3155

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



RE: SQL.LIKE question

2000-04-24 Thread Russel Madere

Try:

vchTitle LIKE '%#PreserveSingleQuotes(sql_search_string)#%'

Russel Madere, Jr.
Web Developer

"Be good and you will be lonesome.
 Be lonesome and you will be free.
 Live a lie and you will live to regret it."
  Jimmy Buffett
  That's What Living Is To Me

-Original Message-
From: Alex Puriche [mailto:[EMAIL PROTECTED]]
Sent: Monday, April 24, 2000 9:47 AM
To: [EMAIL PROTECTED]
Subject: SQL.LIKE question


cf-talk,

  I'm _Sorry_ for my poor English.

  Simple code:

cfset sql_search_string="'%"#replace(form.keywords, " ",
"%','%","ALL")#"%'"
cfquery datasource="#application.dsn_name#" name="results"
SELECT  iArticleID, dtFileDate
FROMArticle
WHERE   vchTitle LIKE (#PreserveSingleQuotes(sql_search_string)#)
OR  vchKeywords  LIKE (#PreserveSingleQuotes(sql_search_string)#)
OR  txBody   LIKE (#PreserveSingleQuotes(sql_search_string)#)
OR  vchDesc  LIKE (#PreserveSingleQuotes(sql_search_string)#)
ORDER BYdtFileDate DESC
/cfquery

Database contain string 
President Clinton's Presidency has been a failure
in the one area that really matters: foreign policy. 

I enter word  President  in search form and #results.recordcount#
give me 0.

Or string  Bill Clinton USA   (keyword  Clinton ) with the same results.


vchTitle, vchKeywords, vchDesc - field type 'Text'
txBody - field type 'Memo'

Database - MS Access '97

  Question: what is wrong? Last 16 hours didn't give my sense of
  relief.

--
 Regards,
 Alex  mailto:[EMAIL PROTECTED]

Certified HTML Programmer,
Java Script Programmer and
High IT Aptitude Specialist.
http://www.brainbench.com/transcript.jsp?pid=145368

Certified Cold Fusion 4.1 Programmer.
http://www.ecertifications.com/

Permanent FAQ Team player.
http://faq.worldrecovery.com/

Permanent MTeam player.
http://members.tripod.com/mteam1/



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

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



cfx_cybercash

2000-04-24 Thread Tim Cavins

Has anyone used the CFX_CYBERCASH custom tag for orders from Canada to the
US? One of our customers reported an error in that his Canadian zipcode was
getting rejected for the credit card process. He didn't say what the
specific error was though. If someone has used this tag before, could you
please reply back and let me know how you used the CPI_CARD_COUNTRY AND
CPI_CARD_ZIP fields. We are using CAN for the country if its Canada. I
didn't find any documentation what to use, since its USA for the United
States, I figured it would be a 3 letter code for the country.

cfif GetCountry.country_id IS 1
cfset cc_billing_country="USA"
cfelseif GetCountry.country_id IS 2
cfset cc_billing_country="CAN"
/cfif
the getcountry query uses the zipcode inputted in the credit card process to
determine the country.

  CFX_CYBERCASH
VERSION="3.2"
CCPS_HOST="http://cr.cybercash.com/cgi-bin/"
CYBERCASH_ID="xx"
MERCHANT_KEY="x"
MO_ORDER_ID="#Trim(credit_card_order_id)#"
MO_VERSION="3.2.0.2"
MO_PRODUCT_DESCR="xxx"
MO_PRICE="usd #Trim(total_price)#"
CPI_CARD_NUMBER="#Trim(credit_card_number)#"
CPI_CARD_EXP="#Trim(credit_card_exp_date)#"
CPI_CARD_NAME="#Trim(cc_billing_name)#"
CPI_CARD_ADDRESS="#Trim(cc_billing_address)#"
CPI_CARD_CITY="#Trim(cc_billing_city)#"
CPI_CARD_STATE="#Trim(cc_billing_state)#"
CPI_CARD_ZIP="#Trim(cc_billing_zipcode)#"
CPI_CARD_COUNTRY="#cc_billing_country#"
OutputPOPQuery="xx"

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



RE: Working with durations in SQL and CF

2000-04-24 Thread Eron Cohen

Hi Julia,

I really appreciate your response.  I don't think I did a good enough job
explaining my problem.  I think I need something like the opposite of
"between" to do what I want to do here.  Again, the problem is that someone
is going to look at one particular day on the calendar at a time.  Its very
easy to pick up scheduled events that start or end the day that is being
looked at.  The trouble is that some events last for days or weeks.   What I
need is some clue as to how to figure out if any "ongoing" events fall on
the day in question.  I don't think I can use BETWEEN because how would I
ever know what date to start the between statement with?  An event could
have started last week, last month or last year even.  This must me a
typical problem, my brain is just a little too small to see the answer at
the moment.  For instance:

Say I have an event that starts April 1, 2000 and ends April 15th.  A user
comes along and asks to see scheduled events for April 10th.  What statement
would I use to find out if that this event does in fact fall on the 10th
(keep in mind that this is just 1 example.  My database will probably have
thousands of events starting and ending on various dates.

Eron



-Original Message-
From: Julia Green [mailto:[EMAIL PROTECTED]]
Sent: Sunday, April 23, 2000 9:25 PM
To: [EMAIL PROTECTED]
Subject: Re: Working with durations in SQL and CF


Well, first of all, if you want to use any of the DiffDate functions, or
any of the Date Functions in SQL, you must define your fields in Access
as Date fields.  You can modify the output later (to exclude the time of day
that appears when you use the date) in CFOUTPUT using DateFormat.

If you want to set up a search between 2 dates on a form, that is enter
a Start Date and a End Date on a form, and then find the date between it,
you have to use the text format in Access.

I am including beneath 2 examples of output pages I used for work, the
second
page, the dates must in Access as Date, in order for it to work, there are
alot
of other Date Functions, a good place to look for them is
www.houseoffusion.com
(good documentation there), the first is how to do a search with dates
defined
as text.  You can see a little of the SQL you required there...

CFQUERY NAME="EmpList" DATASOURCE="0707_acc_finacc_asc"



SELECT LastName, FirstName, SSNo, DateA, DateB, DateC, DateD, DateE, DateF,
DateG
FROM vac20003

  WHERE (DateA ='#Form.Date1#' AND DateA ='#Form.Date2#') OR
(DateB ='#Form.Date1#' AND DateB ='#Form.Date2#') OR
(DateC ='#Form.Date1#' AND DateC ='#Form.Date2#') OR
(DateD ='#Form.Date1#' AND DateD ='#Form.Date2#') OR
(DateE ='#Form.Date1#' AND DateE ='#Form.Date2#') OR
   (DateF ='#Form.Date1#' AND DateF ='#Form.Date2#') OR
(DateG ='#Form.Date1#' AND DateG ='#Form.Date2#') AND
(OpCtr='#OpCtr#')
ORDER BY LastName ASC
  /cfquery
HTML
HEAD

BODY bgcolor="#FF"

TITLEVacation Search Results by Center/TITLE
/HEAD



CENTERTABLE BORDER="1" CELLSPACING=4 CELLPADDING=7 WIDTH=670 height="30"
TRTD WIDTH="642" VALIGN="CENTER" HEIGHT=45
biPAYROLL DEPARTMENT/UPS/iBR
I15 ARLINGTON STREET, WATERTOWN MAnbsp;nbsp; 02472/I/b/TD
/TR
/TABLE
/CENTER
HR
H1 align="center"Vacation Search Results/H1


center
pbUNITED PARCEL SERVICE - NEW ENGLAND DISTRICTS/b/p
pbNON-UNION VACATION SCHEDULE/b/p
pb2000/b/p
pnbsp;/p
/center
p align="left"bVacations are selected by length of service with
company./b/p
p align="left"bNon-union employees can opt to use 1 week in
days./b/p
p align="left"bNote in the no of wks column as follows: (3+1) - employee
has
4 week avail. is taking 1 week in days./b/p
p align="left"bLegend:  X=vacation week/b/p

CFOUTPUT QUERY="EmpList"

b#LastName# #FirstName#br  #SSNo#br
b#DateA#  #DateB#  #DateC#  #DateD#  #DateE#  #DateF#  #DateG#br




/CFOUTPUT

cfoutput
#DateFormat(CreateODBCDate(DateA), "mm/dd/")#
#DateFormat(CreateODBCDate(DateB), "mm/dd/")#
/cfoutput
cfoutput
CFIF #Abs(DateDiff("d", DateB, DateA))# less than 22
pThese weeks are back to back.
cfelse
pNo Information.
/cfoutput

/cfif
P
bThank you for searching the Vacation Posting Database!/b/P
HR
/CENTER

/BODY

/HTML



CFINSERT DATASOURCE="0707_acc_finacc_asc" TABLENAME="vac20003"


cfoutput
CFIF #Abs(DateDiff("d", DateB, DateA))# less than 22
pThese weeks are back to back.
cfelse
pNo Information.

/cfif
/cfoutput




h3Your vacation information has been successfully added to the database.
pPlease print this out for your records (Legal Paper is Recommended) and
for later reference and lookup from the database search.
/h3

HR
CFOUTPUT
pbDate Information Entered: #Date#
pbCFIF Len(LastName) greater than 0Employee Full Name: #LastName#
#FirstName#
CFELSEpbEmployee Full Name:  Information is Not Available./CFIF
pbCFIF Len(SSNo) greater than 0pbSocial Security No: #SSNo#
CFELSEpbSocial Security No:  Information is Not Available./CFIF
pbCFIF Len(HireDate) greater than 0pbHireDate: #HireDate#
CFELSEpbHire Date:  Information is Not Available./CFIF
pbCFIF Len(NoWeeks2) 

Re: SQL.LIKE question

2000-04-24 Thread Brandon Whitaker

  I'm _Sorry_ for my poor English.

No worse than some native English speakers I could mention, so no apology
necessary. :)

  Simple code:

Whenever I've used LIKE in the past, I've never used parentheses around the
expression; it was always expressed as

SELECT foo FROM bar WHERE foo LIKE 'baz';

...granted, that's just on Oracle.  Access might differ.

Have you tried it encapsulating each expression of your match in
parentheses, like below?

WHERE (vchTitle LIKE #PreserveSingleQuotes(sql_search_string)#)
OR  (vchKeywords  LIKE #PreserveSingleQuotes(sql_search_string)#)
OR  (txBody   LIKE #PreserveSingleQuotes(sql_search_string)#)
OR  (vchDesc  LIKE #PreserveSingleQuotes(sql_search_string)#)

HTH...HAND.

Brandon Whitaker
[EMAIL PROTECTED]
---
"It'll get used by the same people using Opera.  People dressed in black
wearing berets."
- Dave Watts, on Mozilla
"The net interprets censorship as damage and routes around it."
- John Gilmore


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



RE: Question about Netscape

2000-04-24 Thread Lon Lentz

 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]

 I am doing a form to query information from a database (access).  Having
it
 return information in text boxes.  Well it works just fine in IE but, when
 it goes to display the returned information in netscape.  It does not show
 up, but in the view source it is there.  Just not showing up.  Any ideas
 what the problem could be other than netscape has went down hill.  I am
 using 4.7 netscape.


   Without looking at the code, my guess is that some of the html tags are
probably not
  complete. IE is a lot more forgiving about incomplete code than NS is.
Make sure your tags are
  4.0 compliant and complete. Same with any JS you might be using.


Lon Lentz
Applications Developer - GetLists.Com
DataWarehousing and List Sales - Market your lists on the Net!
[EMAIL PROTECTED]
941-541-9000 Ext. 210

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



Re: Form Dilemma

2000-04-24 Thread John Quarto-vonTivadar

Jeff,

check out an article in a recent issue of CFDJ which talked about creation
of form wizards. That will get you pointed in the right direction. The
tricky part will be deciding where to put querys: on each page of the form
as needed, or all done at once during the initial wizard screen in which
case you will have to pass along the query result set (probably with WDDX)


 I want to make a multiparted form, lets say 5 mini-forms to eliminate =
 one large form. You would get put into the first mini-form and be able =
 to move throughout these parts by clicking on graphic buttons instead of =
 submit buttons. It would update any changes if made. Then on the last =
 mini-form it would actually process it and do what I need it to do.



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



Re: HTTP request and CGI variables

2000-04-24 Thread Andrea W

Well, their app that is processing the submission and checking for 
USER_AGENT is not within the html page. So there is no way to really see 
what it is doing with all the form values once they are submitted.

Andrea


Original Message Follows
From: "Fred Sanders" [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: Re: HTTP request and CGI variables
Date: Mon, 24 Apr 2000 09:31:29 -0500

Why not physically go to the page, view source and match up parameter to
exactly what they're using.  Oh just thought of something, is the page using
frames?

- Original Message -
From: "Andrea W" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, April 24, 2000 8:45 AM
Subject: Re: HTTP request and CGI variables


 
  Pan,
 
  That is a good point. I just tried that. It still doesn't work - I also
  tried getting rid of the http_ as another person on this list 
recommended,
  and that does not work either. Could be that I am still not feeding it 
the
  exact user agent value it is looking for...
 
  Andrea
 
  Original Message Follows
  From: "pan" [EMAIL PROTECTED]
  Reply-To: [EMAIL PROTECTED]
  To: [EMAIL PROTECTED]
  Subject: Re: HTTP request and CGI variables
  Date: Sat, 22 Apr 2000 21:21:33 -0700
 
 
  From: Andrea W [EMAIL PROTECTED]
 
 
 
I am sending an http request using cfhttp to register a user on a
remote
site - the remote site is using asp. The asp code is looking for the
  browser
type in the cgi variables. I am sending it the browser type as 
follows:
   
cfhttp
   
 
url="http://remote.server.com/signup/signup.asp?username=andreapassword=ses
ame"
method="post" resolveurl="true"
   
CFHTTPPARAM TYPE="CGI" NAME="HTTP_USER_AGENT" VALUE="Mozilla/4.0
(compatible; MSIE 5.01; Windows NT)"
   
/cfhttp
   
But the remote app is still balking and claiming that I have an old
  browser
version. Does anyone know if there is some way that using the cfhttp
tag
  can
tack on some cgi variables that cannot be overridden by the
cfhttpparam?
  I
have shown this code to the asp developer who wrote the code that
accepts
the user registration, and he said the HTTP_USER_AGENT variable looked
correct and is what his app is looking for.
   
 
  Have you tried setting the user_agent to an older version?
  Might be that the receivning app isn't filtering correctly
  for 5.01 
 
  Pan
 
 
  
--

  Archives: http://www.eGroups.com/list/cf-talk
  To Unsubscribe visit
  http://www.houseoffusion.com/index.cfm?sidebar=listsbody=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
 
  
--

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

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=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

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



Re: New Public Beta Release of exciting new automatic FORM CREATION tag!

2000-04-24 Thread Carter Development

please no.  please oh please no.  :)

Sincerely,
Shawnea Carter
- Original Message -
From: "Jim Taylor" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Sunday, April 23, 2000 11:27 PM
Subject: RE: New Public Beta Release of exciting new automatic FORM CREATION
tag!


 so do we all promote our tags here or what ..:):)

 -Original Message-
 From: Fred Sanders [mailto:[EMAIL PROTECTED]]
 Sent: Sunday, April 23, 2000 6:33 PM
 To: [EMAIL PROTECTED]
 Subject: Re: New Public Beta Release of exciting new automatic FORM
 CREATION tag!


 GRR

 Fred T. Sanders
 Galveston Island, TX
 --
 Having a bad day?
 Imagine this...

 You are in total seclusion from that hectic place called "The World".
 The soothing sound of a gentle waterfall fills the air with a cascading
 serenity.
 The water is clear.
 You can easily make out the face of the person you are holding underwater.

 Feeling better?


 - Original Message -
 From: "Brian Bray" [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Sunday, April 23, 2000 6:34 PM
 Subject: New Public Beta Release of exciting new automatic FORM CREATION
 tag!


 
  Hello,
 
  I am excited to announce the first public beta version of a new set of
  custom tags called Incredibly Powerful Form Manager for
  ColdFusion ('CFIPFM').
 
  To learn more about CFIPFM please read on.  In addition much
  documentation is available (and more is on the way) at:
  http://www.cfipfm.com.  In particular you will find the About -
  Philosophy page and the Support - Documenatation pages to be the most
  helpful.
 
  About CFIPFM
  
 
  Incredibly Powerful Form Manager for ColdFusion ("CFIPFM") is a set of
  custom tags that helps you create high-quality, web-based forms by
  providing a rich set of features and tools for designing and displaying
  the web-based forms. CFIPFM drastically reduces development time over
  normal hand-coded web-based forms by generalizing form definitions,
  performing automatic data validation, reusable forms and form components
  and dynamically generating database queries.
 
  CFIPFM will drastically reduce development time (up to 60%) while
  simultaniously improving overall site quality.  Thoes who have used it
  already cant praise it enough!
 
  CFIPFM is also extremely extensible and customizable. All HTML output is
  generated dynamically from global or local form "styles". These styles
  allow you to control EVERY HTML tag and tag parameter that is generated
by
  CFIPFM, allowing you infinite control over the "look and feel" of your
  web-based forms.
 
  Additionally, large portions of the code can be re-written to perform
  entirely different tasks. You could create new "widgets" or form element
  types to suit your needs or you could completely re-write the database
  toninterface and change it to a email form if you wanted to! CFIPFM can
  adapt to most any web-based form circumstances.
 
 
  Beta Evaluation
  ===
 
  CFIPFM is in working order. It is already being used on several sites
that
  my colleagues and I are working on. The problem is that CFIPFM has not
had
  exposure to a wide range of applications, platforms and databases. The
  purpose of the beta program is to find and eliminate major bugs and to
  adapt CFIPFM to handle a wide range of situations and scenarios that it
  have not yet been encountered before a version is made available for
  purchase.
 
  Beta testers get the opportunity to influence the product development.
In
  addition people who provide exceptional feedback and comments will be
  rewarded with a free single domain license.
 
  Download and Test
  =
 
  To download the beta evaluation goto: http://www.cfipfm.com/download/
 
  You can read more about the beta evaluation version at:
  http://www.cfipfm.com/beta/
 
 
  Sincerely,
  Brian Bray
  CFIPFM Author
 
 
 
 
 
 
 
 
 
 

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

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

 --

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


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 

Odd date function behavior

2000-04-24 Thread Jeff Beer

Hello all,

Using the following

 cfset olddate = DateFormat(DateAdd("d", -30, Now()))

works as expected.

What's odd is the original code was written like this:

 cfset olddate = DateFormat(DateAdd("d", Now(), -30))

This didn't produce an error, either in the cfset, or in the query where
'olddate' was used.

Both formats return 3/25/2000.

From the docs, the correct syntax is DateAdd(datepart, number, date), as in
the first example.

Am I missing something here?



-
Jeff Beer
Programmer
Hydrogen Media, Inc.
www.hydrogenmedia.com
Phone:  888.890.9175
Fax:  727.530.5588



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



Re: Question about Netscape

2000-04-24 Thread Dana Larose

Netscape won't display form elements (like text boxes) unless there is a
form tag.  Are you using one?  If not, try putting:

form
...
/form

around your text boxes.

(Failing that, make sure you have closed all your tables)

Dana

-Original Message-
From: [EMAIL PROTECTED] [EMAIL PROTECTED]
To: [EMAIL PROTECTED] [EMAIL PROTECTED]
Date: Monday, April 24, 2000 9:50 AM
Subject: Question about Netscape




I am doing a form to query information from a database (access).  Having it
return information in text boxes.  Well it works just fine in IE but, when
it goes to display the returned information in netscape.  It does not show
up, but in the view source it is there.  Just not showing up.  Any ideas
what the problem could be other than netscape has went down hill.  I am
using 4.7 netscape.



Tony Smith
   IBM Learning Services
   3100 Windy Hill Road
   Marietta GA   30339
   770-835-3155
   t/l 596-3155


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


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



Application to test CFMAIL performance?

2000-04-24 Thread Steve Goldenberg

Dear CF users,

Does anyone know of an application that will let you test CFMAIL with a high
number of requests? I would like to test some code by sending out
1,000-2,500 emails, but I don't have a huge list available to me, nor do I
want to spam 2,500 people with a "Just testing, sorry!" email. Do you know
of any application that can do anything like this?

Thanks for the help,

-Steve Goldenberg
Interfolio.com
4300 Old Dominion Dr.
Suite 901
Arlington, VA 22207
p: 703.522.4004
f: 209.315.7319

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



Cost to attend CF Developer conference

2000-04-24 Thread Earl, George

Does anyone remember what the cost per person was to attend last year's CF
Developer conference in Boston? We are requesting funds to go to this year's
conference in DC in November and I need a ballpark figure to submit. (Looks
like this information isn't available yet at Allaire's site.)

Thanks.

George Earl
Computer Specialist
Social Security Administration
DCS\OIM\DMISD\WMB
(410) 965-5198
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: What happened to this list?

2000-04-24 Thread Gregory Weiss

This is a good idea, as long as people don't get carried away.  People tend
abuse such power, a la, Salem Witch Hunt Trials.  My analogy is a bit
extreme maybe, but overall you have a good idea.

-Original Message-
From: Allen [mailto:[EMAIL PROTECTED]]
Sent: Thursday, April 20, 2000 5:14 PM
To: [EMAIL PROTECTED]
Subject: Re: What happened to this list?


maybe a central flame-post web site could be set up.  anyone who receives
what they feel is a rude email, could send it to a moderator.  then the
moderator could post it if it's meets some criteria.  maybe people would
think twice about being an a**h*le if they realized that the programming
community in general had a means of seeing what they had done.

- Original Message -
From: "Chris Lott" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, April 20, 2000 4:01 PM
Subject: Re: What happened to this list?


 Just compare some of the responses about structures:

 ***
 From one response:
 "Wow, I feel so enlightened! Imagine all the wasted time I've spent using
 structures!

 Every stop to consider that structures can be members of structures, or
that
 you can have arrays of structures? ..."
 ***

 ***
 From Kevin's:
 "I totally understand what you're saying.  When I first considered
 structures, they seemed like really complicated mechanisms for holding
data
 that could be just as easily placed into a query or a list.

 What I've found, however..."
 ***

 This is not to pick on the person who posted the first example (he
 contributes a lot of good stuff to this group!) byt to illustrate the
range
 of responses. Which one is more likely to generate a flurry of debate
 defenerating into flames?

 c
 --
 Chris Lott [EMAIL PROTECTED],  Technical Manager
 p907.474.5122  |  f907.474.5402  |  PGP Key ID: 0x8687E87E


 --

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



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



Database Failover

2000-04-24 Thread Noel Rappin

Here's my situation.  The client wants support for disaster and fail over 
on both the web server and database side.

Specifically, they want the cold fusion app to be able to dynamically point 
to the backup database if the primary one is down.  The snippet that was I 
given as a sample polls the databases in the Application.cfm file as follows:

Run test query on primary database
if query is successful
set application.dsn to primary
else
run test query on secondary
if query is successful
   set application.dsn to secondary
else
return error message
endif
 endif

My concern is for the efficiency and load implications of this.  Will this 
slow my app down substantially?  Would running this snippet every minute or 
so as a background task be better?  Is there a better way?

Thanks,

Noel Rappin



Noel Rappin ([EMAIL PROTECTED])
Echobridge

New address and phone:
447 Moody Street
Waltham, MA 02452
Phone: 781 642 0862
Fax: 781 642 1236

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



front ending a web-based Access db

2000-04-24 Thread Kathleen Ballard

Dear List,
I have a client who would like me to front-end the Access databases used on
the website with a local Access database.  This would be for ease in
creating printed reports.

I have done this fairly easily with a mySQL db, but don't see how to do it
with an online Access backend.  The site is hosted on NT and uses cf to
acces the databases.

If anyone could point me in the right direction, I would really appreciate
it.

Kathleen


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



RE: What happened to this list?

2000-04-24 Thread Gregory Weiss

I ## THAT, what ever number I am in agreement with the other developers on
this list.

Thanks,

Greg

(Fred, I'm calmer already...)

:-)

-Original Message-
From: Fred Sanders [mailto:[EMAIL PROTECTED]]
Sent: Sunday, April 23, 2000 6:36 PM
To: [EMAIL PROTECTED]
Subject: Re: What happened to this list?


HERE HERE! I SECOND THAT!

Fred T. Sanders
Galveston Island, TX
--
Having a bad day?
Imagine this...

You are in total seclusion from that hectic place called "The World".
The soothing sound of a gentle waterfall fills the air with a cascading
serenity.
The water is clear.
You can easily make out the face of the person you are holding underwater.

Feeling better?


- Original Message -
From: "Steve Reich" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Sunday, April 23, 2000 5:30 PM
Subject: Re: What happened to this list?


 I am demanding that you post his name to the list. It is a disservice to
the
 rest of us if you let him keep his anonymity. Let him suffer the global
 consequences for his actions. If there's a fox in the hen house, we all
have
 a right to know who it is and adjust accordingly.


 - Original Message -
 From: "Michael Dinowitz" [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Sunday, April 23, 2000 3:27 AM
 Subject: Re: What happened to this list?


  Wrong reply to the wrong message. I'm very upset at hearing this story
and
  if/when I find out who the 'helper' was, I'm defiantly going to ban
 him/her
  from the list.
 
 
   Went down for the holidays. :)
   Actually, the safeguards I had in place were not enough. It seems that
   post.office has a major problem when dealing with certain formatted
  emails.
  
  
On 4/20/00, Michael Blair penned:
Try this one...

Recently I posted a question I had to the list
and no one responded. Not a big deal, everyone
has a life. Today the owner of the company I
work at brought me a copy of an email he
recieved from someone on this list... it
basically said that the programmer he had hired
was unable to accomplish a minor task like the
one I mentioned, and he had, out of the goodness
of his heart, searched out the company to offer
his skills should my company wish to 're-think
the current development staff'.

My boss reminded me that I should be careful of
the people I associate with, and left it at
that. Aren't I lucky!
   
You could have told your boss, "Well yeah, but obviously this guy
doesn't know EVERYTHING or he wouldn't be subscribed to a help list
either". :)
   
   
Bud Schneehagen - Tropical Web Creations
   
_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
ColdFusion Solutions / eCommerce Development
[EMAIL PROTECTED]
http://www.twcreations.com/
954.721.3452
  
 

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

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

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

 --

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


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



RE: What happened to this list?

2000-04-24 Thread Gregory Weiss

Sorry to hear about this incident Marcus.  Hopefully, justice will be served
you.  (Or maybe just a good old fashioned beat-down!)

Take care,

Gregory L. Weiss
Web Development Project Leader
Trapezoid, Inc.
4107 Laguna Street
Coral Gables, Florida 33146
(305) 442-8060 x230
[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] 


-Original Message-
From: marcusa [mailto:[EMAIL PROTECTED]]
Sent: Monday, April 24, 2000 10:23 AM
To: [EMAIL PROTECTED]
Subject: RE: What happened to this list?


 I am demanding that you post his name to the list. It is a disservice to
 the
 rest of us if you let him keep his anonymity. Let him suffer the global
 consequences for his actions. If there's a fox in the hen house, we all
 have
 a right to know who it is and adjust accordingly.

 Umm...'scuse me, but in the spirit of repeated requests to return
 this list
 back to its formerly non-confrontational state, do you think you *might*
 consider backing down off the Torquemada routine a little bit?  I
 want this
 jackass outed as much as you, and MANY here have voiced a similar desire -
 but making brash (and futile, and impotent) "demands" is more likely to
 dissuade compliance than encourage it.

 If Dr. Kiel wishes to share the name of the misbegotten little
 rat sh*t with
 us, he will.  If he doesn't, he won't.  It's that simple.  Ultimately the
 decision is his.

 To Dr. Kiel: put yourself in our positions - you know you'd want to feel
 like you could safely ask a simple question without some
 underhanded little
 trouser-stain putting your job at risk.  I can see how you'd find
 it a point
 of honor to place yourself above this person - that revealing his
 name would
 be invading his privacy and, in some way, might put you on the same moral
 level as him.

 This isn't the case, I assure you.  This person, and anyone like him, is a
 threat to the community we have set up.  HE chose this road; you're not
 burning his privacy, your helping the rest of us maintain our OWN privacy.

Everyone... please understand.

first... I just dropped my original box, and have been spending my time
getting windows 2000 up on this new one, hence I haven't had a chance to
read email.

second... I also would love to know the name of the person that did this.
However, my boss, fearing I would use certain dubious skills to 'rip' that
persons connection from the internet as we know it, has chosen to show me
the email, sans originators name. So at this point in time I am as much in
the dark as to his identity as anyone here.

Trust, that if and when I do find out, I will splatter his name across every
venue I can possibly imagine... starting of course with this news list.

Marcus


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



RE: Question about Netscape

2000-04-24 Thread david

Is your form within a table?  If Yes, you are missing a close table tag
/table

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Monday, April 24, 2000 7:42 AM
To: [EMAIL PROTECTED]
Subject: Question about Netscape




I am doing a form to query information from a database (access).  Having it
return information in text boxes.  Well it works just fine in IE but, when
it goes to display the returned information in netscape.  It does not show
up, but in the view source it is there.  Just not showing up.  Any ideas
what the problem could be other than netscape has went down hill.  I am
using 4.7 netscape.



Tony Smith
   IBM Learning Services
   3100 Windy Hill Road
   Marietta GA   30339
   770-835-3155
   t/l 596-3155



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

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



Re: stupid HTML question

2000-04-24 Thread Benjamin Smedberg

 What I want is one table under the other, with the second one centered on
 the screen.  What I get is the two tables glommed together, side by side.
 How do I circumvent this odd HTML behavior?  Mucho thanks in advance.

Actually, this is a wonderful tool of HTML. The ALIGN="left" (or "right")
attribute is a great way to construct navigation bars on the side of the
screen without using nested tables (which render slowly) or frames (which
are nasty).

TABLE align="left"
!-- A tall,narrow navigation table... --
/TABLE
TABLE
!-- the main content here --
/TABLE

Another trick for your original problem is to wrap your tables in a DIV;
this won't "float" the table to the left, but rather merely align it to the
left:

DIV ALIGN="left"
TABLE
!-- stuff --
/TABLE
/DIV

DIV ALIGN="center"
TABLE
!--other stuff --
/TABLe
/DIV


+
+ Benjamin Smedberg
+ CUA Web Developer
+ [EMAIL PROTECTED] - http://computing.cua.edu/as/bds/
+
+ He is risen, as He said! Alleluia!
+


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



RE: What's the use of structures, anyway?

2000-04-24 Thread Reuben King

In 003801bfacf2$1c67a1c0$[EMAIL PROTECTED], Mike Sheldon 
([EMAIL PROTECTED]) in a fit of unbridled passion, wrote:
 You are correct, you cannot store complex data directly in a client
 variable. However, all is not lost, you can serialize the structure using
 WDDX, store it in the client variable, and deserialize it when you read it
 back.
 
 This, of course, also applies to any situation where you need to store
 structures or arrays in a database field.

What a kick-ass usage of WDDX.  You learn something new every day!  
Thanks!!

-R

 
 Michael J. Sheldon
 Internet Applications Developer
 Phone: 480.699.1084
 http://www.desertraven.com/
 PGP Key Available on Request
 
 -Original Message-
 From: Reuben King [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, April 20, 2000 16:45
 To: [EMAIL PROTECTED]
 Subject: RE: What's the use of structures, anyway?
 
 
 It seems that you cannot store structures in client variables, at least
 not if the client variable is stored in a database...  Can anyone
 confirm this or am I screwing something up?
 
 --
 Archives: http://www.eGroups.com/list/cf-talk
 To Unsubscribe visit
 http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
 send a message to [EMAIL PROTECTED] with 'unsubscribe' in
 the body.
 
 --
 Archives: http://www.eGroups.com/list/cf-talk
 To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
 
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: WAP and WML...

2000-04-24 Thread Gregory Weiss

Do either of you guys or anyone else have a list of good WAP/WML sites,
using or not using Cold Fusion.  I'd love to learn more about this
technology, and its obviously going to be important to everyone else soon as
well.  I'd like to make the first contribution:

http://www.anywhereyougo.com
http://www.bluetooth.com

These are excellent places to start, and obviously, any wireless
carrier/manufacturer is good as well (Nokia, Ericsson, Qualcomm, Motorola,
etc..)

Look forward to hearing from everyone.

Gregory L. Weiss
Web Development Project Leader
Trapezoid, Inc.
4107 Laguna Street
Coral Gables, Florida 33146
(305) 442-8060 x230
[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] 


-Original Message-
From: Jordon Saardchit [mailto:[EMAIL PROTECTED]]
Sent: Thursday, April 13, 2000 2:59 PM
To: [EMAIL PROTECTED]
Subject: RE: WAP and WML...


nokia has a development SDK for WAP Applications as well.  You can try that
one too.

Jordon

-Original Message-
From: Ian Lurie [mailto:[EMAIL PROTECTED]]
Sent: Thursday, April 13, 2000 10:08 AM
To: '[EMAIL PROTECTED]'
Subject: WAP and WML...


I'm putting together a WML/email application using CF, and I've got a
question about compatability -

I'm using the Phone.com developer's kit and SDK to test my stuff. How do I
know if this app will work on phones that don't use Phone.com's service? Is
there a more generic SDK out there I can use?

May all be stupid questions, but thought I'd check...

TIA,

Ian Lurie

Portent Interactive
http://www.portentinteractive.com
Process, Design, Content

Market Matrix
http://www.marketmatrix.com
Secure Commerce for Your Business

Working together to create powerful, usable web solutions.

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



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



RE: Question about Netscape

2000-04-24 Thread Jennifer

I also think this is the case. Try running the code through the html 
validator at w3.org. You would have to pass any variables in the URL to do 
this.

http://validator.w3.org/

At 10:53 AM 4/24/00 -0400, you wrote:
without seeing your code, it's hard to say, but NS is VERY picky about
proper HTML.  i'd be willing to bet that you need "'s around your values.
like this.

INPUT NAME="fred" VALUE="#somevalue#"

Chris Olive
DOHRS Website Administrator
[EMAIL PROTECTED]


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Monday, April 24, 2000 10:42 AM
To: [EMAIL PROTECTED]
Subject: Question about Netscape




I am doing a form to query information from a database (access).  Having it
return information in text boxes.  Well it works just fine in IE but, when
it goes to display the returned information in netscape.  It does not show
up, but in the view source it is there.  Just not showing up.  Any ideas
what the problem could be other than netscape has went down hill.  I am
using 4.7 netscape.



Tony Smith
IBM Learning Services
3100 Windy Hill Road
Marietta GA   30339
770-835-3155
t/l 596-3155



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

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



Re: Verity or database?

2000-04-24 Thread Benjamin Smedberg

 I have large amounts of text data. Which is a theoretically preferred way
of
 making it available on my site: Verity or put individual articles into a
 database (memo or varchar). Search by full text as well as by categories
and
 keywords is important.

There are three ways I have used for this problem:

First, If you have lots of money, an Oracle DB with the articles stored in
LONG fields can be indexed with the Oracle Context Cartridge. This is a lot
better than Verity, but costs ($25K).

SQL Server may have a similar function, I don't know.

Secondly, you can store the articles in any DB with a Long (Memo) field, and
then use Verity to index them directly from the database.

Thirdly, you can store the articles as files, index them with Verity, and
store categories and keywords in a database.

The first method allows you to secure various documents, etc...and once you
get it working, it can be the most flexible in terms of searching. But it is
a pain to set up.

The second method is not recommended for Access databases, because the
amount of data is just way to big. But you don't have to worry about keeping
a database in sync with flat files.

The third method is best if you don't want to secure some of the documents,
or if you only have an Access database available to you.

--
+
+ Benjamin Smedberg
+ CUA Assistant Webmaster
+ [EMAIL PROTECTED] - http://computing.cua.edu/as/bds/
+
+ He is risen, as He said! Alleluia!
+


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



Re: Cost to attend CF Developer conference

2000-04-24 Thread Andrea W


It was around $800, as I recall...

Original Message Follows
From: "Earl, George" [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
To: "'Listserv, Cold Fusion'" [EMAIL PROTECTED]
Subject: Cost to attend CF Developer conference
Date: Mon, 24 Apr 2000 11:37:58 -0400

Does anyone remember what the cost per person was to attend last year's CF
Developer conference in Boston? We are requesting funds to go to this year's
conference in DC in November and I need a ballpark figure to submit. (Looks
like this information isn't available yet at Allaire's site.)

Thanks.

George Earl
Computer Specialist
Social Security Administration
DCS\OIM\DMISD\WMB
(410) 965-5198
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=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

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



Re: Odd date function behavior

2000-04-24 Thread Howie Hamlin


Now() is simply a number (equivalent to the number of seconds that have
passed since December 31, 1899 if I'm not mistaken).  The DateAdd function
simply adds the two numbers that you enter.  So, there really is no problem
with the order that you enter the parameters since it's just the addition of
two number...

HTH,

Howie Hamlin
--
inFusion Project Manager; On-Line Data Solutions, Inc. (631)737-4668
===
Please vote for iMS in the Most Innovative category here:
*** http://www.sys-con.com/ColdFusion/readerschoice2000/ ***
===
Check out inFusion Mail Server - the world's most configurable email server
*** inFusion Authenticator for IIS is now released! (download from
CoolFusion.com) ***
http://www.teletrends.com and http://www.coolfusion.com
Software and utilities for ColdFusion, iHTML, Website, NTMail
Latest versions available from our web site (inFusion Authenticator version
2.0 for WebSite and NTMail is now released)


- Original Message -
From: Jeff Beer [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, April 24, 2000 11:25 AM
Subject: Odd date function behavior


 Hello all,

 Using the following

 cfset olddate = DateFormat(DateAdd("d", -30, Now()))

 works as expected.

 What's odd is the original code was written like this:

 cfset olddate = DateFormat(DateAdd("d", Now(), -30))

 This didn't produce an error, either in the cfset, or in the query where
 'olddate' was used.

 Both formats return 3/25/2000.

 From the docs, the correct syntax is DateAdd(datepart, number, date), as
in
 the first example.

 Am I missing something here?



 -
 Jeff Beer
 Programmer
 Hydrogen Media, Inc.
 www.hydrogenmedia.com
 Phone:  888.890.9175
 Fax:  727.530.5588




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



RE: Cost to attend CF Developer conference

2000-04-24 Thread Childress, Emily

695$ and 795$ (wasn't it??)

-Original Message-
From: Earl, George [mailto:[EMAIL PROTECTED]]
Sent: Monday, April 24, 2000 11:38 AM
To: 'Listserv, Cold Fusion'
Subject: Cost to attend CF Developer conference


Does anyone remember what the cost per person was to attend last year's CF
Developer conference in Boston? We are requesting funds to go to this year's
conference in DC in November and I need a ballpark figure to submit. (Looks
like this information isn't available yet at Allaire's site.)

Thanks.

George Earl
Computer Specialist
Social Security Administration
DCS\OIM\DMISD\WMB
(410) 965-5198

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



RE: Form Dilemma

2000-04-24 Thread Danny Zigrino

Jeff,

In Ben Forta's "Advanced ColdFusion Application Development 4.0" starting on
page 118, there is a custom tag called CF_EmbedFields that allows you to
automatically embed any form fields from a previous page with a single tag.
By the end of the 20th form all the info would be on the same page as hidden
input fields. I've found it to be a simple and elegant solution to problems
such as yours.

Sincerely,
Danny Zigrino
[EMAIL PROTECTED]

-Original Message-
From: Jeff W [mailto:[EMAIL PROTECTED]]
Sent: Monday, April 24, 2000 10:11 AM
To: [EMAIL PROTECTED]
Subject: Form Dilemma


This is a multi-part message in MIME format.

--=_NextPart_000_01A1_01BFADD5.6515A5A0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

I have a dilemma.

I want to make a multiparted form, lets say 5 mini-forms to eliminate =
one large form. You would get put into the first mini-form and be able =
to move throughout these parts by clicking on graphic buttons instead of =
submit buttons. It would update any changes if made. Then on the last =
mini-form it would actually process it and do what I need it to do.

The kicker is that I have 30 or so large forms. Some of these parts =
would be the same in all forms, others would be different. So I would =
love to be able to re-use the code.

I have some ideas, like tossing all the form. variables to session =
variables, but have no idea exactly how to actually convert them to =
session variables since I don't know how to do it without a submit =
button AND not being able to know WHICH form they will go to next to be =
able to set the form. variables to session. variables.=20

I figured I would toss this out on here to see if anyone had done this =
before and could shed some light on this for me.


Thanks,
Jeff
[EMAIL PROTECTED]

--=_NextPart_000_01A1_01BFADD5.6515A5A0
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
HTMLHEAD
META content=3D"text/html; charset=3Diso-8859-1" =
http-equiv=3DContent-Type
META content=3D"MSHTML 5.00.2920.0" name=3DGENERATOR
STYLE/STYLE
/HEAD
BODY bgColor=3D#ff
DIVFONT face=3DArial size=3D2I have a dilemma./FONT/DIV
DIVnbsp;/DIV
DIVFONT face=3DArial size=3D2I want to make a multiparted form, lets =
say 5=20
mini-forms to eliminate one large form. You would get put into the first =

mini-form and be able to move throughout these parts by clicking on =
graphic=20
buttons instead of submit buttons. It would update any changes if=20
made.nbsp;Then on the last mini-form it would actually process it and =
do what I=20
need it to do./FONT/DIV
DIVFONT face=3DArial size=3D2/FONTnbsp;/DIV
DIVFONT face=3DArial size=3D2The kicker is that I have 30 or so =
large=20
forms.nbsp;Some of these parts would be the same in all forms, others =
would be=20
different. So I would love to be able to re-use the code./FONT/DIV
DIVnbsp;/DIV
DIVFONT face=3DArial size=3D2I have some ideas, like tossing all the =
form.=20
variables to session variables, but have no idea exactly how =
tonbsp;actually=20
convert them to session variables since I don'tnbsp;knownbsp;how to do =
it=20
without a submit button AND not being able to know WHICH form they will =
go to=20
next to be able to set the form.nbsp;variables to session. variables.=20
/FONT/DIV
DIVFONT face=3DArial size=3D2/FONTnbsp;/DIV
DIVFONT face=3DArial size=3D2I figured I would toss this out on here =
to see=20
if/FONTnbsp;FONT face=3DArial size=3D2anyone had done this before =
and could=20
shed some light on this for me./FONT/DIV
DIVnbsp;/DIV
DIVnbsp;/DIV
DIVFONT face=3DArial size=3D2Thanks,/FONT/DIV
DIVFONT face=3DArial size=3D2Jeff/FONT/DIV
DIVFONT face=3DArial size=3D2A=20
href=3D"mailto:[EMAIL PROTECTED]"[EMAIL PROTECTED]/A/FONT/DIV=
/BODY/HTML

--=_NextPart_000_01A1_01BFADD5.6515A5A0--


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



Form values

2000-04-24 Thread Uday Pai

Hi
I have form fields in list using form.fieldnames 
pl.  canone tell me how to get form values of these form fields
thanx in advance

uday


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



RE: Application to test CFMAIL performance?

2000-04-24 Thread Eron Cohen

Steve,

If you just want to see how fast Cold Fusion can pass email messages to your
mail server, I'd guess you can probably find out what you want to know by
sending 2000 email messages to one email address.  You could do something
like:

CFLOOP from="1" to="2000" index="my_index"

CFMAIL TO="[EMAIL PROTECTED]"
 FROM="[EMAIL PROTECTED]" subject="TEST #my_INDEX#"

This is a test...

/CFMAIL


/CFLOOP

You can also get a pretty good idea of what the performance is going to be
like by watching the CFUSION\MAIL\SPOOL directory.  Once you've sent a few
hundered messages out you can watch how fast the mail files "disappear"
fromt that directory.  On our lame Pentium 100 mail server, it sends a
single message approximately every 1.5 seconds.

Eron
in-sync
Bethesda, Maryland

-Original Message-
From: Steve Goldenberg [mailto:[EMAIL PROTECTED]]
Sent: Monday, April 24, 2000 11:22 AM
To: [EMAIL PROTECTED]
Subject: Application to test CFMAIL performance?


Dear CF users,

Does anyone know of an application that will let you test CFMAIL with a high
number of requests? I would like to test some code by sending out
1,000-2,500 emails, but I don't have a huge list available to me, nor do I
want to spam 2,500 people with a "Just testing, sorry!" email. Do you know
of any application that can do anything like this?

Thanks for the help,

-Steve Goldenberg
Interfolio.com
4300 Old Dominion Dr.
Suite 901
Arlington, VA 22207
p: 703.522.4004
f: 209.315.7319


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

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



Perl script results

2000-04-24 Thread Joel Firestone

Everyone:

I've been reading up on several comments about CF and Perl. I've resently
been
introduced to cfexecute, which can really save me alot of time. What I
need
to know is if there's a way to save the results as a variable instead of a
file? Or if
there's any other way to capture it?

Or is my only solution to use cfhttp passing it the text to run on, and then
use
the results to save as my variable?

Thanks.

===
Joel Firestone - Developer
Delmarva Online
http://www.dmv.com/


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



Re: What happened to this list?

2000-04-24 Thread Fred Sanders

darn! my girlfriend took her whips with her when she went back home.

- Original Message -
From: "Ric Smith" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, April 24, 2000 10:31 AM
Subject: Re: What happened to this list?


 It was me!!!

 Now beat me!!!

 Beat me like the bad boy that I am!!!

 ooops.

 Wrong list.

 -- Ric Smith

   I am demanding that you post his name to the list. It is a disservice
 to
   the
   rest of us if you let him keep his anonymity. Let him suffer the
global
   consequences for his actions. If there's a fox in the hen house, we
all
   have
   a right to know who it is and adjust accordingly.
  
   Umm...'scuse me, but in the spirit of repeated requests to return
   this list
   back to its formerly non-confrontational state, do you think you
*might*
   consider backing down off the Torquemada routine a little bit?  I
   want this
   jackass outed as much as you, and MANY here have voiced a similar
 desire -
   but making brash (and futile, and impotent) "demands" is more likely
to
   dissuade compliance than encourage it.
  
   If Dr. Kiel wishes to share the name of the misbegotten little
   rat sh*t with
   us, he will.  If he doesn't, he won't.  It's that simple.  Ultimately
 the
   decision is his.
  
   To Dr. Kiel: put yourself in our positions - you know you'd want to
feel
   like you could safely ask a simple question without some
   underhanded little
   trouser-stain putting your job at risk.  I can see how you'd find
   it a point
   of honor to place yourself above this person - that revealing his
   name would
   be invading his privacy and, in some way, might put you on the same
 moral
   level as him.
  
   This isn't the case, I assure you.  This person, and anyone like him,
is
 a
   threat to the community we have set up.  HE chose this road; you're
not
   burning his privacy, your helping the rest of us maintain our OWN
 privacy.
 
  Everyone... please understand.
 
  first... I just dropped my original box, and have been spending my time
  getting windows 2000 up on this new one, hence I haven't had a chance to
  read email.
 
  second... I also would love to know the name of the person that did
this.
  However, my boss, fearing I would use certain dubious skills to 'rip'
that
  persons connection from the internet as we know it, has chosen to show
me
  the email, sans originators name. So at this point in time I am as much
in
  the dark as to his identity as anyone here.
 
  Trust, that if and when I do find out, I will splatter his name across
 every
  venue I can possibly imagine... starting of course with this news list.
 
  Marcus
 

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

 --

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

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



CFX_PRINTREPORT tag problems...

2000-04-24 Thread Julian McNamara

Greetings all,
I'm using a CFX tag to print Crystal Reports on a designated network printer
from a CF application. I've had the original tag modified to accept a
"landscape" orientation for the printer. The tag basically calls the Crystal
reports engine supplying the report name, printer, port, any record
selection criteria and the new orientation parameter.

I'm getting an error when calling the tag but there's no discernible pattern
as to when the error occurs. Sometimes it will work perfectly, many times in
a row. Sometimes it will fail with the same msg many times in a row and then
start working again with no intervening changes to anything on the system.

The error is simply "Error occurred in tag CFX_PRINTREPORT" followed by
"unexpected error occurred while processing tag"

Does anyone have any suggestions as to where to start in identifying the
cause of this problem?. I have found locally that if I stop and re-start the
CF server that I don't get the error ( ie I do get the error if the CF
server is started as part of boot up, but not after I stop and re-start it)
but this is not the case on the server where the application is running.

It's extremely frustrating as I don't know C++ an can't go into the tag to
figure out what might be causing the problem in there.

Any suggestions would be greatly appreciated.
TIA
Julian

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



Re: What happened to this list?

2000-04-24 Thread Fred Sanders

It could be a she.

- Original Message -
From: "Gregory Weiss" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, April 24, 2000 10:36 AM
Subject: RE: What happened to this list?


 This is one of the most disgusting professional acts I have ever
 encountered, and the person who did that should not only be banished from
 this list, but should be sought out by the development community as well
and
 'Boycotted'.  I mean, I wouldn't want a guy like this work with me OR for
 me.  I have enjoyed nearly all the conversations on this list and
recognize
 that the list is for elementary as well as challenging questions.  In
 addition, the list has allowed to be develop contacts for questions should
I
 need assistance, no matter how trivial.  I'd really like to know who that
 person was that did this and bring him to justice.  I thought the days of
 Sabotaging Lab-Experiments were left behind me in College.  Guess not.

 Gregory L. Weiss
 Web Development Project Leader
 Trapezoid, Inc.
 4107 Laguna Street
 Coral Gables, Florida 33146
 (305) 442-8060 x230
 [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED]


 -Original Message-
 From: Marcus [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, April 20, 2000 3:52 PM
 To: [EMAIL PROTECTED]
 Subject: Re: What happened to this list?


  I don't want to keep this thread going but I
 think that is
  very wrong of
  someone to insult others on this list, were
 all here trying
  to learn from
  one another not insult one another.

 Try this one...

 Recently I posted a question I had to the list
 and no one responded. Not a big deal, everyone
 has a life. Today the owner of the company I
 work at brought me a copy of an email he
 recieved from someone on this list... it
 basically said that the programmer he had hired
 was unable to accomplish a minor task like the
 one I mentioned, and he had, out of the goodness
 of his heart, searched out the company to offer
 his skills should my company wish to 're-think
 the current development staff'.

 My boss reminded me that I should be careful of
 the people I associate with, and left it at
 that. Aren't I lucky!

 Marcus
 Dr. Marcus Kiel
 Director of Development
 AdTel International
 --
--
 --
 Archives: http://www.eGroups.com/list/cf-talk
 To Unsubscribe visit
 http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
 send a message to [EMAIL PROTECTED] with 'unsubscribe' in
 the body.
 --

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

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



Problem with Oracle Procedures and OUTPUT parameters

2000-04-24 Thread Raftree, Mat

Hello All,

I am having trouble getting Oracle procedures to return OUTPUT
parameters.

I have the following code:

cfprocparam type="OUT" 
cfsqltype="CF_SQL_VARCHAR"
variable=rstype
DBVARNAME=resulttype



This is exactly as the documentation  says to set it up:

It is an output parameter (OUT) of type varchar.

I then hand in my variable from ColdFusion and map it to the parameter
name from the stored procedure (in this case it is: 'resulttype')

I have seen this work when using SQLServer with the DBVARNAME looking
like '@Variable1', but oracle does not use the @ sign with variables.  

Any help would be greatly appreciated.  Please reply to me directly if
you like.

Thanks,

Mathew Raftree
Senior Consultant
Breakaway Solutions, Inc.
50 Rowes Wharf, Boston, MA 02110
617.960.3400 - Office
617.834.0647 - Cell
617.960.3434 - Fax
www.breakaway.com
Get there first. 

"If you look at the history of innovation, you'll see one proven recipe
for breakthroughs: Take a small,  intensely focused team and impose an
unreasonable time frame on it." -- Alan Naumann
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: CF Locking UP

2000-04-24 Thread Sreang Kim

Hmm, I don't think it's traffic related since our traffic did not really
change much.  I'm starting to suspect something in my code, however, I can't
seem to pinpoint what it could be.
- Original Message -
From: "Jennifer" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, April 20, 2000 10:59 PM
Subject: Re: CF Locking UP


 Could it be traffic related?

 At 02:04 PM 4/20/00 +0100, you wrote:
 Did this happen to you all of a sudden?  Or did it happen from after
 installation of CF?  This only started happening to me for over two weeks
 now.  I am curious why it didn't happen from when CF was installed two
yrs
 ago.
 
 
 - Original Message -
 From: "Shane Pitts" [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Thursday, April 20, 2000 9:42 PM
 Subject: RE: CF Locking UP
 
 
   I am really curious also to this sort of behavior..I run CFServer on
   NTServer2K and every once in a while, I'll sit at my computer, notice
that
   it's slow as molasses and that the cfserver service is using 98% of
the
 cpu.
   I've tried many times to isolate, or reproduce it to find the cause,
and
 the
   logs don't help.  Only that in the web server log there will usually
be an
   entry that states "the web server is to busy to handle this request:
error
   523"
  
   I've resorted to setting up a paging alert when that process starts
eating
   the cpu so I can just stop and restart it...
  
   Id love to know how to "fix" it..
  
   Shane
  
   -Original Message-
   From: Sreang Kim [mailto:[EMAIL PROTECTED]]
   Sent: Thursday, April 20, 2000 6:14 AM
   To: [EMAIL PROTECTED]
   Subject: CF Locking UP
  
  
   This is a multi-part message in MIME format.
  
   --=_NextPart_000_0863_01BFAACA.3E747B00
   Content-Type: text/plain;
   charset="iso-8859-1"
   Content-Transfer-Encoding: quoted-printable
  
   I have a big problem.  I am using CF 4.01 Enterprise for Unix.  CF is
=
   constantly locking up. I check the system performance and found that =
   when It locked up, the CPU usuage ramped up to over 90%  I checked CF
=
   Server logs and found that I have several unresposive thread count.  =
   Also there was some application error on the application log.  Why
would =
   my cpu usage ramp up 90% and stay there and eventually locking up CF?
=
   Is it because of the thread count and the application error?  What
could =
   be the possible reason?
  
   --=_NextPart_000_0863_01BFAACA.3E747B00
   Content-Type: text/html;
   charset="iso-8859-1"
   Content-Transfer-Encoding: quoted-printable
  
   !DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
   HTMLHEAD
   META content=3D"text/html; charset=3Diso-8859-1" =
   http-equiv=3DContent-Type
   META content=3D"MSHTML 5.00.2919.6307" name=3DGENERATOR
   STYLE/STYLE
   /HEAD
   BODY bgColor=3D#ff
   DIVFONT face=3DArial size=3D2I have a big problem.nbsp; I am
using =
   CF 4.01=20
   Enterprise for Unix.nbsp; CF is constantly locking up. I check the =
   system=20
   performance and found that when It locked up, the CPU usuage ramped up
=
   to over=20
   90%nbsp; I checked CF Server logs and found that I have several =
   unresposive=20
   thread count.nbsp; Also there was some application error on the =
   application=20
   log.nbsp; Why would my cpu usage ramp up 90% and stay there and =
   eventually=20
   locking up CF?nbsp; Is it because of the thread count and the =
   application=20
   error?nbsp; What could be the possible =
   reason?/FONT/DIV/BODY/HTML
  
   --=_NextPart_000_0863_01BFAACA.3E747B00--
  
 
 --
 --
   --
   Archives: http://www.eGroups.com/list/cf-talk
   To Unsubscribe visit
  
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
   send a message to [EMAIL PROTECTED] with 'unsubscribe'
in
   the body.
  
 
 --
 
   Archives: http://www.eGroups.com/list/cf-talk
   To Unsubscribe visit
 http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
or
 send a message to [EMAIL PROTECTED] with 'unsubscribe' in
 the body.
  
 

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

 --

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


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 

Anyone else getting a boatload of these messages?

2000-04-24 Thread Strawhorn, Daryl (AZ75)




--==_MIME-Boundary-1_==--



Thanks

Daryl


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



Re: What happened to this list?

2000-04-24 Thread Brandon Whitaker

This is a good idea, as long as people don't get carried away.  People tend
abuse such power, a la, Salem Witch Hunt Trials.  My analogy is a bit
extreme maybe, but overall you have a good idea.

Given the litigious society we live in at the moment, I don't know whether
anyone would want to open themselves up to a libel/slander/defamation of
character suit...of course it's hard to see how anyone could have the nerve
to press a suit like that, but then again weirder things happen in the
courts every day.  And anyone who was weasel enough to have done this in the
first place certainly has low enough moral standards to whine to the nearest
attorney (who will undoubtably drool at the prospect of the media frenzy to
be had in an INTERNET LAWSUIT..)

Now on the other hand, if anyone knows any Sicilians of the sort favored by
Mario Puzo, perhaps a more appropriate  expedient punishment could be found
for the offender...

Brandon Whitaker
[EMAIL PROTECTED]
---
"It'll get used by the same people using Opera.  People dressed in black
wearing berets."
- Dave Watts, on Mozilla
"The net interprets censorship as damage and routes around it."
- John Gilmore


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



Re: Cost to attend CF Developer conference

2000-04-24 Thread Joel Firestone

This is a multi-part message in MIME format.

--=_NextPart_000_00B8_01BFADEC.AF6E6D00
Content-Type: text/plain;
charset="Windows-1252"
Content-Transfer-Encoding: quoted-printable

I "believe" it was $895 per person.

=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
Joel Firestone - Developer
Delmarva Online
http://www.dmv.com/

 Does anyone remember what the cost per person was to attend last =
year's CF
 Developer conference in Boston? We are requesting funds to go to this =
year's
 conference in DC in November and I need a ballpark figure to submit. =
(Looks
 like this information isn't available yet at Allaire's site.)

--=_NextPart_000_00B8_01BFADEC.AF6E6D00
Content-Type: text/html;
charset="Windows-1252"
Content-Transfer-Encoding: quoted-printable

!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
HTMLHEAD
META content=3D"text/html; charset=3Dwindows-1252" =
http-equiv=3DContent-Type
META content=3D"MSHTML 5.00.3013.2600" name=3DGENERATOR
STYLE/STYLE
/HEAD
BODY bgColor=3D#ff
DIVFONT face=3DVerdana size=3D2I "believe" it was $895 per =
person/FONTFONT=20
face=3DVerdana size=3D2./FONT/DIV
DIVBRFONT face=3DVerdana =
size=3D2=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3DBRJoe=
l Firestone -=20
DeveloperBRDelmarva OnlineBRA=20
href=3D"http://www.dmv.com/"http://www.dmv.com//A/FONT/DIV
DIVBRgt; Does anyone remember what the cost per person was to =
attend last=20
year's CFBRgt; Developer conference in Boston? We are requesting =
funds to go=20
to this year'sBRgt; conference in DC in November and I need a =
ballpark figure=20
to submit. (LooksBRgt; like this information isn't available yet at =
Allaire's=20
site.)/DIV/BODY/HTML

--=_NextPart_000_00B8_01BFADEC.AF6E6D00--

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



A CF Studio question

2000-04-24 Thread Hubert Earl

Hi,

How can I configure cf studio so that when it autocompletes tags, it does so
using uppercase letters?

Sincerely,
---
Hubert Earl
ICQ#:  16199853

I develop  maintain web sites internationally.  I also build web
applications using CGI scripts written in Perl.  I accept subcontracting
work.

**Personal web site:  http://www.geocities.com/SiliconValley/Peaks/8702/
(please remember to view this with a sense of humour!)

**Business web page:  http://home.talkcity.com/MigrationPath/hearl/


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



Help with multiple logins with same user name

2000-04-24 Thread Internet Gold Coast Properties

This is a multi-part message in MIME format.

--=_NextPart_000_0035_01BE8EC3.51DC1FA0
Content-Type: text/plain;
charset="windows-1257"
Content-Transfer-Encoding: quoted-printable

hello I have a preview facility on my cf website so that viewers can log =
on as a guest to gain access to the site so preview all the sites =
functions and then be in a position to decide if they want to join the =
site membership is for free by the way.

my problem is that my general access login is "guest" password being =
"password" (yes I know how original :)))  )

however in the event that more than one person wants to preview the site =
at the same time I expect that there will be a problem as there will =
already be a person logged in as "guest" how can I get around this =
problem

I thank you for your assistance in this matter in advance

Kind Regards

Claude Raiola
E-Mail: [EMAIL PROTECTED]
Website: www.internetgoldcoastproperties.com.au



--=_NextPart_000_0035_01BE8EC3.51DC1FA0
Content-Type: text/html;
charset="windows-1257"
Content-Transfer-Encoding: quoted-printable

!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
HTMLHEAD
META content=3D"text/html; charset=3Dwindows-1257" =
http-equiv=3DContent-Type
META content=3D"MSHTML 5.00.3013.2600" name=3DGENERATOR
STYLE/STYLE
/HEAD
BODY bgColor=3D#ff
DIVFONT color=3D#ff size=3D2hello I have a preview facility on =
my cf website=20
so that viewers can log on as a guest to gain access to the site so =
preview all=20
the sites functions and then be in a position to decide if they want to =
join the=20
site membership is for free by the way./FONT/DIV
DIVnbsp;/DIV
DIVFONT color=3D#ff size=3D2my problem is that my general access =
login is=20
"guest" password being "password" (yes I know how original =
:)))nbsp;=20
)/FONT/DIV
DIVnbsp;/DIV
DIVFONT color=3D#ff size=3D2however in the event that more than =
one person=20
wants to preview the site at the same time I expect that there will be a =
problem=20
as there will already be a person logged in as "guest" how can I get =
around this=20
problem/FONT/DIV
DIVnbsp;/DIV
DIVFONT color=3D#ff size=3D2I thank you for your assistance in =
this matter=20
in advance/FONT/DIV
DIVFONT color=3D#ff size=3D2BRKind Regards/FONT/DIV
DIVnbsp;/DIV
DIVFONT color=3D#ff size=3D2Claude RaiolaBRE-Mail: A=20
href=3D"mailto:[EMAIL PROTECTED]"info@internetgold=
coastproperties.com.au/ABRWebsite:=20
A=20
href=3D"http://www.internetgoldcoastproperties.com.au"www.internetgoldco=
astproperties.com.au/A/FONT/DIV
DIVnbsp;/DIV
DIVFONT color=3D#ff size=3D2/FONTnbsp;/DIV/BODY/HTML

--=_NextPart_000_0035_01BE8EC3.51DC1FA0--

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



Re: Database Failover

2000-04-24 Thread Brandon Whitaker

Here's my situation.  The client wants support for disaster and fail over
on both the web server and database side.

Are they using any kind of clustering?  If so, the CF server would point at
the 'virtual' server presented by the cluster, and the status of the
database on the back end would be irrelevant (to the CF server, anyway...)

Brandon Whitaker
[EMAIL PROTECTED]
---
"It'll get used by the same people using Opera.  People dressed in black
wearing berets."
- Dave Watts, on Mozilla
"The net interprets censorship as damage and routes around it."
- John Gilmore


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



RE: Cookies disappear

2000-04-24 Thread Olive, Christopher M Mr USACHPPM

it actually depends on your browser.  i think it was IE 4.x = 25, NS 4.x =
20.  i heard that IE was increasing the limit in 5.x, but i have no idea
what it is now.

Chris Olive
DOHRS Website Administrator
[EMAIL PROTECTED]


-Original Message-
From: James Smith [mailto:[EMAIL PROTECTED]]
Sent: Monday, April 24, 2000 11:02 AM
To: [EMAIL PROTECTED]
Subject: Re: Cookies disappear


I was always led to believe the limit was 15 per domain, does anyone have a
definitive answer on this as I have never needed more than 2 so I have never
tested it?

--
James Smith - [EMAIL PROTECTED]
http://ask-ted.com - Thiele Euronet Directories Limited
=
ICMP: The protocol that goes PING!


- Original Message -
From: Lon Lentz [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, April 24, 2000 2:10 PM
Subject: RE: Cookies disappear


 
  From: cfm [mailto:[EMAIL PROTECTED]]
 
  I have created a dynamic site where I tried to save a lot of the dynamic
 information in cookies.
  At any 1 time there could be about 25 cookies.  None of them are very
 large, each holding a max of
  about 45 bytes.  This dynamic information is stuff like a cookie for the
 main font color,  a cookie
  for the main domain url, etc.  These cookies are pulled up on every
page.



   Cookies are limited to 20 per domain. The 21st cookie will cause the
first
 one to be purged. I
  believe that the max memory size for all of your site's cookies is 4k.



 Lon Lentz
 Applications Developer - GetLists.Com
 DataWarehousing and List Sales - Market your lists on the Net!
 [EMAIL PROTECTED]
 941-541-9000 Ext. 210

 --

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


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



weird error - help

2000-04-24 Thread Eisenhauer, James

Error Occurred While Processing Request
Error Diagnostic Information SSException: SSYacc0105e: Error token failed,
no valid token16  PCodeDocumentNodeImp::prepareForExecution  Date/Time:
04/24/00 09:55:11 Browser: Mozilla/4.0 (compatible; MSIE 5.0; Windows NT;
[en] IEB-LMC v1; [en] IEB-LMC v1.3; DigExt) Remote Address: 172.20.28.64
HTTP Referer: http://nikelmcotst/srp/ Template:
D:\WWWRoot\NIKELMCOTST\srp\Index.cfm






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



Re: front ending a web-based Access db

2000-04-24 Thread Jennifer

At 11:52 AM 4/24/00 -0400, you wrote:
Dear List,
I have a client who would like me to front-end the Access databases used on
the website with a local Access database.  This would be for ease in
creating printed reports.

I have done this fairly easily with a mySQL db, but don't see how to do it
with an online Access backend.  The site is hosted on NT and uses cf to
acces the databases.

If anyone could point me in the right direction, I would really appreciate
it.

I'm not sure that I understand the question. CF can access Access with no 
problem-- I've done it before. The setup should be similar to the mySQL 
setup. Is there a specific difficulty that you are having?

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



RE: stupid HTML question

2000-04-24 Thread Owens, Howard



This has always worked for me ...

br clear=all

between the tables.

H.

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



Can we hide

2000-04-24 Thread aslam bajaria

If I have a url link as:

a
href="Index.cfm?fuseaction=ProcessformCustomerid=999"Click
here/a to process the form.

Is there a way to hide the information about the
Customer id?

I know it can be done in a form. But can it be done in
a url link?

Appreciate
A.B.

__
Do You Yahoo!?
Send online invitations with Yahoo! Invites.
http://invites.yahoo.com
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Cfhttp error?? help?

2000-04-24 Thread Joseph Eugene

Thanks Brandon,
 I am running cfserver on NT4(sp6) and trying to connect
via a dial up connection.
 So my test is http://127.0.0.1/cftest/yahooSearch.cfm
 how do i specify proxy server settings?

Appretiate your help
Thanks
Joe
--
- Original Message -
From: "Brandon Whitaker" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, April 24, 2000 8:06 AM
Subject: Re: Cfhttp error?? help?


  Is there something wrong in my Code?

 Running your code from here, it works fine, other than that the page
 returned from Yahoo is an error page (it apparently doesn't support the
POST
 method, try GET instead.)

 Can you contact this page from the server console?  If the server itself
 can't reach the site, CFHTTP won't be able to, either.

 If you can reach the site from your server's console, does your server use
a
 HTTP Proxy?  If so, that proxy address:port needs to be specified in the
 CFHTTP tag.

 Other than that, it seems to work just fine

 HTH. HAND.

 Brandon Whitaker
 [EMAIL PROTECTED]
 ---
 "It'll get used by the same people using Opera.  People dressed in black
 wearing berets."
 - Dave Watts, on Mozilla
 "The net interprets censorship as damage and routes around it."
 - John Gilmore


 --

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


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



Re: WAP and WML...

2000-04-24 Thread Michael Dinowitz

http://www.allaire.com/developer/TechnologyReference/wap.cfm
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_wap


 Do either of you guys or anyone else have a list of good WAP/WML sites,
 using or not using Cold Fusion.  I'd love to learn more about this
 technology, and its obviously going to be important to everyone else soon
as
 well.  I'd like to make the first contribution:

 http://www.anywhereyougo.com
 http://www.bluetooth.com

 These are excellent places to start, and obviously, any wireless
 carrier/manufacturer is good as well (Nokia, Ericsson, Qualcomm, Motorola,
 etc..)

 Look forward to hearing from everyone.


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



Re: WAP and WML...

2000-04-24 Thread Howie Hamlin

http://www.mobitext.com/

There is also a mailing list [EMAIL PROTECTED]

HTH,

Howie Hamlin
--
inFusion Project Manager; On-Line Data Solutions, Inc. (631)737-4668
===
Please vote for iMS in the Most Innovative category here:
*** http://www.sys-con.com/ColdFusion/readerschoice2000/ ***
===
Check out inFusion Mail Server - the world's most configurable email server
*** inFusion Authenticator for IIS is now released! (download from
CoolFusion.com) ***
http://www.teletrends.com and http://www.coolfusion.com
Software and utilities for ColdFusion, iHTML, Website, NTMail
Latest versions available from our web site (inFusion Authenticator version
2.0 for WebSite and NTMail is now released)


- Original Message -
From: Gregory Weiss [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, April 24, 2000 11:48 AM
Subject: RE: WAP and WML...


 Do either of you guys or anyone else have a list of good WAP/WML sites,
 using or not using Cold Fusion.  I'd love to learn more about this
 technology, and its obviously going to be important to everyone else soon
as
 well.  I'd like to make the first contribution:

 http://www.anywhereyougo.com
 http://www.bluetooth.com

 These are excellent places to start, and obviously, any wireless
 carrier/manufacturer is good as well (Nokia, Ericsson, Qualcomm, Motorola,
 etc..)

 Look forward to hearing from everyone.

 Gregory L. Weiss
 Web Development Project Leader
 Trapezoid, Inc.
 4107 Laguna Street
 Coral Gables, Florida 33146
 (305) 442-8060 x230
 [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]


 -Original Message-
 From: Jordon Saardchit [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, April 13, 2000 2:59 PM
 To: [EMAIL PROTECTED]
 Subject: RE: WAP and WML...


 nokia has a development SDK for WAP Applications as well.  You can try
that
 one too.

 Jordon

 -Original Message-
 From: Ian Lurie [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, April 13, 2000 10:08 AM
 To: '[EMAIL PROTECTED]'
 Subject: WAP and WML...


 I'm putting together a WML/email application using CF, and I've got a
 question about compatability -

 I'm using the Phone.com developer's kit and SDK to test my stuff. How do I
 know if this app will work on phones that don't use Phone.com's service?
Is
 there a more generic SDK out there I can use?

 May all be stupid questions, but thought I'd check...

 TIA,

 Ian Lurie

 Portent Interactive
 http://www.portentinteractive.com
 Process, Design, Content

 Market Matrix
 http://www.marketmatrix.com
 Secure Commerce for Your Business

 Working together to create powerful, usable web solutions.
 --
--
 --
 Archives: http://www.eGroups.com/list/cf-talk
 To Unsubscribe visit
 http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
 send a message to [EMAIL PROTECTED] with 'unsubscribe' in
 the body.


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

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

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



RE: WAP and WML...

2000-04-24 Thread Jordon Saardchit

well, at the risk of sounding like a huge sales pitch,  the go2online.com
wireless site is done in coldfusion. www.go2online.com on yer wireless
phone.

-Jordon


-Original Message-
From: Gregory Weiss [mailto:[EMAIL PROTECTED]]
Sent: Monday, April 24, 2000 8:49 AM
To: '[EMAIL PROTECTED]'
Subject: RE: WAP and WML...


Do either of you guys or anyone else have a list of good WAP/WML sites,
using or not using Cold Fusion.  I'd love to learn more about this
technology, and its obviously going to be important to everyone else soon as
well.  I'd like to make the first contribution:

http://www.anywhereyougo.com
http://www.bluetooth.com

These are excellent places to start, and obviously, any wireless
carrier/manufacturer is good as well (Nokia, Ericsson, Qualcomm, Motorola,
etc..)

Look forward to hearing from everyone.

Gregory L. Weiss
Web Development Project Leader
Trapezoid, Inc.
4107 Laguna Street
Coral Gables, Florida 33146
(305) 442-8060 x230
[EMAIL PROTECTED] mailto:[EMAIL PROTECTED]


-Original Message-
From: Jordon Saardchit [mailto:[EMAIL PROTECTED]]
Sent: Thursday, April 13, 2000 2:59 PM
To: [EMAIL PROTECTED]
Subject: RE: WAP and WML...


nokia has a development SDK for WAP Applications as well.  You can try that
one too.

Jordon

-Original Message-
From: Ian Lurie [mailto:[EMAIL PROTECTED]]
Sent: Thursday, April 13, 2000 10:08 AM
To: '[EMAIL PROTECTED]'
Subject: WAP and WML...


I'm putting together a WML/email application using CF, and I've got a
question about compatability -

I'm using the Phone.com developer's kit and SDK to test my stuff. How do I
know if this app will work on phones that don't use Phone.com's service? Is
there a more generic SDK out there I can use?

May all be stupid questions, but thought I'd check...

TIA,

Ian Lurie

Portent Interactive
http://www.portentinteractive.com
Process, Design, Content

Market Matrix
http://www.marketmatrix.com
Secure Commerce for Your Business

Working together to create powerful, usable web solutions.

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



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

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


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



Re: Database Failover

2000-04-24 Thread Benjamin Smedberg

 Specifically, they want the cold fusion app to be able to dynamically
point
 to the backup database if the primary one is down.  The snippet that was I
 given as a sample polls the databases in the Application.cfm file as
follows:
[SNIP]
 My concern is for the efficiency and load implications of this.  Will this
 slow my app down substantially?  Would running this snippet every minute
or
 so as a background task be better?  Is there a better way?

Yes, that's extremely expensive. Don't try it. If you must go this route,
catch DB errors using CFERROR TYPE="Database" and run your check from
there. Then set an application variable to the backup server.

However, I think that asking CF to do this is a bad route. What DB are you
using? Oracle has native support for DB failover, that can even replicate
partially finished transaction across failed DB's. (Look at Parallel Server,
Distributed Server, and FailSafe). SQL Server should have similar
capabilities, though I've never used it. Try using your native DB interface
to do failover before you ask CF to do it.

+
+ Benjamin Smedberg
+ CUA Assistant Webmaster
+ [EMAIL PROTECTED] - http://computing.cua.edu/as/bds/
+
+ He is risen, as He said! Alleluia!
+


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



MMC download

2000-04-24 Thread Robert Everland

Can anyone tell me where to download MMC from? I know it was posted here
before.


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



Obtain # of Files in a DIRECTORY

2000-04-24 Thread Gregory Weiss

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

--_=_NextPart_001_01BFAE13.01D459EE
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

I need to get a count of the number of files in a particluar =
directory.=A0 I
know that CFFILE allows you to do several FILE operations, but how =
would you
actually get a count of the number of files that exist in a particular
directory.
=A0
Thanks in advance for your help.
=A0
Gregory L. Weiss
Web Development Project Leader
Trapezoid, Inc.
4107 Laguna Street
Coral Gables, Florida 33146
(305) 442-8060 x230
 mailto:[EMAIL PROTECTED] [EMAIL PROTECTED]
=A0

--_=_NextPart_001_01BFAE13.01D459EE
Content-Type: text/html;
charset="iso-8859-1"

!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
HTMLHEAD
META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"


META content="MSHTML 5.00.2920.0" name=GENERATOR/HEAD
BODY
DIVFONT face=Arial size=2SPAN class=690004717-24042000I need to get a 
count of the number of files in a particluar directory.nbsp; I know that CFFILE 
allows you to do several FILE operations, but how would you actually get a count 
of the number of files that exist in a particular directory./SPAN/FONT/DIV
DIVFONT face=Arial size=2SPAN 
class=690004717-24042000/SPAN/FONTnbsp;/DIV
DIVFONT face=Arial size=2SPAN class=690004717-24042000Thanks in advance 
for your help./SPAN/FONT/DIV
DIVFONT face=Arial size=2SPAN 
class=690004717-24042000/SPAN/FONTnbsp;/DIV
DIVFONT face=Arial size=2STRONGEMGregory L. 
Weiss/EM/STRONG/FONT/DIV
DIVFONT face=Arial size=2Web Development Project Leader/FONT/DIV
DIVFONT face=Arial size=2Trapezoid, Inc./FONT/DIV
DIVFONT face=Arial size=24107 Laguna Street/FONT/DIV
DIVFONT face=Arial size=2Coral Gables, Florida 33146/FONT/DIV
DIVFONT face=Arial size=2(305) 442-8060 x230/FONT/DIV
DIV align=leftFONT face=Arial size=2A 
href="mailto:[EMAIL PROTECTED]"STRONG[EMAIL PROTECTED]/STRONG/A/FONT/DIV
DIVnbsp;/DIV/BODY/HTML

--_=_NextPart_001_01BFAE13.01D459EE--
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: stupid HTML question

2000-04-24 Thread david

Create one table with two rows.


table border="0" width="300"

tr

td align="left"
   Navigation bar
/td

/tr

tr

td align="center"
  main content here
/td

/tr

/table



david


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



Data source List

2000-04-24 Thread Richard Diolata


Hello,

Is there a tag or script I can use in a html form. That would list all the
data source names on the server?

--
Richard Diolata
GetSet! Communications Inc.
Technical Administrator
Office: (604)465-7699 Fax: (604)465-1062

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



HELP WITH CASE SENSITIVE LOGIN

2000-04-24 Thread Internet Gold Coast Properties

This is a multi-part message in MIME format.

--=_NextPart_000_0046_01BE8ECB.8823B7A0
Content-Type: text/plain;
charset="windows-1257"
Content-Transfer-Encoding: quoted-printable

my login page accepts lower case however if I type the same login name =
and password in upper case the system does not accept the login=20

if I recall I need to use the code nocase or something similar to that =
so that the system ignores the case in which the user enters in the =
login details=20

can I please have some guidance as to exactly the code needed to achieve =
this and exactly where is this placed



Kind Regards

Claude Raiola
E-Mail: [EMAIL PROTECTED]
Website: www.internetgoldcoastproperties.com.au



--=_NextPart_000_0046_01BE8ECB.8823B7A0
Content-Type: text/html;
charset="windows-1257"
Content-Transfer-Encoding: quoted-printable

!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
HTMLHEAD
META content=3D"text/html; charset=3Dwindows-1257" =
http-equiv=3DContent-Type
META content=3D"MSHTML 5.00.3013.2600" name=3DGENERATOR
STYLE/STYLE
/HEAD
BODY bgColor=3D#ff
DIVFONT color=3D#ff size=3D2my login page accepts lower case =
however if I=20
type the same login name and password in upper case the system does not =
accept=20
the login /FONT/DIV
DIVnbsp;/DIV
DIVFONT color=3D#ff size=3D2if I recall I need to use the code=20
lt;nocasegt; or something similar to that so that the system ignores =
the case=20
in which the user enters in the login details /FONT/DIV
DIVnbsp;/DIV
DIVFONT color=3D#ff size=3D2can I please have some guidance as =
to exactly=20
the code needed to achieve this and exactly where is this =
placed/FONT/DIV
DIVFONT color=3D#ff size=3D2/FONTnbsp;/DIV
DIVnbsp;/DIV
DIVFONT color=3D#ff size=3D2BRKind Regards/FONT/DIV
DIVnbsp;/DIV
DIVFONT color=3D#ff size=3D2Claude RaiolaBRE-Mail: A=20
href=3D"mailto:[EMAIL PROTECTED]"info@internetgold=
coastproperties.com.au/ABRWebsite:=20
A=20
href=3D"http://www.internetgoldcoastproperties.com.au"www.internetgoldco=
astproperties.com.au/A/FONT/DIV
DIVnbsp;/DIV
DIVFONT color=3D#ff size=3D2/FONTnbsp;/DIV/BODY/HTML

--=_NextPart_000_0046_01BE8ECB.8823B7A0--

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



RE: Obtain # of Files in a DIRECTORY

2000-04-24 Thread Russel Madere

Give the CFDIRECTORY tag a try.

-Original Message-
From: Gregory Weiss [mailto:[EMAIL PROTECTED]]
Sent: Monday, April 24, 2000 12:32 PM
To: '[EMAIL PROTECTED]'
Subject: Obtain # of Files in a DIRECTORY


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

--_=_NextPart_001_01BFAE13.01D459EE
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

I need to get a count of the number of files in a particluar =
directory.=A0 I
know that CFFILE allows you to do several FILE operations, but how =
would you
actually get a count of the number of files that exist in a particular
directory.
=A0
Thanks in advance for your help.
=A0
Gregory L. Weiss
Web Development Project Leader
Trapezoid, Inc.
4107 Laguna Street
Coral Gables, Florida 33146
(305) 442-8060 x230
 mailto:[EMAIL PROTECTED] [EMAIL PROTECTED]
=A0

--_=_NextPart_001_01BFAE13.01D459EE
Content-Type: text/html;
charset="iso-8859-1"

!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
HTMLHEAD
META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"


META content="MSHTML 5.00.2920.0" name=GENERATOR/HEAD
BODY
DIVFONT face=Arial size=2SPAN class=690004717-24042000I need to get a
count of the number of files in a particluar directory.nbsp; I know that
CFFILE
allows you to do several FILE operations, but how would you actually get a
count
of the number of files that exist in a particular
directory./SPAN/FONT/DIV
DIVFONT face=Arial size=2SPAN
class=690004717-24042000/SPAN/FONTnbsp;/DIV
DIVFONT face=Arial size=2SPAN class=690004717-24042000Thanks in
advance
for your help./SPAN/FONT/DIV
DIVFONT face=Arial size=2SPAN
class=690004717-24042000/SPAN/FONTnbsp;/DIV
DIVFONT face=Arial size=2STRONGEMGregory L.
Weiss/EM/STRONG/FONT/DIV
DIVFONT face=Arial size=2Web Development Project Leader/FONT/DIV
DIVFONT face=Arial size=2Trapezoid, Inc./FONT/DIV
DIVFONT face=Arial size=24107 Laguna Street/FONT/DIV
DIVFONT face=Arial size=2Coral Gables, Florida 33146/FONT/DIV
DIVFONT face=Arial size=2(305) 442-8060 x230/FONT/DIV
DIV align=leftFONT face=Arial size=2A
href="mailto:[EMAIL PROTECTED]"STRONG[EMAIL PROTECTED]/STRONG/A
/FONT/DIV
DIVnbsp;/DIV/BODY/HTML

--_=_NextPart_001_01BFAE13.01D459EE--

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

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



Cycle Bat problem/question....

2000-04-24 Thread Kelly Matthews

Quick question. IN the help files it CLAIMS that
when cycle bat shuts CF off, if someone attempts to
hit a CF file before it has started again, then it will
automatically start cold fusion. I have NOT found this
to be the case, I receive errors until CF is restarted
at the SCHEDULED time a minute later. Isnt it supposed
to start? Thats what the cycle.bat help says. Anyone experience
this problem? suggestions??
Kelly
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Form values

2000-04-24 Thread Joseph Eugene

Uday,
   this should give you the values in the list, but you should have
all the form fields name the same for this.
eg: input type="text" Name="Fields" value="1"
 input type="text" Name="Fields" value="2"



 CFLOOP INDEX="x"
 LIST="Fields"
 DELIMITERS=","
cfoutput
#x#br
/cfoutput

 /CFLOOP
which in the next page


- Original Message -
From: "Uday Pai" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, April 24, 2000 2:21 PM
Subject: Form values


 Hi
 I have form fields in list using form.fieldnames
 pl.  canone tell me how to get form values of these form fields
 thanx in advance

 uday


 --

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


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



Re: Cookies disappear

2000-04-24 Thread Sima Lee

On page 94 in "Mastering ColdFusion 4.0"- author: Arman Danesh, Kristin
Aileen Motlagh":
" A server can set only 20 cookies in a client browser with newer cookies
replacing older ones as this limit is crossed."

"Cookies have a length limit of 4,096 characters(4KB). This length includes
the value , name, and additional information such as the expiration date.
Effectively , this means the actual value stored  in the cookies needs to be
less than 4KB in length."



- Original Message -
From: James Smith [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, April 24, 2000 10:01 AM
Subject: Re: Cookies disappear


 I was always led to believe the limit was 15 per domain, does anyone have
a
 definitive answer on this as I have never needed more than 2 so I have
never
 tested it?

 --
 James Smith - [EMAIL PROTECTED]
 http://ask-ted.com - Thiele Euronet Directories Limited
 =
 ICMP: The protocol that goes PING!


 - Original Message -
 From: Lon Lentz [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Monday, April 24, 2000 2:10 PM
 Subject: RE: Cookies disappear


  
   From: cfm [mailto:[EMAIL PROTECTED]]
  
   I have created a dynamic site where I tried to save a lot of the
dynamic
  information in cookies.
   At any 1 time there could be about 25 cookies.  None of them are very
  large, each holding a max of
   about 45 bytes.  This dynamic information is stuff like a cookie for
the
  main font color,  a cookie
   for the main domain url, etc.  These cookies are pulled up on every
 page.
 
 
 
Cookies are limited to 20 per domain. The 21st cookie will cause the
 first
  one to be purged. I
   believe that the max memory size for all of your site's cookies is 4k.
 
 
 
  Lon Lentz
  Applications Developer - GetLists.Com
  DataWarehousing and List Sales - Market your lists on the Net!
  [EMAIL PROTECTED]
  941-541-9000 Ext. 210
 

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

 --

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

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



  1   2   >