Query Cache Question

2000-04-20 Thread Ken M. Mevand

lets say i have a query :

CFQUERY NAME="getProductDetails" DATASOURCE="xyz"
CACHEWITH="#CreateTimeSpan(0,1,0,0)#"
SELECT * FROM Product WHERE Pdt_ID = #Attributes.PdtID#
/CFQUERY

thus, for every product request, this query will be recached since the query
statement will be different. would it be better to rename the query to
something like NAME="getProductDetails_#Attributes.PdtID#" instead?

thanks


--
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: Query Cache Question

2000-04-20 Thread Pete Freitag

This is a good example of a query not to cache this way, let me explain
why...
Your idea with the dynamic query name shows that you have an idea why this
might not work. It will cache the query in memory with the value that you
first executed it with.  Keep in mind that cold fusion can only have 100
queries cached at once, so you don't want to use them all up in one place.

Here's how I would solve your situation...
cfif NOT IsDefined("Application.getProductDetails")
cfquery name="getProductDetails" datasource="xyz"
SELECT * FROM Product
/cfquery
cfset application.getProductDetails = ArrayNew(1)
cfoutput query="getProductDetails"
cfset application.getProductDetails[Pdt_ID] = StructNew()
cfset application.getProductDetails[Pdt_ID].ProductName = ProductName
cfset application.getProductDetails[Pdt_ID].Price = Price
cfset application.getProductDetails[Pdt_ID].fieldname = fieldname
cfset application.getProductDetails[Pdt_ID].etc = etc
!--- include all the fieldnames for your table ---
/cfoutput
/cfif

Now you can refer to a field based on your primary key, like this...

cfoutput#attributes.getProductDetails[Attributes.PdtID].Price#/cfoutput


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

-Original Message-
From: Ken M. Mevand [mailto:[EMAIL PROTECTED]]
Sent: Thursday, April 20, 2000 2:01 AM
To: 02 cf-talk
Subject: Query Cache Question


lets say i have a query :

CFQUERY NAME="getProductDetails" DATASOURCE="xyz"
CACHEWITH="#CreateTimeSpan(0,1,0,0)#"
SELECT * FROM Product WHERE Pdt_ID = #Attributes.PdtID#
/CFQUERY

thus, for every product request, this query will be recached since the query
statement will be different. would it be better to rename the query to
something like NAME="getProductDetails_#Attributes.PdtID#" instead?

thanks



--
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: Big Problems!! - VNC

2000-04-20 Thread Pete Freitag

Was that on NT? I've found that VNC runs much slower on NT than on a unix
environment with X-Windows(it flies on X!).  Haven't had problems running it
with unix, but it was very slow on NT.  I suspect this has to do with the
GUI architecture.

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

-Original Message-
From: Richard Darracott [mailto:[EMAIL PROTECTED]]
Sent: Thursday, April 20, 2000 12:25 AM
To: [EMAIL PROTECTED]
Subject: RE: Big Problems!! - VNC


On the VNC side of things I have just had VNC removed from our Cold Fusion
server as it was causing the web server to lock up on a regular basis.  In
our experience it we used VNC to longer period of time (or even too many
times during the day) the server would lock for over 10 minutes.
After talking to the administrators at the hosting company we came to the
conclusion that VNC was causing this.

Has anyone else has similar problems?

Richard Darracott
Software Development Manager
7am.com Limited


 -Original Message-
 From: Erika Foster [mailto:[EMAIL PROTECTED]]
 Sent: Monday, April 17, 2000 1:21 PM
 To: [EMAIL PROTECTED]
 Subject: Re: Big Problems!!


 Big thumbs up for VNC.  I use it for remote Cold Fusion
 Administration a
 couple states away.  Seems very secure and very easy to use
 on this end.  I
 was very skeptical when our web host suggested it, but am
 very pleased with
 the performance and the ease of use.

 Erika


 - Original Message -
 From: "Computer Simplistics Support" [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Sunday, April 16, 2000 5:07 PM
 Subject: Re: Big Problems!!


  Not sure on that =)
 
  But to add to this thread, a FREE program called VNC is
 available, and it
 is
  GREAT. Works on NT/2000 fine, small, and free.. did I
 mention free? Also,
 it
  is for a WIDE variety of OS's..
 
  http://www.uk.research.att.com/vnc/
 
  Scott Berry
  --
  Computer Simplistics Support
  "Simple Solutions for a Complex World"
  http://www.c-s.net
  661-296-4315
 
 
  - Original Message -
  From: "Will" [EMAIL PROTECTED]
  To: [EMAIL PROTECTED]
  Sent: Sunday, April 16, 2000 5:03 PM
  Subject: Re: Big Problems!!
 
 
   How does NetMeeting allow for remote control and file transfer to
 another
   computer?
  
   - Original Message -
   From: "Peter Tilbrook" [EMAIL PROTECTED]
   To: [EMAIL PROTECTED]
   Sent: Sunday, April 16, 2000 4:11 PM
   Subject: RE: Big Problems!!
  
  
Tip: you can use Microsoft NetMeeting in the same fashion as PC
 Anywhere
(and it's free to boot).
   
-Original Message-
From: Chris Carpenter [mailto:[EMAIL PROTECTED]]
Sent: Sunday, 16 April 2000 6:47 PM
To: coldfusion
Subject: Big Problems!!
   
   
Hi Everyone,
i am launching a site tomorrow and i have problems.
I have cfserver 4.5.1, i uploaded an access2000 database and cf
 couldn't
verify it. I have no special permissions set on it, no
 passwords yet,
nothing. What could be making it not connect?? i
 thought "maybe i need
  the
new mdac from MS" so i downloaded it, installed
 it,rebooted, and now
 PC
Anywhere does not work, the access database still
 doesn't work either.
   
would anyone know why mdac would stop PC Anywhere working?
, or why a plain vanilla mdb which worked fine on the
 Dev server,
 fails
  to
verify on my other server. the example mdb that was
 installed with CF
   works
fine, i have checked the permissions given to it, and
 they seem the
 same
   as
what i had given my DB.
   
sorry if these questions are basic, but i have been
 thrown into the
 deep
   end
here, and i don't want to drown. If you need more info,
 please ask and
 i
will supply all i can.
   
I am running nt4 sp6, cf4.5.1. MDAC 2.5
   
thanks
Chris Carpenter.
   
   
  
 
 
 --
 
   --
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
   
 http://www.houseoffusion.com/index.cfm?sidebar=listsbody=list
s/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

RE: Please ignore this message. It is a test

2000-04-20 Thread Rich Wild


If a tree falls down in the woods and theres an ignore message nailed to
it,
will anyone notice?

Taz



No

I mean yes

No... I mean...



Damn!


***
Rich
--
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: Please ignore this message. It is a test

2000-04-20 Thread Steve Pierce

Yes, but only the people that didn't get the message. - Steve

-Original Message-
From: Chris Tazewell [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, April 19, 2000 12:05 PM
To: [EMAIL PROTECTED]
Subject: Re: Please ignore this message. It is a test


If a tree falls down in the woods and theres an ignore message nailed to it,
will anyone notice?

Taz


--
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: U.S. states pull down menu

2000-04-20 Thread Carter Development

Tom - here you go:

CFSET StateList =
"AL,AK,AR,AZ,CA,CO,CT,DC,DE,FL,GA,HI,IA,ID,IL,IN,KS,KY,LA,MA,MD,ME,MI,MN,MO,
MS,MT,NC,ND,NE,NH,NJ,NM,NV,NY,OH,OK,OR,PA,RI,SC,SD,TN,TX,UT,VA,VT,WA,WI,WV,W
Y"

CFSELECT NAME="state" SIZE="1"
   OPTION
   CFLOOP LIST="#StateList#" INDEX="ThisState"
   OPTIONCFOUTPUT#ThisState#/CFOUTPUT
   /CFLOOP
  /CFSELECT

Sincerely,
Shawnea Carter
- Original Message -
From: "Tom Rainey" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, April 19, 2000 8:04 PM
Subject: U.S. states pull down menu


 Can someone direct me to a snippet somewhere for a U.S. states pull down
 menu?

 Thanks,
 Tom

 --

 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.



rds services quits because ??

2000-04-20 Thread jeff


Periodically the rds services quits and this is the only log entry that is 
showing up. Has anyone
run into this?? Everything continues to work normally. 
"Error","TID=234","04/20/00","12:46:40","Server busy or unable to fulfill request. The 
server is unable to fulfill your request due to extremely high traffic or an 
unexpected internal error. Please attempt your request again (if you are repeatedly 
unsuccessful you should notify the site administrator). (Location Code: 25) "








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



rds services quits because ??

2000-04-20 Thread jeff


Periodically the rds services quits and this is the only log entry that is 
showing up. Has anyone
run into this?? Everything continues to work normally. 
"Error","TID=234","04/20/00","12:46:40","Server busy or unable to fulfill request. The 
server is unable to fulfill your request due to extremely high traffic or an 
unexpected internal error. Please attempt your request again (if you are repeatedly 
unsuccessful you should notify the site administrator). (Location Code: 25) "








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

2000-04-20 Thread Brandon Whitaker

eww an 3LiTe Hack3r

No, no, no, NO!  You haven't been keeping up with the Attrition.com mirror.

it's 3l33t haxOr.

I'm still trying to figure out if the originator of this thread was serious
or not...

Having a bad day?
Imagine this...

You are in total seclusion from that hectic place called "The World".

"You are in a maze of twisty little message threads, all different..."

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.



EGROUPS

2000-04-20 Thread McCabe, Kevin

How Come none of the Emails are Going to Egroups any More?

Regards,

Kevin McCabe
Intranet Developer
British SKY Broadcasting Ltd.
020 79 41 5502
070 50 64 3310

http://osterley/

Webmasters often find themselves abandoning the sun as it streaks across the
sky and adhering to 
"Internet time" - a compressed timescale where everything has to be done
"now".
Sleep: A completely inadequate substitute for caffeine
--
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 Server Advanced Security

2000-04-20 Thread Dave Watts

 Anyone ever seen this?  It's never happened to me before...

 In Administrator (CF 4.5 eval) and click on the link for
 Advanced Security gets me:

 Error Occurred While Processing Request
 Error Diagnostic Information
 Security Policy Administration

 Security Policy Administration is not available.

Are you running the SiteMinder Authentication and Authorization services? If
not, Advanced Security won't be available.

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: simple createODBCdate question

2000-04-20 Thread Deanna L. Schneider

Date is definitely a reserved word in Access, and will throw errors.

-d




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



--
Archives: http://www.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: commas in strings

2000-04-20 Thread Justin MacCarthy

Yeah change the custom tag delimiter to a pipe or something else..
shouldn't be too hard?

~Justin

- Original Message -
From: graham lewis [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, April 20, 2000 2:30 PM
Subject: commas in strings


 I writing the results of a query to a list.  The list is a list of
strings.
 However, some of the strings have commas in them.  The list has to
 be comma deliminated as it is used by a custom tag that expects
 that input.

 Any bright ideas?
 --

 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.



A way to know if a template is encoded with CFENCODE?

2000-04-20 Thread Daive

Heya,

i'm about to build a template file that will look in a list of directory to
check if the cfm files are encrypted in it. ( i'm working via ftp server )
So my question is about detecting encrypted files, someone know a way to
check that? I can maybe check if the file containing specific characters but
i think that will take to much cpu process to do that with each files.

Any suggestions??

Daive
--
[EMAIL PROTECTED]
http://www.daive.qc.ca


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



OT Javascript Detection

2000-04-20 Thread Curtis Layton

Is there a way to detect whether a browser has scripting turned on?

Tia,

Curt

Curtis C. Layton
Web Applications Developer
Words In Progress, Inc.


--
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: Special character question:

2000-04-20 Thread Jason Larson

Go to:

http://hotwired.lycos.com/webmonkey/reference/special_characters/

Larzz

- Original Message -
From: "Pecora, James" [EMAIL PROTECTED]
To: "CF Talk (E-mail)" [EMAIL PROTECTED]
Sent: Thursday, April 06, 2000 2:49 PM
Subject: Special character question:


 What is this??

 #9;

 --

 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.



Help with grabbing data

2000-04-20 Thread Ben Densmore

This is a multi-part message in MIME format.

--=_NextPart_000_0045_01BF.2BA59F60
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

I'm not even sure if this can be done with CF but I thought I'd post =
anyway to see if I can get some ideas. The software that we sell here =
has a feature in it called "Active Update" which is an ISAPI.dll  what =
this does is look for updates on our server and send update the =
customers software if one is available. The first thing this dll does is =
register the user if they haven't done so. Now on our web server we have =
a directory where these registrations get stored. whenever someone =
registers this dll creates a .cdf file which gets named something like =
D0-20002004   which is the first 2 characters of the serial number and =
the date of the registration. I'm trying to find a way to everyday grab =
all the registrations and then insert them into a SQL Server DB so I can =
create a search interface for our tech support dept so they can look up =
registered users. I think the tough part is that these have a cdf =
extension, I need to rename it to a txt extension and then have SQL =
Server import this data, I would like to automate it as much as =
possible. If anyone might have some ideas they can toss at me I would =
appreciate it.

Thanks
Ben Densmore
Webmaster
eSupport.com, Inc
TouchStone Software Corp.


--=_NextPart_000_0045_01BF.2BA59F60
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'm not even sure if this can be done =
with CF but I=20
thought I'd post anyway to see if I can get some ideas. The software =
that we=20
sell here has a feature in it called "Active Update" which is an =
ISAPI.dllnbsp;=20
what this does is look for updates on our server and send update the =
customers=20
software if one is available. The first thing this dll does is register =
the user=20
if they haven't done so. Now on our web server we have a directory where =
these=20
registrations get stored. whenever someone registers this dll creates a =
.cdf=20
file which gets named something like D0-20002004nbsp;nbsp; which is =
the first=20
2 characters of the serial number and the date of the registration. I'm =
trying=20
to find a way to everyday grab all the registrations and then insert =
them into a=20
SQL Server DB so I can create a search interface for our tech support =
dept so=20
they can look up registered users. I think the tough part is that these =
have a=20
cdf extension, I need to rename it to a txt extension and then have SQL =
Server=20
import this data, I would like to automate it as much as possible. If =
anyone=20
might have some ideas they can toss at me I would appreciate =
it./FONT/DIV
DIVnbsp;/DIV
DIVFONT face=3DArial size=3D2Thanks/FONT/DIV
DIVFONT face=3DArial size=3D2Ben =
DensmoreBRWebmasterBReSupport.com,=20
IncBRTouchStone Software Corp.BR/FONT/DIV/BODY/HTML

--=_NextPart_000_0045_01BF.2BA59F60--

--
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: commas in strings

2000-04-20 Thread Jeff Shepler

First thought was to replace all the commas in the string with an uncommon
character. For example, if you know that the strings will not be file paths,
you can use the backslash.

As you build the list:
cfset List = ListAppend(someList, Replace(someString, ",", "\", "ALL"))

Then later, when you need to output the string, you'll have to convert it
back:
cfoutput#Replace(someString, "\", ",", "ALL")#/cfoutput

Not very "clean", but at the moment with less than a cup of coffee in me,
it's the best I can think of

-Original Message-
From: graham lewis [mailto:[EMAIL PROTECTED]]
Sent: Thursday, April 20, 2000 9:30 AM
To: [EMAIL PROTECTED]
Subject: commas in strings


I writing the results of a query to a list.  The list is a list of strings.

However, some of the strings have commas in them.  The list has to 
be comma deliminated as it is used by a custom tag that expects 
that input.

Any bright ideas?

--
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: OT Javascript Detection

2000-04-20 Thread Bill Killillay

http://www.cyscape.com/  -  BrowserHawk 2000, check it out.

 -Original Message-
 From: Curtis Layton [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, April 20, 2000 9:17 AM
 To: [EMAIL PROTECTED]
 Subject: OT Javascript Detection


 Is there a way to detect whether a browser has scripting turned on?

 Tia,

 Curt

 Curtis C. Layton
 Web Applications Developer
 Words In Progress, Inc.


 --
 
 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: OT Javascript Detection

2000-04-20 Thread Aidan Whitehall

 Is there a way to detect whether a browser has scripting turned on?

One easy way...

use href.location (rusty JS  ;-) to redirect the user to "hasjsenabled.html"

If they stay on the page, it's not enabled.



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

http://www.netshopperuk.co.uk/
Telephone +44 (01744) 648650
Fax +44 (01744) 648651
--
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: VisualFoxpro Datasource

2000-04-20 Thread Paige Chandler

Hi Jimmy,

A Visual FoxPro data source may consist of the Database Container (DBC) and
include the VFP tables: .dbf (DataBase File), .fpt (contains the memo data)
and a .cdx or .ndx for index files. Most likely today it would be a .cdx
(combination of indexes).  Good luck.

Regards,

Paige
- Original Message -
From: Jimmy Tam [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, April 19, 2000 12:21 PM
Subject: VisualFoxpro Datasource



 Can anyone tell me what is needed to setup a Visual Foxpro datasource?

 I have the .dbc, .dct, and .dcx files

 I can verify the datasource in the Cold Fusion administrator but when I
try
 to open the tables in Studio I get an
 error.

 Jimmy




 --

 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: OT: Still need some MSDE help

2000-04-20 Thread Bud

On 4/20/00, Ron Williams penned:
You have to install MSDE before you install WebBoard. In typical O'Reilly
fashion, they don't have "Install MSDE" as the first item in the install
menu. I don't remember off-hand where it is in the menu order, but just
choose the Install MSDE option before you install anything else and you
should be OK.

MSDE and SQL Server are two different animals. You can use either with
Webboard, but I don't believe you can "create" an MSDE database with SQL7.
Best to let the Webboard installation create the MSDE database for you,
then upsize to SQL Server afterwards.

Hi Ron. Thanks. I installed MSDE (through the WebBoard installation) 
3 times, each time uninstalling WebBoard first, after uninstalling it 
the 2nd two times. When I install WebBoard it doesn't create the 
WebBoard database. I uninstalled again, and installed MSDE from the 
Office 2000 CD. Same thing happened when I installed WebBoard. No 
database. O'Reilly said I could create an empty WebBoard database. I 
presume when you run WebBoard, it must create the necessary tables. 
So, while at the colo facility, I created an empty Access database 
and went to run the Upsizing wizard, and then it won't let me because 
I have to have a default printer selected. I don't know why 
considering there will never be a printer attached to the server. I 
didn't have my NT CD with me, so I had no printer drivers. So I guess 
I'm going to have to go there and install a printer driver before I 
can run the upsize wizard. I had created an empty database here and 
uploaded it, but if course it's not registered with MSDE. I was 
hoping there was a way to do that through a command line or something.

It's the WebBoard demo by the way. They said the demo must have a 
faulty installation.


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.



RE: Help with grabbing data

2000-04-20 Thread Bill Plummer

I think this if very doable in CF, but my mind goes to VB for stuff like
this.

I would write an NT Service that would watch this directory, load all new
files one at a time, parse the data as required, and insert into you SQL
database.  The Service would be installed on the server that has the
directory in question and run based on the timing interval you think
appropriate.

Not a trivial task, but doable...

For those who feel I'm a trader to CF, I like to reserve CF Server and it's
scheduled tasks for the critical web apps, not for what I consider to be
internal housekeeping.

-Original Message-
From: Ben Densmore [mailto:[EMAIL PROTECTED]]
Sent: Thursday, April 20, 2000 9:24 AM
To: [EMAIL PROTECTED]
Subject: Help with grabbing data


This is a multi-part message in MIME format.

--=_NextPart_000_0045_01BF.2BA59F60
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

I'm not even sure if this can be done with CF but I thought I'd post =
anyway to see if I can get some ideas. The software that we sell here =
has a feature in it called "Active Update" which is an ISAPI.dll  what =
this does is look for updates on our server and send update the =
customers software if one is available. The first thing this dll does is =
register the user if they haven't done so. Now on our web server we have =
a directory where these registrations get stored. whenever someone =
registers this dll creates a .cdf file which gets named something like =
D0-20002004   which is the first 2 characters of the serial number and =
the date of the registration. I'm trying to find a way to everyday grab =
all the registrations and then insert them into a SQL Server DB so I can =
create a search interface for our tech support dept so they can look up =
registered users. I think the tough part is that these have a cdf =
extension, I need to rename it to a txt extension and then have SQL =
Server import this data, I would like to automate it as much as =
possible. If anyone might have some ideas they can toss at me I would =
appreciate it.

Thanks
Ben Densmore
Webmaster
eSupport.com, Inc
TouchStone Software Corp.


--=_NextPart_000_0045_01BF.2BA59F60
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'm not even sure if this can be done =
with CF but I=20
thought I'd post anyway to see if I can get some ideas. The software =
that we=20
sell here has a feature in it called "Active Update" which is an =
ISAPI.dllnbsp;=20
what this does is look for updates on our server and send update the =
customers=20
software if one is available. The first thing this dll does is register =
the user=20
if they haven't done so. Now on our web server we have a directory where =
these=20
registrations get stored. whenever someone registers this dll creates a =
.cdf=20
file which gets named something like D0-20002004nbsp;nbsp; which is =
the first=20
2 characters of the serial number and the date of the registration. I'm =
trying=20
to find a way to everyday grab all the registrations and then insert =
them into a=20
SQL Server DB so I can create a search interface for our tech support =
dept so=20
they can look up registered users. I think the tough part is that these =
have a=20
cdf extension, I need to rename it to a txt extension and then have SQL =
Server=20
import this data, I would like to automate it as much as possible. If =
anyone=20
might have some ideas they can toss at me I would appreciate =
it./FONT/DIV
DIVnbsp;/DIV
DIVFONT face=3DArial size=3D2Thanks/FONT/DIV
DIVFONT face=3DArial size=3D2Ben =
DensmoreBRWebmasterBReSupport.com,=20
IncBRTouchStone Software Corp.BR/FONT/DIV/BODY/HTML

--=_NextPart_000_0045_01BF.2BA59F60--


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



li'l OT - SQL Server

2000-04-20 Thread Park, Simon

Is there a way to increment a value in SQL server with one database call -
sort of like 
UPDATE mytable
SET foofield = foofield++
WHERE fooid = 2
?   


=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Simon Park  Computer Systems Management, Inc.
[EMAIL PROTECTED]  205 South Whiting Street
Ph: 703-823-4300Suite 201
fax: 703-823-4301   Alexandria, VA  22304
 http://www.csmi.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: li'l OT - SQL Server

2000-04-20 Thread Justin MacCarthy

nearly ...

UPDATE table
SET field = (field + 1)
WHERE foobar

 Is there a way to increment a value in SQL server with one database call -
 sort of like
 UPDATE mytable
 SET foofield = foofield++
 WHERE fooid = 2
 ?



--
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: Help with grabbing data

2000-04-20 Thread Chris Evans

That's funny, I have a tendency to think cron and Perl.  :)  Either way,
you're right.  Leave CF to handle web applications.

Chris Evans
[EMAIL PROTECTED]
http://www.fuseware.com


-Original Message-
From: Bill Plummer [mailto:[EMAIL PROTECTED]]
Sent: Thursday, April 20, 2000 9:58 AM
To: [EMAIL PROTECTED]
Subject: RE: Help with grabbing data


I think this if very doable in CF, but my mind goes to VB for stuff like
this.

I would write an NT Service that would watch this directory, load all new
files one at a time, parse the data as required, and insert into you SQL
database.  The Service would be installed on the server that has the
directory in question and run based on the timing interval you think
appropriate.

Not a trivial task, but doable...

For those who feel I'm a trader to CF, I like to reserve CF Server and it's
scheduled tasks for the critical web apps, not for what I consider to be
internal housekeeping.

-Original Message-
From: Ben Densmore [mailto:[EMAIL PROTECTED]]
Sent: Thursday, April 20, 2000 9:24 AM
To: [EMAIL PROTECTED]
Subject: Help with grabbing data


This is a multi-part message in MIME format.

--=_NextPart_000_0045_01BF.2BA59F60
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

I'm not even sure if this can be done with CF but I thought I'd post =
anyway to see if I can get some ideas. The software that we sell here =
has a feature in it called "Active Update" which is an ISAPI.dll  what =
this does is look for updates on our server and send update the =
customers software if one is available. The first thing this dll does is =
register the user if they haven't done so. Now on our web server we have =
a directory where these registrations get stored. whenever someone =
registers this dll creates a .cdf file which gets named something like =
D0-20002004   which is the first 2 characters of the serial number and =
the date of the registration. I'm trying to find a way to everyday grab =
all the registrations and then insert them into a SQL Server DB so I can =
create a search interface for our tech support dept so they can look up =
registered users. I think the tough part is that these have a cdf =
extension, I need to rename it to a txt extension and then have SQL =
Server import this data, I would like to automate it as much as =
possible. If anyone might have some ideas they can toss at me I would =
appreciate it.

Thanks
Ben Densmore
Webmaster
eSupport.com, Inc
TouchStone Software Corp.


--=_NextPart_000_0045_01BF.2BA59F60
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'm not even sure if this can be done =
with CF but I=20
thought I'd post anyway to see if I can get some ideas. The software =
that we=20
sell here has a feature in it called "Active Update" which is an =
ISAPI.dllnbsp;=20
what this does is look for updates on our server and send update the =
customers=20
software if one is available. The first thing this dll does is register =
the user=20
if they haven't done so. Now on our web server we have a directory where =
these=20
registrations get stored. whenever someone registers this dll creates a =
.cdf=20
file which gets named something like D0-20002004nbsp;nbsp; which is =
the first=20
2 characters of the serial number and the date of the registration. I'm =
trying=20
to find a way to everyday grab all the registrations and then insert =
them into a=20
SQL Server DB so I can create a search interface for our tech support =
dept so=20
they can look up registered users. I think the tough part is that these =
have a=20
cdf extension, I need to rename it to a txt extension and then have SQL =
Server=20
import this data, I would like to automate it as much as possible. If =
anyone=20
might have some ideas they can toss at me I would appreciate =
it./FONT/DIV
DIVnbsp;/DIV
DIVFONT face=3DArial size=3D2Thanks/FONT/DIV
DIVFONT face=3DArial size=3D2Ben =
DensmoreBRWebmasterBReSupport.com,=20
IncBRTouchStone Software Corp.BR/FONT/DIV/BODY/HTML

--=_NextPart_000_0045_01BF.2BA59F60--


--
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: converting word docs to HTML [still not working]

2000-04-20 Thread Steve Bernard

Greg,

One of the recent posts mentioned that the Word 97 solution didn't work with
2000. Are you using a "2000" solution?

Steve

-Original Message-
From: Greg Saunders [mailto:[EMAIL PROTECTED]]
Sent: Thursday, April 20, 2000 10:25 AM
To: [EMAIL PROTECTED]
Subject: Re: converting word docs to HTML [still not working]


At 12:53 PM 4/20/00 -, David E. Crawford wrote:
Mike Dinowitz might have it.  We kind of worked together to get the right
solution.  Apparently between Office 97 and Office 2000 there was a
difference in the parameter for saving the files out.

Apparently so.  Or could it even be a separate method?  I've tried all
suggestions so far, as well as a brute force search of various Save-as
types, from -10 to 260, and found this:

  0-7 - save correctly (see David's post on Word formats)
  -1, 15, 106 - appear to save as Word docs
  all the rest (including 10 and 100 as suggested solutions) - give a
"Command failed" error

any other ideas?  I'm running CF 4.0 and Word 2000.  I also ran David
Crawford's original script, as reposted by David Shadovitz, and it failed
in the same way.

Thanks to everyone who has responded so far!

Greg Saunders


--
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: converting word docs to HTML [still not working]

2000-04-20 Thread Justin MacCarthy

Hi guys,

There is .bas script for homesite that does this. In the code the author
notes that

quote
' find the index of the HTML converter (this works around a bug in
' MS Word that prevents accessing the HTML converter by name) '
/quote

he does a loop over the .FileConverters collection until he finds  ClassName
= 'html'
and then uses the current convertor to convert the file ..

The script is at : http://scripts.hsguide.com/scripts.html

I hope this info helps ...let me know how you get on ..

Justin  ~Irish ColdFusion Head



- Original Message -
From: Greg Saunders [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, April 20, 2000 3:25 PM
Subject: Re: converting word docs to HTML [still not working]


 At 12:53 PM 4/20/00 -, David E. Crawford wrote:
 Mike Dinowitz might have it.  We kind of worked together to get the right
 solution.  Apparently between Office 97 and Office 2000 there was a
 difference in the parameter for saving the files out.

 Apparently so.  Or could it even be a separate method?  I've tried all
 suggestions so far, as well as a brute force search of various Save-as
 types, from -10 to 260, and found this:

   0-7 - save correctly (see David's post on Word formats)
   -1, 15, 106 - appear to save as Word docs
   all the rest (including 10 and 100 as suggested solutions) - give a
 "Command failed" error

 any other ideas?  I'm running CF 4.0 and Word 2000.  I also ran David
 Crawford's original script, as reposted by David Shadovitz, and it failed
 in the same way.

 Thanks to everyone who has responded so far!

 Greg Saunders

 --

 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: converting word docs to HTML [still not working]

2000-04-20 Thread Greg Saunders

At 10:32 AM 4/20/00 -0400, Steve Bernard wrote:
Greg,

One of the recent posts mentioned that the Word 97 solution didn't work with
2000. Are you using a "2000" solution?

I'd prefer to call it a "2000" failure, but yes, that's what I'm attempting.

Gregory M. Saunders, Ph.D.
Senior Design Architect
Cognitive Arts Corporation (http://www.cognitivearts.com)
120 S. Riverside Plaza, Suite 1520
Chicago, IL 60606

--
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: li'l OT - SQL Server

2000-04-20 Thread Marius milosav

I don't think you can use the increment operator but you can "manually"
increment
UPDATE mytable
 SET foofield = foofield + 1
 WHERE fooid = 2

The foofield should be a numeric datatype.

MArius Milosav
Virtual Help Desk Demo
www.scorpiosoft.com/vhd/login.cfm

- Original Message -
From: Park, Simon [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, April 20, 2000 10:05 AM
Subject: li'l OT - SQL Server


 Is there a way to increment a value in SQL server with one database call -
 sort of like
 UPDATE mytable
 SET foofield = foofield++
 WHERE fooid = 2
 ?


 =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
 Simon Park Computer Systems Management, Inc.
 [EMAIL PROTECTED] 205 South Whiting Street
 Ph: 703-823-4300 Suite 201
 fax: 703-823-4301 Alexandria, VA  22304
  http://www.csmi.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.



OT: Understanding basic differences between browsers

2000-04-20 Thread Larry W. Virden

A developer has asked me to help them locate a source of info describing
differences between Microsoft Internet Explorer and Netscape.  An area in
particular that was mentioned as being of interest was how each handled
'returning from a frame'.

Is there a site online which attempts to maintain relatively up to date
descriptions of differences so that people trying to code frames, etc.
can figure out how best to code them?
-- 
Larry W. Virden mailto:[EMAIL PROTECTED]
URL: http://www.purl.org/NET/lvirden/
Unless explicitly stated to the contrary, nothing in this posting should 
be construed as representing my employer's opinions.
--
--
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: Is Able Commerce truly user-unfriendly and hence useless?

2000-04-20 Thread Bill Poff

We are an Able Commerce customer and paid the "big bucks" for the source
code version. 

The product is very powerful but not user friendly and more than a little
obfuscated. If you're having trouble with one store you can imagine our
fun developing and hosting multiple sites at once.

I recently discovered an Able Commerce knock-off called CFWebstore which
might be a much better solution for smaller stores.

CFWebstore costs $150, less in quantities. http://www.cfwebstore.com

I don't know anything about the product but the price is definitely right.
$150 for full source code. At that price you can afford to do some
bug fixing.

We're thinking about giving our customers the choice of which software
they want us to use for their site.

--Bill

At 02:44 PM 4/16/00 , you wrote:
I am only about 4 months into Cold Fusion. Able is the first CF store package for me 
to use. I have
been very frustrated with it's "Wizards" mostly due to a lack or non-integration of 
help files.
Figuring out how to customize something is mostly a 'try and see what happens' 
process. Their
documentation is not easily accessible as far as trying to find specifically what you 
want to do. I
started with the standard version and was too limited, so I had to upgrade to the 
open source. I'm
not saying they do this, but it almost seems that they limit what you can do just so 
you'll have to
pay another $1500 for open source. I'm just starting to get comfortable with it and 
would probably
use it again since I would be much more familiar with it the next time around. The 
backend is very
solid and with my limited experience with CF I wouldn't even want to try to build 
everything the
program does.

If I were able to give Able some advice, it would be to add a help button to every 
page of the admin
section. Hitting the button would load a pop up window with help that is specific to 
where you are
in the program. This would have saved me hours in learning it... and having to call 
support to
figure it out.


Chris Giminez
Owner - Cyber Scriber Web Site Design
831-728-4469
ICQ# 2628000




  I have tried to get Able Commerce which is built on Cold Fusion templates
  up and running as an e-commerce solution. Problem is the program seems so
  utterly rigid in deployment that there's no way to get into the pages to
  customize the look.
 
  The basic look made by Able Commerce is so ugly that the resulting pages
  make one desire to throw up. Hence changing the look is critical, yet
  apparently impossible when you go to the editing web pages section.
 
  Is Able Commerce truly an impossible program to work with and could anyone
  for the love of God please recommend something more user friendly and
  actually usable. We've lost a good two weeks messing around with Able
  Commerce, it has all in all been a highly frustrating experience.
 
  Would appreciate a reference to any other shopping cart e-commerce solution.
 
 
  --
  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. 

-
Bill Poff - ICN.NET 
   INTERNET HOSTING - DEVELOPMENT - CONSULTING SERVICES
PO Box 2570, Roanoke, VA 24010 - 540-343-8322 - Fax: 540-343-0691
-
--
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: Outlook express

2000-04-20 Thread Jennifer

If you just need separate mailboxes, that is possible. There is a dropdown 
menu with a selection called accounts (which menu depends on your version 
of Outlook, so I'm not even going there). If you select it, you can add 
another email address and its information. Then make a new mailbox folder 
and make a filter to send all the mail sent to the address that is yours to 
the new mailbox folder. If you can't find what you are looking for in your 
version, consult the help feature and look for:
accounts
folder
filter

At 06:23 PM 4/19/00 -0600, you wrote:
you have to create different user profiles for windows 98 (im assuming you
are using) and then each person needs to log on to windows under their
profile, and will have  access to their own outlook express profile..



-Original Message-
From: vinicius [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, April 05, 2000 9:40 AM
To: [EMAIL PROTECTED]
Subject: OT: Outlook express


This might sound stupid, but ...
Can I create different profiles in Outlook express 4.0? I'm tired to share
my mail box with my syster.
[]'s
vinicius



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

2000-04-20 Thread Raymond K. Camden

CFMODULE runs a template just as if it were a custom tag, so if that
template does:

CFSET Caller.Sum = ...

then your calling template will have access to a variable called Sum.

I'm assuming you know about custom tags and such so I won't go into too much
detail here.

===
Raymond Camden, Cold Fusion Jedi Master for Syntegra (www.syntegra.com)
Allaire Certified Instructor and Member of Team Allaire

Email   : [EMAIL PROTECTED]
ICQ UIN : 3679482

"My ally is the Force, and a powerful ally it is." - Yoda


 -Original Message-
 From: Mark Jones [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, April 20, 2000 10:48 AM
 To: '[EMAIL PROTECTED]'
 Subject: CFMODULE


 Quickie,

 Does anyone know if it is possible, and then how, to get
 something back from
 a CFMODULE call.  For instance the sum of the 3 numbers or something like
 that.

 Cheers in advance,

 Mark


--
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: Is Able Commerce truly user-unfriendly and hence useless?

2000-04-20 Thread Howell, Katie

I was extremely impressed with cfwebstore.  Very customizable, and the
developer (Mary Jo Sminky) has a support forum and mail list if you run into
problems.  Anytime I posted to the forum or list I had a response within 24
hours.  A great deal for $150.

-Original Message-
From: Bill Poff [mailto:[EMAIL PROTECTED]]
Sent: Thursday, April 20, 2000 11:05 AM
To: [EMAIL PROTECTED]
Subject: Re: Is Able Commerce truly user-unfriendly and hence useless?


We are an Able Commerce customer and paid the "big bucks" for the source
code version. 

The product is very powerful but not user friendly and more than a little
obfuscated. If you're having trouble with one store you can imagine our
fun developing and hosting multiple sites at once.

I recently discovered an Able Commerce knock-off called CFWebstore which
might be a much better solution for smaller stores.

CFWebstore costs $150, less in quantities. http://www.cfwebstore.com

I don't know anything about the product but the price is definitely right.
$150 for full source code. At that price you can afford to do some
bug fixing.

We're thinking about giving our customers the choice of which software
they want us to use for their site.

--Bill

At 02:44 PM 4/16/00 , you wrote:
I am only about 4 months into Cold Fusion. Able is the first CF store
package for me to use. I have
been very frustrated with it's "Wizards" mostly due to a lack or
non-integration of help files.
Figuring out how to customize something is mostly a 'try and see what
happens' process. Their
documentation is not easily accessible as far as trying to find
specifically what you want to do. I
started with the standard version and was too limited, so I had to upgrade
to the open source. I'm
not saying they do this, but it almost seems that they limit what you can
do just so you'll have to
pay another $1500 for open source. I'm just starting to get comfortable
with it and would probably
use it again since I would be much more familiar with it the next time
around. The backend is very
solid and with my limited experience with CF I wouldn't even want to try to
build everything the
program does.

If I were able to give Able some advice, it would be to add a help button
to every page of the admin
section. Hitting the button would load a pop up window with help that is
specific to where you are
in the program. This would have saved me hours in learning it... and having
to call support to
figure it out.


Chris Giminez
Owner - Cyber Scriber Web Site Design
831-728-4469
ICQ# 2628000




  I have tried to get Able Commerce which is built on Cold Fusion
templates
  up and running as an e-commerce solution. Problem is the program seems
so
  utterly rigid in deployment that there's no way to get into the pages to
  customize the look.
 
  The basic look made by Able Commerce is so ugly that the resulting pages
  make one desire to throw up. Hence changing the look is critical, yet
  apparently impossible when you go to the editing web pages section.
 
  Is Able Commerce truly an impossible program to work with and could
anyone
  for the love of God please recommend something more user friendly and
  actually usable. We've lost a good two weeks messing around with Able
  Commerce, it has all in all been a highly frustrating experience.
 
  Would appreciate a reference to any other shopping cart e-commerce
solution.
 
 
 

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

-
Bill Poff - ICN.NET 
   INTERNET HOSTING - DEVELOPMENT - CONSULTING SERVICES
PO Box 2570, Roanoke, VA 24010 - 540-343-8322 - Fax: 540-343-0691
-

--
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: Understanding basic differences between browsers

2000-04-20 Thread B.Cravens

 Is there a site online which attempts to maintain relatively up to date
 descriptions of differences so that people trying to code frames, etc.
 can figure out how best to code them?


Actually, the best resource I've found is in print: Javascript: The
Definitive Guide by O'Reilly.  It is very good about telling you the
differences in Browsers and JavaScript versions.  The reference section is
killer; it's the most complete syntax guide I've found, and it tells you
what works with what.

Billy Cravens
[EMAIL PROTECTED]



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



Another li'l OT - performance penalty for joining 3 or more tables

2000-04-20 Thread Park, Simon

Thanks for the help on the incrementing field value question. I have another
question..

How bad is it, performance-wise, to join 3 or 4 tables in a SELECT
statement? I could re-design the tables to include redundant fields so I
join fewer tables. Should I? 

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Simon Park  Computer Systems Management, Inc.
[EMAIL PROTECTED]  205 South Whiting Street
Ph: 703-823-4300Suite 201
fax: 703-823-4301   Alexandria, VA  22304
 http://www.csmi.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.



How do I carry an Array over to another page? - HELP!!!!

2000-04-20 Thread Larry Juncker

I have created the shipping methods for line items in Able Commerce Builder
and am trying to carry my array over to my next page.  Any ideas on what I
need to do?


CFIF Company.ShipClass is not "c"   !--- Lookup the shipping method and
setup the shippingtemp table ---
CFIF  #cgi.REMOTE_ADDR# EQ "209.234.84.35"
OR #cgi.REMOTE_ADDR# EQ "216.119.11.156"

CFINCLUDE TEMPLATE="#Root#/basket/_LIMethod.cfm"

CFELSE
CFINCLUDE TEMPLATE="#Root#/basket/_method.cfm"
/CFIF

When I come back from this Include, I can still see the array by telling it
to CFOUTPUT#Shipping_Cost_Array[1][1] for instance.  However when I go to
the next template.  It tells me the folowing error:

Error resolving parameter SHIPPING_COST_ARRAY

ColdFusion was unable to determine the value of the parameter. This problem
is very likely due to the fact that either:

You have misspelled the parameter name, or
You have not specified a QUERY attribute for a CFOUTPUT, CFMAIL, or CFTABLE
tag.

The error occurred while evaluating the expression:


#Shipping_Cost_Array[1][1]#

Any help on this would be greatly appreciated.


H   Larry Juncker
 L  Senior Cold Fusion Programmer
  I Heartland Communications Group
  Internet Division

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



Another Fusebox question

2000-04-20 Thread aslam bajaria

I have a form. This form is called by index.cfm.

When someone submits this form, it goes back to
index.cfm.

Now, index.cfm calls(includes) another file called
ValidateForm.cfm. How do I go back to index.cfm from
this file. The user does not see this file and does
not know that this file exists. Therefore, the user
cannot submit anything from this file.

Do i have to create a form and supply values as
"hidden" and then have javascript submit the form
automatically to index.cfm?

I have tried doing that but it did not work.

The way I have Validate.cfm file is as follows:

Validate.cfm:
-

script language="javascript"
function Validate(){
document.frm_validate.submit();
}

/script
cfset formValid = true

cfform action="Index.cfm" name="frm_validate"
method="post"
input type="hidden" name="fuseaction"
value="CAformNotValid"

cfif form.Name=""
cfset formValid=false
font color=red
   bPlease type in the name/b
 /font
/cfif

...


/cfform


All the code is doing is validating the form input.
How do i make sure that all the false fields are
returned with a message in red etc.?

Thanks All

__
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: How do I carry an Array over to another page? - HELP!!!!

2000-04-20 Thread Jordon Saardchit

Pop the array into a Structure, serialize the structure with CFWDDX and pass
the WDDX packet to your next page.  Then deserialize the WDDXPacket on the
next page and voila.  You have your array.

-Jordon

-Original Message-
From: Larry Juncker [mailto:[EMAIL PROTECTED]]
Sent: Thursday, April 20, 2000 8:42 AM
To: CF-Talk
Subject: How do I carry an Array over to another page? - HELP


I have created the shipping methods for line items in Able Commerce Builder
and am trying to carry my array over to my next page.  Any ideas on what I
need to do?


CFIF Company.ShipClass is not "c"   !--- Lookup the shipping method and
setup the shippingtemp table ---
CFIF  #cgi.REMOTE_ADDR# EQ "209.234.84.35"
OR #cgi.REMOTE_ADDR# EQ "216.119.11.156"

CFINCLUDE TEMPLATE="#Root#/basket/_LIMethod.cfm"

CFELSE
CFINCLUDE TEMPLATE="#Root#/basket/_method.cfm"
/CFIF

When I come back from this Include, I can still see the array by telling it
to CFOUTPUT#Shipping_Cost_Array[1][1] for instance.  However when I go to
the next template.  It tells me the folowing error:

Error resolving parameter SHIPPING_COST_ARRAY

ColdFusion was unable to determine the value of the parameter. This problem
is very likely due to the fact that either:

You have misspelled the parameter name, or
You have not specified a QUERY attribute for a CFOUTPUT, CFMAIL, or CFTABLE
tag.

The error occurred while evaluating the expression:


#Shipping_Cost_Array[1][1]#

Any help on this would be greatly appreciated.


H   Larry Juncker
 L  Senior Cold Fusion Programmer
  I Heartland Communications Group
  Internet Division


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



StringIndexOutOfBounds

2000-04-20 Thread Scott Rowe

If i have a java cfobject and ai call a method that returns a string that I
want to format. If the string has characters that aren't in 7-bit ASCII,
like the 1/2 symbol, I get an exception (StringIndexOutOfBounds).  This
looks to be a bug in Cold Fusion.  Does anyone know anything about it?

Scott

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



Other CC tags

2000-04-20 Thread Vance Duke

I am looking for other CFX or CF custom tags for doing CC Authorization
other than the Allaire CyberCash tag.  Has any one had any experience with
any other tags?

Vance Duke
Application Developer

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



Do Any CF based online order entry products exist?

2000-04-20 Thread Ben Densmore

This is a multi-part message in MIME format.

--=_NextPart_000_010E_01BFAAC2.0FCAF5C0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

My company is looking to finally start having our sales dept enter their =
orders into a database rather than writing them out on paper. I had all =
ready started working on a web based version but was wondering if there =
were any CF based apps that some one has all ready created that can =
handle entering in customer info and purchasing info as well as =
inserting this data into an accounting interface and shipping etc...

Thanks
Ben Densmore
Webmaster
eSupport.com, Inc
TouchStone Software Corp.


--=_NextPart_000_010E_01BFAAC2.0FCAF5C0
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=3D2My company is looking to finally start =
having our=20
sales dept enter their orders into a database rather than writing them =
out on=20
paper. I had all ready started working on a web based version but was =
wondering=20
if there were any CF based apps that some one has all ready created that =
can=20
handle entering in customer info and purchasing info as well as =
inserting this=20
data into an accounting interface and shipping etc.../FONT/DIV
DIVnbsp;/DIV
DIVFONT face=3DArial size=3D2Thanks/FONT/DIV
DIVFONT face=3DArial size=3D2Ben =
DensmoreBRWebmasterBReSupport.com,=20
IncBRTouchStone Software Corp.BR/FONT/DIV/BODY/HTML

--=_NextPart_000_010E_01BFAAC2.0FCAF5C0--

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



Able Commerce knock-off

2000-04-20 Thread Mike Randolph

Hello CF-Talk,

"Able Commerce knock-off called "

Do you really want to purchase from a product that is so obviously built
while looking at the AbleCommerce Builder product?  What does this say about
the company?

We pride ourselves at AbleCommerce in providing original solutions to tough
e-business issues.  Look at our new AuctionBuilder product to see where our
new products are headed, BEFORE you drop your money on the table.
AbleCommerce Builder is a proven product, with proven support and a proven
company behind it.

Cheers,

Mike Randolph

-Original Message-
From: Bill Poff [EMAIL PROTECTED]
To: [EMAIL PROTECTED] [EMAIL PROTECTED]
Date: Thursday, April 20, 2000 7:59 AM
Subject: Re: Is Able Commerce truly user-unfriendly and hence useless?


We are an Able Commerce customer and paid the "big bucks" for the source
code version.

The product is very powerful but not user friendly and more than a little
obfuscated. If you're having trouble with one store you can imagine our
fun developing and hosting multiple sites at once.

I recently discovered an Able Commerce knock-off called CFWebstore which
might be a much better solution for smaller stores.

CFWebstore costs $150, less in quantities. http://www.cfwebstore.com

I don't know anything about the product but the price is definitely right.
$150 for full source code. At that price you can afford to do some
bug fixing.

We're thinking about giving our customers the choice of which software
they want us to use for their site.

--Bill

At 02:44 PM 4/16/00 , you wrote:
I am only about 4 months into Cold Fusion. Able is the first CF store
package for me to use. I have
been very frustrated with it's "Wizards" mostly due to a lack or
non-integration of help files.
Figuring out how to customize something is mostly a 'try and see what
happens' process. Their
documentation is not easily accessible as far as trying to find
specifically what you want to do. I
started with the standard version and was too limited, so I had to upgrade
to the open source. I'm
not saying they do this, but it almost seems that they limit what you can
do just so you'll have to
pay another $1500 for open source. I'm just starting to get comfortable
with it and would probably
use it again since I would be much more familiar with it the next time
around. The backend is very
solid and with my limited experience with CF I wouldn't even want to try
to build everything the
program does.

If I were able to give Able some advice, it would be to add a help button
to every page of the admin
section. Hitting the button would load a pop up window with help that is
specific to where you are
in the program. This would have saved me hours in learning it... and
having to call support to
figure it out.


Chris Giminez
Owner - Cyber Scriber Web Site Design
831-728-4469
ICQ# 2628000




  I have tried to get Able Commerce which is built on Cold Fusion
templates
  up and running as an e-commerce solution. Problem is the program seems
so
  utterly rigid in deployment that there's no way to get into the pages
to
  customize the look.
 
  The basic look made by Able Commerce is so ugly that the resulting
pages
  make one desire to throw up. Hence changing the look is critical, yet
  apparently impossible when you go to the editing web pages section.
 
  Is Able Commerce truly an impossible program to work with and could
anyone
  for the love of God please recommend something more user friendly and
  actually usable. We've lost a good two weeks messing around with Able
  Commerce, it has all in all been a highly frustrating experience.
 
  Would appreciate a reference to any other shopping cart e-commerce
solution.
 
 

 --

  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.

-
Bill Poff - ICN.NET
   INTERNET HOSTING - DEVELOPMENT - CONSULTING SERVICES
PO Box 2570, Roanoke, VA 24010 - 540-343-8322 - Fax: 540-343-0691
-
---
---
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

RE: CFWebStore - Was Is Able Commerce etc..

2000-04-20 Thread Howell, Katie

Does CF WebStore:

a) Support CyberCash
Yes
b) Customer online order tracking
No
c) ESD - Electronic Softgood Distribution
Don't know.

see http://www.cfwebstore.com for more info

HTH

Katie





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



while loop

2000-04-20 Thread mirza baig

If you want to implement a while loop in CF, how do
you do it?

Thank you.
Mirza

__
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: Understanding basic differences between browsers

2000-04-20 Thread Aaron Johnson

Larry,

Check out webmonkey:

http://hotwired.lycos.com/webmonkey/reference/browser_chart/index.html

Aaron

-Original Message-
From: Larry W. Virden [mailto:[EMAIL PROTECTED]]
Sent: Thursday, April 20, 2000 8:02 AM
To: [EMAIL PROTECTED]
Subject: OT: Understanding basic differences between browsers


A developer has asked me to help them locate a source of info describing
differences between Microsoft Internet Explorer and Netscape.  An area in
particular that was mentioned as being of interest was how each handled
'returning from a frame'.

Is there a site online which attempts to maintain relatively up to date
descriptions of differences so that people trying to code frames, etc.
can figure out how best to code them?
--
Larry W. Virden mailto:[EMAIL PROTECTED]
URL: http://www.purl.org/NET/lvirden/
Unless explicitly stated to the contrary, nothing in this posting should
be construed as representing my employer's opinions.
--

--
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: Another li'l OT - performance penalty for joining 3 or more tables

2000-04-20 Thread Ron Anderson

Simon,

You may want to create a view that contains the tables that you want to
join. I don't know the performance results of a view versus the multiple
joins. It'll be cleaner for coding to reference a view than the multiple
tables.

/Ron

-Original Message-
From: Park, Simon [mailto:[EMAIL PROTECTED]]
Sent: Thursday, April 20, 2000 8:51 AM
To: '[EMAIL PROTECTED]'
Subject: Another li'l OT - performance penalty for joining 3 or more
tables


Thanks for the help on the incrementing field value question. I have another
question..

How bad is it, performance-wise, to join 3 or 4 tables in a SELECT
statement? I could re-design the tables to include redundant fields so I
join fewer tables. Should I?

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Simon Park  Computer Systems Management, Inc.
[EMAIL PROTECTED]  205 South Whiting Street
Ph: 703-823-4300Suite 201
fax: 703-823-4301   Alexandria, VA  22304
 http://www.csmi.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: UNSUBSCRIBE

2000-04-20 Thread Fred Sanders

What can I say? I'm old school, really old school, even before the elite BS

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: "Brandon Whitaker" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, April 20, 2000 7:03 AM
Subject: Re: UNSUBSCRIBE


 eww an 3LiTe Hack3r

 No, no, no, NO!  You haven't been keeping up with the Attrition.com
mirror.

 it's 3l33t haxOr.

 I'm still trying to figure out if the originator of this thread was
serious
 or not...

 Having a bad day?
 Imagine this...
 
 You are in total seclusion from that hectic place called "The World".

 "You are in a maze of twisty little message threads, all different..."

 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: Able Commerce knock-off

2000-04-20 Thread Adrian Cooper


- Original Message -
From: Mike Randolph [EMAIL PROTECTED]
Sent: 20 April 2000 17:20


 Do you really want to purchase from a product that is so obviously built
 while looking at the AbleCommerce Builder product?  What does this say about
 the company?

It says to me that they recognise the good qualities of your product, whilst
also recognising the defficiencies as they perceive them to be - and apparently
others perceive them to be as well. If they can address those issues at 1/10 of
the price - then good luck to them I say.

If CF WebShop does everything AbleCommerce does, is more flexible, and 1/10 of
the price for open source  - where would_you_put your eCommerce platform
dollars?


 We pride ourselves at AbleCommerce in providing original solutions to tough
 e-business issues.  Look at our new AuctionBuilder product to see where our
 new products are headed,

The disucssion is not about Auction products, it is about eStore products.


 BEFORE you drop your money on the table.
 AbleCommerce Builder is a proven product, with proven support and a proven
 company behind it.

That as may be - but it doesn't mean that you can be arrogant or complacent
about it. Being first to market, or market leader isn't always good enough
unless you are M$ or Inte$. Over here at least we have a saying - "the customer
is always right" - which means that you should listen to your customers and act
acordingly. If your customers say that your product is difficult to customise,
too expensive for open source etc.,  - then you should listen to them.

I for one don't have a problem with AbleCommerce, and I certainly do recognise
its significance and standing, but that does not mean you are unique in that.
Instead of telling us how great your product is, how about addressing the issues
of flexibility and price?

Adrian Cooper.



--
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: Query Cache Question

2000-04-20 Thread Adrian Wright

Is the cached query limit on a per server basis or per application basis?

-Original Message-
From: Pete Freitag [mailto:[EMAIL PROTECTED]]
Sent: Thursday, April 20, 2000 1:32 AM
To: [EMAIL PROTECTED]
Subject: RE: Query Cache Question


This is a good example of a query not to cache this way, let me explain
why...
Your idea with the dynamic query name shows that you have an idea why this
might not work. It will cache the query in memory with the value that you
first executed it with.  Keep in mind that cold fusion can only have 100
queries cached at once, so you don't want to use them all up in one place.

--
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: Other CC tags

2000-04-20 Thread Bill Plummer

If you don't get a good answer, hammer back to me.  I did a CC CFapp with a
custom tag talking to CyberCash that worked pretty well.  The tag cost about
a 100.00 and was fairly easy to get and use.  I was with another company at
the time, and don't remember the name of the tag, but found directions to
the developer's site in Allaire's Tag Gallery.

-Original Message-
From: Vance Duke [mailto:[EMAIL PROTECTED]]
Sent: Thursday, April 20, 2000 12:05 PM
To: [EMAIL PROTECTED]
Subject: Other CC tags


I am looking for other CFX or CF custom tags for doing CC Authorization
other than the Allaire CyberCash tag.  Has any one had any experience with
any other tags?

Vance Duke
Application Developer


--
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: Query Cache Question

2000-04-20 Thread Emily B. Kim

Is the cached query limit on a per server basis or per application basis?
 
i believe it is 100 queries per server. -emily

--
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: while loop

2000-04-20 Thread Jennifer

At 09:33 AM 4/20/00 -0700, you wrote:
If you want to implement a while loop in CF, how do
you do it?

cfloop condition="x lt 3"
for while x is less that 3

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



the definitive summary to variable scopes - correct?

2000-04-20 Thread Mike Amburn

please correct me if i'm wrong, but based on input over the past few days

variable scope required:
  1) Server
  2) Application
  3) Session
  4) Attributes
  5) Caller

variable scope not required, scanned in the following order:
  1) local (i.e. Variables)
  2) CGI
  3) File (???)
  4) URL
  5) Form
  6) Cookie
  7) Client

- is the above correct?
- is there any difference in using Variables.x and not using it?
- what are File variables?
--
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: the definitive summary to variable scopes - correct?

2000-04-20 Thread Mike Amburn

and what are Server variables?

-Original Message-
From: Mike Amburn [mailto:[EMAIL PROTECTED]]
Sent: Thursday, April 20, 2000 1:05 PM
To: [EMAIL PROTECTED]
Subject: the definitive summary to variable scopes - correct?


please correct me if i'm wrong, but based on input over the past few days

variable scope required:
  1) Server
  2) Application
  3) Session
  4) Attributes
  5) Caller

variable scope not required, scanned in the following order:
  1) local (i.e. Variables)
  2) CGI
  3) File (???)
  4) URL
  5) Form
  6) Cookie
  7) Client

- is the above correct?
- is there any difference in using Variables.x and not using it?
- what are File variables?
--
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.



CF - Spectra

2000-04-20 Thread Won Lee

Anyone know of web sites dedicated to spectra development?  
Better yet anyone know of any good books about spectra development?
--
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: the definitive summary to variable scopes - correct?

2000-04-20 Thread Allen

server variables can exist across multiple templates for an application.
they're stored in the server's registry.

- Original Message -
From: "Mike Amburn" [EMAIL PROTECTED]
To: "Cf-Talk" [EMAIL PROTECTED]
Sent: Thursday, April 20, 2000 12:08 PM
Subject: RE: the definitive summary to variable scopes - correct?


 and what are Server variables?

 -Original Message-
 From: Mike Amburn [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, April 20, 2000 1:05 PM
 To: [EMAIL PROTECTED]
 Subject: the definitive summary to variable scopes - correct?


 please correct me if i'm wrong, but based on input over the past few days

 variable scope required:
   1) Server
   2) Application
   3) Session
   4) Attributes
   5) Caller

 variable scope not required, scanned in the following order:
   1) local (i.e. Variables)
   2) CGI
   3) File (???)
   4) URL
   5) Form
   6) Cookie
   7) Client

 - is the above correct?
 - is there any difference in using Variables.x and not using it?
 - what are File variables?
 --

 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: the definitive summary to variable scopes - correct?

2000-04-20 Thread Emily B. Kim

i believe that Request variables also belong in that upper list. in answer
to your question about a difference in scoping vs. not scoping in the lower
list, you can choose to use the prefixes or not. some people purposely do
not scope their variables to make their templates more flexible (allows them
to use the same template to either accept info from, let's say, both url and
form variables). but the recommendation from allaire is to scope the
variable because:
1. it avoid confusion for the developer (sometimes you may have variables of
the same name from different scopes on the same page)
2. if avoids confusion for the cf app server, too (if you have to variables
of the same name but different scopes on the same page and you don't scope
the variables, then it process the variables in the "scanned order" you have
listed below - whichever one it hits first is the one that is used)
3. supposedly, there is a performance gain if you scope the variables 'cause
cf doesn't then have to scan for you.
-emily

variable scope required:
  1) Server
  2) Application
  3) Session
  4) Attributes

  5) Caller

variable scope not required, scanned in the following order:
  1) local (i.e. Variables)
  2) CGI
  3) File (???)
  4) URL
  5) Form
  6) Cookie
  7) Client
- is there any difference in using Variables.x and not using it?
- what are File variables?
---
---
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: the definitive summary to variable scopes - correct?

2000-04-20 Thread Dave Watts

 server variables can exist across multiple templates for an
 application. they're stored in the server's registry.

Server variables are stored in memory, and are available to every CF script
run on that machine. Client variables may be stored in the Registry, or in a
database, or in a cookie.

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: Big Problems!! - VNC

2000-04-20 Thread Tariq Ahmed


We we've been running VNC for a few weeks, it's chunky and
slow. But we've had problems with PCAnywhere32.. Which in itself works
awesome. But it uses up significant CPU power then VNC. And also, there's
a known bug with PCAnywhere32 and WinNT, where it screws up the display
drivers and all you can do is run in default VGA mode.



On Thu, 20 Apr 2000, Pete Freitag wrote:

 Was that on NT? I've found that VNC runs much slower on NT than on a unix
 environment with X-Windows(it flies on X!).  Haven't had problems running it
 with unix, but it was very slow on NT.  I suspect this has to do with the
 GUI architecture.
 
 ___
 Pete Freitag
 CFDEV.COM
 Cold Fusion Developer Resources
 http://www.cfdev.com/
 
 -Original Message-
 From: Richard Darracott [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, April 20, 2000 12:25 AM
 To: [EMAIL PROTECTED]
 Subject: RE: Big Problems!! - VNC
 
 
 On the VNC side of things I have just had VNC removed from our Cold Fusion
 server as it was causing the web server to lock up on a regular basis.  In
 our experience it we used VNC to longer period of time (or even too many
 times during the day) the server would lock for over 10 minutes.
 After talking to the administrators at the hosting company we came to the
 conclusion that VNC was causing this.
 
 Has anyone else has similar problems?
 
 Richard Darracott
 Software Development Manager
 7am.com Limited
 
 
  -Original Message-
  From: Erika Foster [mailto:[EMAIL PROTECTED]]
  Sent: Monday, April 17, 2000 1:21 PM
  To: [EMAIL PROTECTED]
  Subject: Re: Big Problems!!
 
 
  Big thumbs up for VNC.  I use it for remote Cold Fusion
  Administration a
  couple states away.  Seems very secure and very easy to use
  on this end.  I
  was very skeptical when our web host suggested it, but am
  very pleased with
  the performance and the ease of use.
 
  Erika
 
 
  - Original Message -
  From: "Computer Simplistics Support" [EMAIL PROTECTED]
  To: [EMAIL PROTECTED]
  Sent: Sunday, April 16, 2000 5:07 PM
  Subject: Re: Big Problems!!
 
 
   Not sure on that =)
  
   But to add to this thread, a FREE program called VNC is
  available, and it
  is
   GREAT. Works on NT/2000 fine, small, and free.. did I
  mention free? Also,
  it
   is for a WIDE variety of OS's..
  
   http://www.uk.research.att.com/vnc/
  
   Scott Berry
   --
   Computer Simplistics Support
   "Simple Solutions for a Complex World"
   http://www.c-s.net
   661-296-4315
  
  
   - Original Message -
   From: "Will" [EMAIL PROTECTED]
   To: [EMAIL PROTECTED]
   Sent: Sunday, April 16, 2000 5:03 PM
   Subject: Re: Big Problems!!
  
  
How does NetMeeting allow for remote control and file transfer to
  another
computer?
   
- Original Message -
From: "Peter Tilbrook" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Sunday, April 16, 2000 4:11 PM
Subject: RE: Big Problems!!
   
   
 Tip: you can use Microsoft NetMeeting in the same fashion as PC
  Anywhere
 (and it's free to boot).

 -Original Message-
 From: Chris Carpenter [mailto:[EMAIL PROTECTED]]
 Sent: Sunday, 16 April 2000 6:47 PM
 To: coldfusion
 Subject: Big Problems!!


 Hi Everyone,
 i am launching a site tomorrow and i have problems.
 I have cfserver 4.5.1, i uploaded an access2000 database and cf
  couldn't
 verify it. I have no special permissions set on it, no
  passwords yet,
 nothing. What could be making it not connect?? i
  thought "maybe i need
   the
 new mdac from MS" so i downloaded it, installed
  it,rebooted, and now
  PC
 Anywhere does not work, the access database still
  doesn't work either.

 would anyone know why mdac would stop PC Anywhere working?
 , or why a plain vanilla mdb which worked fine on the
  Dev server,
  fails
   to
 verify on my other server. the example mdb that was
  installed with CF
works
 fine, i have checked the permissions given to it, and
  they seem the
  same
as
 what i had given my DB.

 sorry if these questions are basic, but i have been
  thrown into the
  deep
end
 here, and i don't want to drown. If you need more info,
  please ask and
  i
 will supply all i can.

 I am running nt4 sp6, cf4.5.1. MDAC 2.5

 thanks
 Chris Carpenter.


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

  http://www.houseoffusion.com/index.cfm?sidebar=listsbody=list
 s/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
   

RE: Another li'l OT - performance penalty for joining 3 or more tables

2000-04-20 Thread Dave Watts

 How bad is it, performance-wise, to join 3 or 4 tables in a SELECT
 statement? I could re-design the tables to include redundant
 fields so I join fewer tables. Should I?

No, please don't. That's why we use relational databases for transaction
processing. If you've got lots of "little" tables, and you're joining three
or four, you're doing the right thing, generally. It does cost more to
SELECT data, but costs less to find that data (you're more likely to be able
to take advantage of clustered indexes, for example), and costs much less to
modify the data.

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: CF - Spectra

2000-04-20 Thread Raymond K. Camden

A book is coming out in May, "Allaire Spectra E-Business Construction Kit"

http://shop.barnesandnoble.com/booksearch/isbnInquiry.asp?isbn=0789723654


===
Raymond Camden, Cold Fusion Jedi Master for Syntegra (www.syntegra.com)
Allaire Certified Instructor and Member of Team Allaire

Email   : [EMAIL PROTECTED]
ICQ UIN : 3679482

"My ally is the Force, and a powerful ally it is." - Yoda


 -Original Message-
 From: Won Lee [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, April 20, 2000 1:02 PM
 To: [EMAIL PROTECTED]
 Subject: CF - Spectra
 
 
 Anyone know of web sites dedicated to spectra development?  
 Better yet anyone know of any good books about spectra development?
 --
 
 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: Help with grabbing data

2000-04-20 Thread Dave Watts

 I think this if very doable in CF, but my mind goes to VB for
 stuff like this.

 I would write an NT Service that would watch this directory,
 load all new files one at a time, parse the data as required,
 and insert into you SQL database.  The Service would be installed
 on the server that has the directory in question and run based
 on the timing interval you think appropriate.

 Not a trivial task, but doable...

You could even make it easier, and do most or all of this from within the
database; I've seen nifty examples of this with SQL Server 7.0.

 For those who feel I'm a trader to CF, I like to reserve CF
 Server and it's scheduled tasks for the critical web apps, not
 for what I consider to be internal housekeeping.

That's the way to do it. Use the right tool for the job.

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: the definitive summary to variable scopes - correct?

2000-04-20 Thread Jeff Beer

 server variables can exist across multiple templates for an
 application.
 they're stored in the server's registry.

No - that's an Application variable.  Server variables exist across all
applications residing on that server.  Server variables are also stored in
memory.  Once Cold Fusion server is stopped, server variables need to be
reset.



 -Original Message-
 From: Allen [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, April 20, 2000 1:15 PM
 To: [EMAIL PROTECTED]
 Subject: Re: the definitive summary to variable scopes - correct?


 server variables can exist across multiple templates for an
 application.
 they're stored in the server's registry.

 - Original Message -
 From: "Mike Amburn" [EMAIL PROTECTED]
 To: "Cf-Talk" [EMAIL PROTECTED]
 Sent: Thursday, April 20, 2000 12:08 PM
 Subject: RE: the definitive summary to variable scopes - correct?


  and what are Server variables?
 
  -Original Message-
  From: Mike Amburn [mailto:[EMAIL PROTECTED]]
  Sent: Thursday, April 20, 2000 1:05 PM
  To: [EMAIL PROTECTED]
  Subject: the definitive summary to variable scopes - correct?
 
 
  please correct me if i'm wrong, but based on input over the
 past few days
 
  variable scope required:
1) Server
2) Application
3) Session
4) Attributes
5) Caller
 
  variable scope not required, scanned in the following order:
1) local (i.e. Variables)
2) CGI
3) File (???)
4) URL
5) Form
6) Cookie
7) Client
 
  - is the above correct?
  - is there any difference in using Variables.x and not using it?
  - what are File variables?
 
 --
 
 
  Archives: http://www.eGroups.com/list/cf-talk
  To Unsubscribe visit
 http://www.houseoffusion.com/index.cfm?sidebar=listsbody=list
s/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: the definitive summary to variable scopes - correct?

2000-04-20 Thread Brian L. Wolfsohn

At 01:45 PM 4/20/00 , you wrote:

Presuming you're not using sandbox security (which i'm not familiar with), 
wouldn't the ip#'s that debug info will be displayed to, be a server 
variable ??


  server variables can exist across multiple templates for an
  application.
  they're stored in the server's registry.

No - that's an Application variable.  Server variables exist across all
applications residing on that server.  Server variables are also stored in
memory.  Once Cold Fusion server is stopped, server variables need to be
reset.



  -Original Message-
  From: Allen [mailto:[EMAIL PROTECTED]]
  Sent: Thursday, April 20, 2000 1:15 PM
  To: [EMAIL PROTECTED]
  Subject: Re: the definitive summary to variable scopes - correct?
 
 
  server variables can exist across multiple templates for an
  application.
  they're stored in the server's registry.
 
  - Original Message -
  From: "Mike Amburn" [EMAIL PROTECTED]
  To: "Cf-Talk" [EMAIL PROTECTED]
  Sent: Thursday, April 20, 2000 12:08 PM
  Subject: RE: the definitive summary to variable scopes - correct?
 
 
   and what are Server variables?
  
   -Original Message-
   From: Mike Amburn [mailto:[EMAIL PROTECTED]]
   Sent: Thursday, April 20, 2000 1:05 PM
   To: [EMAIL PROTECTED]
   Subject: the definitive summary to variable scopes - correct?
  
  
   please correct me if i'm wrong, but based on input over the
  past few days
  
   variable scope required:
 1) Server
 2) Application
 3) Session
 4) Attributes
 5) Caller
  
   variable scope not required, scanned in the following order:
 1) local (i.e. Variables)
 2) CGI
 3) File (???)
 4) URL
 5) Form
 6) Cookie
 7) Client
  
   - is the above correct?
   - is there any difference in using Variables.x and not using it?
   - what are File variables?
  
  --
  
  
   Archives: http://www.eGroups.com/list/cf-talk
   To Unsubscribe visit
  http://www.houseoffusion.com/index.cfm?sidebar=listsbody=list
s/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.


Brian L. Wolfsohnhttp://www.cus.com
CUS Business Systems Ft.Lauderdale,FL
Software for Auctioneers (954) 565-5600 Email:[EMAIL PROTECTED]
--
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-20 Thread Mike Randolph

Hello CF-Talk,

When you are purchasing any product, the future MUST be considered if
growth is planned?

The fusebox "like" AuctionBuilder product is ONE example of the future of
our products, which we are releasing many this year.

I'm sure on the flexibility point we are the winner, as far as price goes we
have set it FAR below all of our "honest competitors" and yet still have
enough
margin in it to allow for support, Research  Development and exspansion
of the company.  IBM, Microsoft, OpenMarket, and Intershop hate
running into us, our product is much easer to get started with than any of
those products that offer "similar" levels of features and COMPANY SUPPORT.

One of our new customers spent 3 months trying to get IBM's solution to
work, angry with the problems one of the developers went home early on
Friday and downloaded our software.  Returning to work on Monday with an
almost fully completed site they dropped the IBM solution in favor of ours.

The ONLY reason I originally posted was because the copyright and patent
laws of our country suck, but our country's ethics don't?Go try to
"knock
off" a song,  book or corporate logo...etc.

VERY Respectfully yours,

Mike Randolph


 Do you really want to purchase from a product that is so obviously built
 while looking at the AbleCommerce Builder product?  What does this say
about
 the company?

It says to me that they recognise the good qualities of your product,
whilst
also recognising the defficiencies as they perceive them to be - and
apparently
others perceive them to be as well. If they can address those issues at
1/10 of
the price - then good luck to them I say.

If CF WebShop does everything AbleCommerce does, is more flexible, and 1/10
of
the price for open source  - where would_you_put your eCommerce platform
dollars?


 We pride ourselves at AbleCommerce in providing original solutions to
tough
 e-business issues.  Look at our new AuctionBuilder product to see where
our
 new products are headed,

The disucssion is not about Auction products, it is about eStore products.


 BEFORE you drop your money on the table.
 AbleCommerce Builder is a proven product, with proven support and a
proven
 company behind it.

That as may be - but it doesn't mean that you can be arrogant or complacent
about it. Being first to market, or market leader isn't always good enough
unless you are M$ or Inte$. Over here at least we have a saying - "the
customer
is always right" - which means that you should listen to your customers and
act
acordingly. If your customers say that your product is difficult to
customise,
too expensive for open source etc.,  - then you should listen to them.

I for one don't have a problem with AbleCommerce, and I certainly do
recognise
its significance and standing, but that does not mean you are unique in
that.
Instead of telling us how great your product is, how about addressing the
issues
of flexibility and price?

Adrian Cooper.



---
---
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: quotation marks -- definitive answer?

2000-04-20 Thread Duane Boudreau

a) cfmodule ... myAttribute="#foobar#"
b) cfmodule ... myAttribute=#foobar# #---# not required

a) cfloop ... from="1" to="#ListLen(foobar)#"
b) cfloop ... from=1 to=#ListLen(foobar)#   #---# not required


other than I dont believe there are any differences.

Duane


-Original Message-
From: Mike Amburn [mailto:[EMAIL PROTECTED]]
Sent: Thursday, April 20, 2000 2:12 PM
To: Cf-Talk
Subject: quotation marks -- definitive answer?


continuing the "is there any difference" thread...

what, if any, difference in using quatation marks?

a) cfset foobar = "1"
b) cfset foobar = 1

a) cfset foobar = "true"
b) cfset foobar = true

a) cfmodule ... myAttribute="#foobar#"
b) cfmodule ... myAttribute=#foobar#

a) cfloop ... from="1" to="#ListLen(foobar)#"
b) cfloop ... from=1 to=#ListLen(foobar)#

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



What's the use of structures, anyway?

2000-04-20 Thread Reuben King

Structures seem totally useless to me.  If they were two dimensional, 
then I could see definite value.  I'd love to see something like:

cfset access_flags["is_superuser"].default_value="false"
cfset access_flags["is_superuser"].description="Is this user an 
administrator?"
cfset access_flags["is_superuser"].data_type="boolean"
cfset access_flags["is_superuser"].user_assignment="true"

cfset access_flags["access_emps"].default_value="false"
cfset access_flags["access_emps"].description="Does this user have 
access to the employee records?"
cfset access_flags["access_emps"].data_type="boolean"
cfset access_flags["access_emps"].user_assignment="true"
.. etc ...


As I understand it right now from reading the CF docs and Forta's books, 
structures are nothing at all but a one dimensional shorthand way of 
passing around a single row of key/value pairs.  Am I correct in this?

I guess I'll just use the QueryNew() function and its relatives..
--
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: intermedia hosting $$ for SQL server

2000-04-20 Thread Chris Lott

 We are trying to come up with "SQL usage fee" and ip bandwidth throttling
 between the CF machine and the SQL machine, so the SQL fees track the
usage
 (i/o volume plus disk space, rather than flat fees.

Exactly what I've been asking for! I understand $50 and up to much more for
heavy database hitting, but there are many reasons one might be using SQL
Server that don't demand so much...

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.



An answer to a question needs to be a good answer

2000-04-20 Thread CFM

Hey, smart guy. That's not very funny. I asked a question on this group and
what do I get back? A trash response from Josh. Stop wasting people's time,
I found that very irritating. But I do owe thanks to David for admonishing
him. Thanks, I appreciate your professionalism. 

now, to repeat my question:

does anyone out there have any good documentation or examples of how to use
regular expressions in exteneded find and replace in cfstudio 4.01? i'm just
stumped.

thanks,
jon bocock.

-Original Message-
From: Jon Hall [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, April 19, 2000 5:46 PM
To: [EMAIL PROTECTED]
Subject: Re: Studio Extended find and Replace RegExp Question


Jon Bocock,

I believe to solve your problem, you need administer the exponential output
of the modulation assembly on the motherboard circuit wiring to configure
properly, then repeat as many times as needed.

Josh

- Original Message -
From: "CFM" [EMAIL PROTECTED]
To: "House of Fusion (E-mail)" [EMAIL PROTECTED]
Sent: Wednesday, April 19, 2000 6:44 PM
Subject: Studio Extended find and Replace RegExp Question


 does anyone out there have any good documentation or examples of how to
use
 regular expressions in exteneded find and replace in cfstudio 4.01? i'm
just
 stumped.

 thanks a bunch,
 jon bocock.
 --

 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: Big Problems!! - VNC

2000-04-20 Thread Chris Lott

I use VNC a lot and have enver experienced problems like this (freezing the
server, etc). I don't have experience with other products, since I've heard
about so many problems with PC Anywhere, nothing one way or the other about
Timbuktu (or whatever their product is) and VNC is free.

(I'd like to buy one, though, so would appreciate comments on any of them or
others)

VNC is tolerable over cable modem.

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.



Re: Able Commerce knock-off

2000-04-20 Thread Ken Wilson

 The ONLY reason I originally posted was because the copyright and patent
 laws of our country suck, but our country's ethics don't?Go try to
 "knock off" a song,  book or corporate logo...etc.



Are you implying that CFWebstore lifted code directly from your product or
are you simply upset that they offer a viable product that offers "similar"
features, though perhaps not as extensive, at a significantly lower price?

I'm really just curious having never used either apart from checking out
eval versions. I will tell you, though, that the implications behind your
comments leave me with a negative impression of AbleCommerce unless you have
some specific claim to make regarding the other product...it just sounds
like sour grapes directed at a smaller competitor.

Ken Wilson



--
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-20 Thread Jennifer

At 11:12 AM 4/20/00 -0700, you wrote:
The ONLY reason I originally posted was because the copyright and patent
laws of our country suck, but our country's ethics don't?Go try to
"knock
off" a song,  book or corporate logo...etc.

I take it you've never heard the phrase "inspired by." Songs, books, and 
logos are all derivative. Whether you incorporate an idea from a work or 
deliberately avoid it, all songs, books, and logos have pieces taken from 
multiple sources, even if unintentionally. There is very little new ground 
to cover in any of these fields EXCEPT which sources new work draws from. 
Of course, in those fields it's a sign of a good work to have someone draw 
from your ideas. Imitation is the sincerest form of flattery, remember?

As a writer, I can tell you that when you write there are certain things 
that you do. You present work in a format appropriate to the subject 
matter, in language appropriate to the subject matter, in a way that you 
think appeals to the intended reader. Applying the same theory to this 
discussion, this other company has drawn from your company's ideas and made 
what they think are improvements. They make these improvements by drawing 
from other sources. They have used a format that suits the intention of the 
product and fits the intended user. If your product does the same thing and 
has the same intended user, they are likely to be similar. That isn't theft 
of ideas, that's completely natural. People can call it a knock-off, but 
knock-offs don't include improvements. They probably call it a knock-off 
because it seems similar. If you have a problem with this, I have to wonder 
why. It's not like they went in and stole your source code or it would be 
against the contracts they were under when they got the source, and 
therefore illegal. Open source doesn't mean you can take code out of it and 
incorporate it into a product. They built upon a good idea that already 
existed, but they added to the idea. And you sound very threatened by that.

While your AuctionBuilder product may be very valuable, if you are 
threatened by AbleCommerce competition, that is the sign of a problem with 
the product. While focusing your company's efforts on this auction product 
and '*away* from AbleCommerce, which is what you are implying, AbleCommerce 
will lose technological ground. Instead of resting on your laurels, you 
could innovate with AbleCommerce-- add new features, make it more flexible, 
incorporate better techniques to get the same job done. It might delay the 
release of AuctionBuilder, but in the meantime, you wouldn't be losing 
ground. Allaire certainly didn't stop at ColdFusion version 1 or even 
version 2.

Everyday people decide on new things to do on their websites; if your 
product can't keep up you will lose ground in the market and have only 
yourself to blame.

--
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-20 Thread Mike Sheldon

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? That definitely pulls you out of two
dimensions.

Yes, Structures are nearly identical to associative arrays in other
languages. I use those a lot, too.

A structure is a way of gathering information about a single entity into one
place. Nothing more, nothing less. I can't understand why you seem so
offended by this, since structures in C/C++ are pretty much the same thing.

Just because YOU can't find a use for them doesn't mean they're useless. It
just means your education is incomplete.

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 11:49
To: [EMAIL PROTECTED]
Subject: What's the use of structures, anyway?


Structures seem totally useless to me.  If they were two dimensional,
then I could see definite value.  I'd love to see something like:

cfset access_flags["is_superuser"].default_value="false"
cfset access_flags["is_superuser"].description="Is this user an
administrator?"
cfset access_flags["is_superuser"].data_type="boolean"
cfset access_flags["is_superuser"].user_assignment="true"

cfset access_flags["access_emps"].default_value="false"
cfset access_flags["access_emps"].description="Does this user have
access to the employee records?"
cfset access_flags["access_emps"].data_type="boolean"
cfset access_flags["access_emps"].user_assignment="true"
.. etc ...


As I understand it right now from reading the CF docs and Forta's books,
structures are nothing at all but a one dimensional shorthand way of
passing around a single row of key/value pairs.  Am I correct in this?

I guess I'll just use the QueryNew() function and its relatives..

--
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-20 Thread Adrian Cooper


- Original Message -
From: Mike Randolph [EMAIL PROTECTED]
Sent: 20 April 2000 19:12


 The fusebox "like" AuctionBuilder product is ONE example of the future of
 our products, which we are releasing many this year.

What does "fusebox like" mean - does it mean it conforms totally to fusebox, or
it conforms to your interpretation of fusebox, or to your intepretation of what
fusebox should be?


 I'm sure on the flexibility point we are the winner, as far as price goes we
 have set it FAR below all of our "honest competitors" and yet still have
 enough

Define "honest".

 margin in it to allow for support, Research  Development and exspansion
 of the company.  IBM, Microsoft, OpenMarket, and Intershop hate
 running into us, our product is much easer to get started with than any of
 those products that offer "similar" levels of features and COMPANY SUPPORT.

I think that applies to most CF based products of this type - that is the
strength of CF. As for support - you are making the somewhat biased assumption
that only you provide it.

 The ONLY reason I originally posted was because the copyright and patent
 laws of our country suck, but our country's ethics don't?Go try to
 "knock  off" a song,  book or corporate logo...etc.

It is obvious to me that the reason you have gone to such extremes to defend
your product is because you are seriously concerned about the competition. If
you were not concerned about the competition, and your product stood on its own
as unsurpassable, you wouldn't have to. You keep mentioning AuctionBuilder -
this discussion is not about AuctionBuilder it is about Able Commerce  - how
about addressing the concerns of your potential customers?

Adrian Cooper.



--
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 Starting Stopping Cold Fusion Service

2000-04-20 Thread Kelly Matthews

Is there a way to set up an automatic way to start and stop the Cold Fusion
Service? I want to stop and start it a specific time each day.
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: What's the use of structures, anyway?

2000-04-20 Thread Jennifer

At 12:09 PM 4/20/00 -0700, you wrote:
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? That definitely pulls you out of two
dimensions.

Alright, I think it's beer:30 again. We're getting cranky. Myself included.
--
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-20 Thread Ben Densmore

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.

Ben Densmore
Webmaster
eSupport.com, Inc
TouchStone Software Corp.

- Original Message -
From: "Duane Boudreau" [EMAIL PROTECTED]
To: "CFTalk" [EMAIL PROTECTED]
Sent: Thursday, April 20, 2000 3:26 PM
Subject: What happened to this list?


 I have really enjoyed participating on this list (whenever possible) for
the
 past 3 or so years but after today I must say I'm really discouraged. I
like
 to try to help people out when I can, people here have always been kind
 enough to answer my questions. After the insulting personnel email I
 received today I will definitely think twice about replying to anyone's
 requests in the future.

 (BTW, it wasn't the fact that some one pointed out the cfmodule error
 either.)

 Cheers All,
 Duane Boudreau
 Director, Web Technologies
 Ektron, Inc.
 http://www.ektron.com
 5 Northern Blvd, Suite 6
 Amherst, NH 03031
 Tel: 603-594-0249
 Fax: 603-594-0258
 ICQ#: 18024374
 Jobs: [EMAIL PROTECTED]

 --

 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-20 Thread Howie Hamlin

I think that as time has passed that there are more and more people on the
list that do not subscribe to the original atmosphere of the list.  I too
have noticed the recent increase in insults and the like.  I think it's a
shame because that kind of stuff detracts from this otherwise invaluable
service.  Michael set up this list in a mostly hands-off way - meaning that
he does not actively moderate the list.  What this means is that
communications are faster but also that he is expecting that list users
behave in a professional and positive manner.

I think the people who toss around insults are mostly trying to inflate
their own egos and nothing more (why else would you spew derision on people
that are looking for help).  My opinion is that if you have nothing positive
to contribute that you should keep silent (maybe get your ya-yas out on
Quake or something).  I think that what most of these types will find is
that the really good people here are going to stop answering their
questions - and then why even subscribe to the list?

Remember - this list is provided as a free service and the people on it who
contribute are doing so on their own dime.

Just my 2 centavos...

Howie

- Original Message -
From: Duane Boudreau [EMAIL PROTECTED]
To: CFTalk [EMAIL PROTECTED]
Sent: Thursday, April 20, 2000 3:26 PM
Subject: What happened to this list?


 I have really enjoyed participating on this list (whenever possible) for
the
 past 3 or so years but after today I must say I'm really discouraged. I
like
 to try to help people out when I can, people here have always been kind
 enough to answer my questions. After the insulting personnel email I
 received today I will definitely think twice about replying to anyone's
 requests in the future.

 (BTW, it wasn't the fact that some one pointed out the cfmodule error
 either.)

 Cheers All,
 Duane Boudreau
 Director, Web Technologies
 Ektron, Inc.
 http://www.ektron.com
 5 Northern Blvd, Suite 6
 Amherst, NH 03031
 Tel: 603-594-0249
 Fax: 603-594-0258
 ICQ#: 18024374
 Jobs: [EMAIL PROTECTED]



--
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-20 Thread Kevin Marshall

Reuben,

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, is that structures can be incredibly powerful if 
you think of them as 'objects' which can contain all of the pertinent data 
for that object.  Also, as Mike suggests (perhaps a little energetically), 
structures really take off when you create nested structures.

I've been working with nested structures to manage navigation elements and 
it has made my job so much easier.  If I need to add a new nav element, I 
just create a new structure that describes that elements attributes (name, 
link, image, etc.) and place that struct into the master navigation holding 
struct.  I make no claims of brilliance, but the site I implemented this on 
has experienced quite a few changes and nav changes have been a breeze.

I would encourage you to work with structures a while before you discard 
them as useless -- they're used pretty extensively in other languages, so 
the concept has proven useful before.  Another note:  you may want to look 
into using CFScript when you manipulate structs.  It is TONS easier to use 
cfscript than the Struct* functions inside cfset tags.

Good luck!
Kevin

At 01:48 PM 4/20/00 -0500, you wrote:
Structures seem totally useless to me.  If they were two dimensional,
then I could see definite value.  I'd love to see something like:

cfset access_flags["is_superuser"].default_value="false"
cfset access_flags["is_superuser"].description="Is this user an
administrator?"
cfset access_flags["is_superuser"].data_type="boolean"
cfset access_flags["is_superuser"].user_assignment="true"

cfset access_flags["access_emps"].default_value="false"
cfset access_flags["access_emps"].description="Does this user have
access to the employee records?"
cfset access_flags["access_emps"].data_type="boolean"
cfset access_flags["access_emps"].user_assignment="true"
.. etc ...


As I understand it right now from reading the CF docs and Forta's books,
structures are nothing at all but a one dimensional shorthand way of
passing around a single row of key/value pairs.  Am I correct in this?

I guess I'll just use the QueryNew() function and its relatives..

--
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-20 Thread jstiefel

You seem to be missing something here. Structure's can be nested to the Nth
level:

cfscript
access_flags = StructNew();
access_flags["is_superuser"] = StructNew();
access_flags["is_superuser"].default_value = 0;
access_flags["is_superuser"].description = "Is this user an
administrator?";
/cfscript

etc.. etc..

-Original Message-
From: Reuben King [mailto:[EMAIL PROTECTED]]
Sent: Thursday, April 20, 2000 2:49 PM
To: [EMAIL PROTECTED]
Subject: What's the use of structures, anyway?


Structures seem totally useless to me.  If they were two dimensional, 
then I could see definite value.  I'd love to see something like:

cfset access_flags["is_superuser"].default_value="false"
cfset access_flags["is_superuser"].description="Is this user an 
administrator?"
cfset access_flags["is_superuser"].data_type="boolean"
cfset access_flags["is_superuser"].user_assignment="true"

cfset access_flags["access_emps"].default_value="false"
cfset access_flags["access_emps"].description="Does this user have 
access to the employee records?"
cfset access_flags["access_emps"].data_type="boolean"
cfset access_flags["access_emps"].user_assignment="true"
.. etc ...


As I understand it right now from reading the CF docs and Forta's books, 
structures are nothing at all but a one dimensional shorthand way of 
passing around a single row of key/value pairs.  Am I correct in this?

I guess I'll just use the QueryNew() function and its relatives..

--
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: Another li'l OT - performance penalty for joining 3 or more tables

2000-04-20 Thread Won Lee

I'm fairly certain that view does not ehance performance.
It is their for easy of use etc

Simon,

You may want to create a view that contains the tables that you want to
join. I don't know the performance results of a view versus the multiple
joins. It'll be cleaner for coding to reference a view than the multiple
tables.

/Ron

-Original Message-
From: Park, Simon [mailto:[EMAIL PROTECTED]]
Sent: Thursday, April 20, 2000 8:51 AM
To: '[EMAIL PROTECTED]'
Subject: Another li'l OT - performance penalty for joining 3 or more
tables


Thanks for the help on the incrementing field value question. I have another
question..

How bad is it, performance-wise, to join 3 or 4 tables in a SELECT
statement? I could re-design the tables to include redundant fields so I
join fewer tables. Should I?

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Simon Park Computer Systems Management, Inc.
[EMAIL PROTECTED] 205 South Whiting Street
Ph: 703-823-4300   Suite 201
fax: 703-823-4301  Alexandria, VA  22304
 http://www.csmi.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: An answer to a question needs to be a good answer

2000-04-20 Thread Eva Holtsmark

 does anyone out there have any good documentation or examples of how to use
 regular expressions in exteneded find and replace in cfstudio 4.01? i'm just
 stumped.

Figleaf, the CFUG in Washington, DC, USA, hosted a presentation and the powerpoint 
slides are online -
   http://www.figleaf.com/figleafhome/cfug/CFUGDec99/Index.htm
'Regular Expressions in CF Apps' by Dave Fauth of DOMAIN Technologies.
His last slide is 'Resources'
  http://www.figleaf.com/figleafhome/cfug/CFUGDec99/regexp/sld021.htm
Enjoy.
___
Eva
Senior Web Developer
HSPMC


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



AOL is using CF - on a really great link, too!

2000-04-20 Thread ron

Hi Everyone,

Ran across this today:

http://webmaster.info.aol.com/article.cfm?section=2article=6menuid=7

It's a VERY useful chart showing all the AOL browser versions along with
percentage breakdowns of their userbase and supported functionality.

Unfortunately, they haven't mastered error trapping, or even cfparam
tags for that matter. Hit it with
http://webmaster.info.aol.com/article.cfm and see what happens. At least
they closed the ::$DATA hole. :)


ron allen hornbaker   õ¿õ¬
mailto:[EMAIL PROTECTED]~
humankind systems, inc.
http://humankindsystems.com/LoftCam






--
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: To and from Perl scripts

2000-04-20 Thread Raymond K. Camden

Check out the CFEXECUTE tag, it will handle this for you.

===
Raymond Camden, Cold Fusion Jedi Master for Syntegra (www.syntegra.com)
Allaire Certified Instructor and Member of Team Allaire

Email   : [EMAIL PROTECTED]
ICQ UIN : 3679482

"My ally is the Force, and a powerful ally it is." - Yoda


 -Original Message-
 From: Joel Firestone [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, April 20, 2000 3:51 PM
 To: [EMAIL PROTECTED]
 Subject: To and from Perl scripts
 
 
 CF-Talkers:
 
 Is there anyway to have a template run a Perl script, passing it a
 variable, have the script do it's thing, and take what it did and
 continue to process the request? I haven't messed with CGI in
 2 years, and even then, my experience was brief.
 
 Any help would be greatly appreciated. Thank you for your time.
 
 ===
 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.
--
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-20 Thread Sharon DiOrio

The real power of structures isn't in a single level, it's in nesting them
and creating complex data hierarchies.  For instance, a structure I could
use, for example:

[Country].[State].[City].[Company]

OR

UnitedStates.Massachusetts.Boston.Mindseye

If you've used javascript (or any other object based languages) the syntax
will be familiar.  I can "drill-down" into the structure and output the
keys at any level.  From the structure above, if I wanted to output a list
of cities in Massachusetts, I'd use code like this:

#StructKeyList(UnitedStates.Massachusetts)#

So if you want multidimensional, think arrays.  If you want hierarchical,
think structures.

Sharon

At 01:48 PM 4/20/2000 -0500, Reuben King wrote:
Structures seem totally useless to me.  If they were two dimensional, 
then I could see definite value.  I'd love to see something like:

cfset access_flags["is_superuser"].default_value="false"
cfset access_flags["is_superuser"].description="Is this user an 
administrator?"
cfset access_flags["is_superuser"].data_type="boolean"
cfset access_flags["is_superuser"].user_assignment="true"

cfset access_flags["access_emps"].default_value="false"
cfset access_flags["access_emps"].description="Does this user have 
access to the employee records?"
cfset access_flags["access_emps"].data_type="boolean"
cfset access_flags["access_emps"].user_assignment="true"
.. etc ...


As I understand it right now from reading the CF docs and Forta's books, 
structures are nothing at all but a one dimensional shorthand way of 
passing around a single row of key/value pairs.  Am I correct in this?

I guess I'll just use the QueryNew() function and its relatives..
--
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: To and from Perl scripts

2000-04-20 Thread Howie Hamlin

CFX_ODSModule can do this if you are using ActivePerl.  More info at
coolfusion.com

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)

Joel Firestone [EMAIL PROTECTED] wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
 CF-Talkers:

 Is there anyway to have a template run a Perl script, passing it a
 variable, have the script do it's thing, and take what it did and
 continue to process the request? I haven't messed with CGI in
 2 years, and even then, my experience was brief.

 Any help would be greatly appreciated. Thank you for your time.

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


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



CF Locking UP

2000-04-20 Thread Sreang Kim

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.



RE: Everybody chill

2000-04-20 Thread Steve DeWitt

OK Miss Manners we will play nice.  

-Original Message-
From: Jennifer [mailto:[EMAIL PROTECTED]]
Sent: Thursday, April 20, 2000 1:07 PM
To: [EMAIL PROTECTED]
Subject: Everybody chill


One of the things that's really cool about this list is that we're all here 
to help each other learn to use ColdFusion more effectively. I want 
everyone to think about this for a minute and remember it for a while. 
Everyone has things that they don't understand or that they could learn to 
use better, probably even Ben Forta. :) We are here to help each other, not 
ridicule each other. When people ask questions and we ridicule them we 
teach them that asking for help is a bad idea. Of course, it would probably 
help if people asked like this: "I just don't understand how this is used 
differently than this" or "I'm not clear on the concept of this, could 
someone please explain it?" or even "Man, I am totally lost. I need to get 
this thing done and I can't figure out how to do it;" Instead of: "this 
thing is obviously broken" or "this is useless" or "why doesn't allaire get 
off their lazy butts and fix my problem." These kinds of questions are 
really not helpful and I am trying to ignore them. I really am, but it's 
difficult.

Also, I understand that personal agendas are hard to avoid, but it would be 
really nice if we could avoid them.

So basically, we need to just calm down a little bit and think about how we 
say the things we say, ok? Otherwise, this helpful forum could degenerate 
into something that none of us really want to see. 

--
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's the use of structures, anyway?

2000-04-20 Thread Judah McAuley

At 02:24 PM 4/20/2000 -0500, you wrote:

Alright, I think it's beer:30 again. We're getting cranky. Myself included.

Yeah, I agree.  Even though it's only 1 something in my time zone.  Good 
thing I work only 2 block from a fantastic pub...

Judah

--
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: Everybody chill

2000-04-20 Thread Paul's Mail

You made me fall all peaceful again - wise words.

Paul Burgess

 -Original Message-
 From: Jennifer [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, April 20, 2000 9:07 PM
 To: [EMAIL PROTECTED]
 Subject: Everybody chill


 One of the things that's really cool about this list is that
 we're all here
 to help each other learn to use ColdFusion more effectively. I want
 everyone to think about this for a minute and remember it for a while.
 Everyone has things that they don't understand or that they could
 learn to
 use better, probably even Ben Forta. :) We are here to help each
 other, not
 ridicule each other. When people ask questions and we ridicule them we
 teach them that asking for help is a bad idea. Of course, it
 would probably
 help if people asked like this: "I just don't understand how this is used
 differently than this" or "I'm not clear on the concept of this, could
 someone please explain it?" or even "Man, I am totally lost. I
 need to get
 this thing done and I can't figure out how to do it;" Instead of: "this
 thing is obviously broken" or "this is useless" or "why doesn't
 allaire get
 off their lazy butts and fix my problem." These kinds of questions are
 really not helpful and I am trying to ignore them. I really am, but it's
 difficult.

 Also, I understand that personal agendas are hard to avoid, but
 it would be
 really nice if we could avoid them.

 So basically, we need to just calm down a little bit and think
 about how we
 say the things we say, ok? Otherwise, this helpful forum could degenerate
 into something that none of us really want to see.
 --
 
 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-20 Thread Shane Pitts

Now that was probably the first post in this thread that was really worth
reading..

Thanks

SHane



-Original Message-
From: Jennifer [mailto:[EMAIL PROTECTED]]
Sent: Thursday, April 20, 2000 1:07 PM
To: [EMAIL PROTECTED]
Subject: Re: "Able Commerce knock-off"


At 11:12 AM 4/20/00 -0700, you wrote:
The ONLY reason I originally posted was because the copyright and patent
laws of our country suck, but our country's ethics don't?Go try to
"knock
off" a song,  book or corporate logo...etc.

I take it you've never heard the phrase "inspired by." Songs, books, and
logos are all derivative. Whether you incorporate an idea from a work or
deliberately avoid it, all songs, books, and logos have pieces taken from
multiple sources, even if unintentionally. There is very little new ground
to cover in any of these fields EXCEPT which sources new work draws from.
Of course, in those fields it's a sign of a good work to have someone draw
from your ideas. Imitation is the sincerest form of flattery, remember?

As a writer, I can tell you that when you write there are certain things
that you do. You present work in a format appropriate to the subject
matter, in language appropriate to the subject matter, in a way that you
think appeals to the intended reader. Applying the same theory to this
discussion, this other company has drawn from your company's ideas and made
what they think are improvements. They make these improvements by drawing
from other sources. They have used a format that suits the intention of the
product and fits the intended user. If your product does the same thing and
has the same intended user, they are likely to be similar. That isn't theft
of ideas, that's completely natural. People can call it a knock-off, but
knock-offs don't include improvements. They probably call it a knock-off
because it seems similar. If you have a problem with this, I have to wonder
why. It's not like they went in and stole your source code or it would be
against the contracts they were under when they got the source, and
therefore illegal. Open source doesn't mean you can take code out of it and
incorporate it into a product. They built upon a good idea that already
existed, but they added to the idea. And you sound very threatened by that.

While your AuctionBuilder product may be very valuable, if you are
threatened by AbleCommerce competition, that is the sign of a problem with
the product. While focusing your company's efforts on this auction product
and '*away* from AbleCommerce, which is what you are implying, AbleCommerce
will lose technological ground. Instead of resting on your laurels, you
could innovate with AbleCommerce-- add new features, make it more flexible,
incorporate better techniques to get the same job done. It might delay the
release of AuctionBuilder, but in the meantime, you wouldn't be losing
ground. Allaire certainly didn't stop at ColdFusion version 1 or even
version 2.

Everyday people decide on new things to do on their websites; if your
product can't keep up you will lose ground in the market and have only
yourself to blame.


--
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: CF Locking UP

2000-04-20 Thread Shane Pitts

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.



can anyone see anything wrong with this?

2000-04-20 Thread Shawn Regan

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_01BFAB09.1517DF80
Content-Type: text/plain;
charset="iso-8859-1"

Anyone see anything wrong with this?


SQL = "UPDATE CARD SET OUT='7:00' WHERE EMP_ID='5955' AND DATE='04/19/00'
AND IN='9:00'"



ERROR BEWLOW


Error Diagnostic Information
ODBC Error Code = 37000 (Syntax error or access violation)


[Microsoft][ODBC Microsoft Access Driver] Syntax error (missing operator) in
query expression 'EMP_ID='5955' AND DATE='04/19/00' AND IN='9:00''.


SQL = "UPDATE CARD SET OUT='7:00' WHERE EMP_ID='5955' AND DATE='04/19/00'
AND IN='9:00'"



TIA
Shawn Regan

--_=_NextPart_001_01BFAB09.1517DF80
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN"
HTML
HEAD
META HTTP-EQUIV=3D"Content-Type" CONTENT=3D"text/html; =
charset=3Diso-8859-1"
META NAME=3D"Generator" CONTENT=3D"MS Exchange Server version =
5.5.2650.12"
TITLEcan anyone see anything wrong with this?/TITLE
/HEAD
BODY

PFONT SIZE=3D2Anyone see anything wrong with this?/FONT
/P
BR

PFONT SIZE=3D2SQL =3D quot;UPDATE CARD SET OUT=3D'7:00' WHERE =
EMP_ID=3D'5955' AND DATE=3D'04/19/00' AND IN=3D'9:00'quot;/FONT
/P
BR
BR

PFONT SIZE=3D2ERROR BEWLOW/FONT
/P
BR

PFONT SIZE=3D2Error Diagnostic Information/FONT
BRFONT SIZE=3D2ODBC Error Code =3D 37000 (Syntax error or access =
violation)/FONT
/P
BR

PFONT SIZE=3D2[Microsoft][ODBC Microsoft Access Driver] Syntax =
error (missing operator) in query expression 'EMP_ID=3D'5955' AND =
DATE=3D'04/19/00' AND IN=3D'9:00''./FONT/P
BR

PFONT SIZE=3D2SQL =3D quot;UPDATE CARD SET OUT=3D'7:00' WHERE =
EMP_ID=3D'5955' AND DATE=3D'04/19/00' AND IN=3D'9:00'quot;/FONT
/P
BR
BR

PFONT SIZE=3D2TIA/FONT
BRFONT SIZE=3D2Shawn Regan/FONT
/P

/BODY
/HTML
--_=_NextPart_001_01BFAB09.1517DF80--
--
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-20 Thread Jennifer

At 01:13 PM 4/20/00 +0100, you wrote:
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?

4.0.1 is a non-native version and 4.5.1 is supposed to fix some problems 
like this. We had this problem with CF 4.0 for Solaris with Netscape server 
4.something. In our case it had to do with the NT emulation that the server 
program is running on. Because 4.5.1 for solaris is a native version, this 
problem is supposed to not happen anymore. Our 4.5.1 server has been made 
live for load testing (and no, I don't know why they don't run a load 
testing program) and the server is running much faster even though the 
hardware isn't as nice. Your problem may be the same one or it may be 
similar. The unfortunate thing is that 4.5.1 is the first native solaris 
version, so it's likely that there will be some unexpected bugs, as happens 
with the first version of any software. We haven't noticed any yet, but 
that doesn't mean that they aren't there. Luckily, the data-testing went 
extremely well and I am very hopeful about this version.

--
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: can anyone see anything wrong with this?

2000-04-20 Thread Chris Evans

DATE is a reserved word.

Chris Evans
[EMAIL PROTECTED]
http://www.fuseware.com


-Original Message-
From: Shawn Regan [mailto:[EMAIL PROTECTED]]
Sent: Thursday, April 20, 2000 4:43 PM
To: '[EMAIL PROTECTED]'
Subject: can anyone see anything wrong with this?


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_01BFAB09.1517DF80
Content-Type: text/plain;
charset="iso-8859-1"

Anyone see anything wrong with this?


SQL = "UPDATE CARD SET OUT='7:00' WHERE EMP_ID='5955' AND DATE='04/19/00'
AND IN='9:00'"



ERROR BEWLOW


Error Diagnostic Information
ODBC Error Code = 37000 (Syntax error or access violation)


[Microsoft][ODBC Microsoft Access Driver] Syntax error (missing operator) in
query expression 'EMP_ID='5955' AND DATE='04/19/00' AND IN='9:00''.


SQL = "UPDATE CARD SET OUT='7:00' WHERE EMP_ID='5955' AND DATE='04/19/00'
AND IN='9:00'"



TIA
Shawn Regan

--_=_NextPart_001_01BFAB09.1517DF80
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN"
HTML
HEAD
META HTTP-EQUIV=3D"Content-Type" CONTENT=3D"text/html; =
charset=3Diso-8859-1"
META NAME=3D"Generator" CONTENT=3D"MS Exchange Server version =
5.5.2650.12"
TITLEcan anyone see anything wrong with this?/TITLE
/HEAD
BODY

PFONT SIZE=3D2Anyone see anything wrong with this?/FONT
/P
BR

PFONT SIZE=3D2SQL =3D quot;UPDATE CARD SET OUT=3D'7:00' WHERE =
EMP_ID=3D'5955' AND DATE=3D'04/19/00' AND IN=3D'9:00'quot;/FONT
/P
BR
BR

PFONT SIZE=3D2ERROR BEWLOW/FONT
/P
BR

PFONT SIZE=3D2Error Diagnostic Information/FONT
BRFONT SIZE=3D2ODBC Error Code =3D 37000 (Syntax error or access =
violation)/FONT
/P
BR

PFONT SIZE=3D2[Microsoft][ODBC Microsoft Access Driver] Syntax =
error (missing operator) in query expression 'EMP_ID=3D'5955' AND =
DATE=3D'04/19/00' AND IN=3D'9:00''./FONT/P
BR

PFONT SIZE=3D2SQL =3D quot;UPDATE CARD SET OUT=3D'7:00' WHERE =
EMP_ID=3D'5955' AND DATE=3D'04/19/00' AND IN=3D'9:00'quot;/FONT
/P
BR
BR

PFONT SIZE=3D2TIA/FONT
BRFONT SIZE=3D2Shawn Regan/FONT
/P

/BODY
/HTML
--_=_NextPart_001_01BFAB09.1517DF80--

--
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: can anyone see anything wrong with this?

2000-04-20 Thread Howie Hamlin

DATE is a reserved word - change the name of the field in the db or
reference it as [DATE] or card.date

Regards,

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: Shawn Regan [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, April 20, 2000 4:43 PM
Subject: can anyone see anything wrong with this?


 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_01BFAB09.1517DF80
 Content-Type: text/plain;
 charset="iso-8859-1"

 Anyone see anything wrong with this?


 SQL = "UPDATE CARD SET OUT='7:00' WHERE EMP_ID='5955' AND DATE='04/19/00'
 AND IN='9:00'"



 ERROR BEWLOW


 Error Diagnostic Information
 ODBC Error Code = 37000 (Syntax error or access violation)


 [Microsoft][ODBC Microsoft Access Driver] Syntax error (missing operator)
in
 query expression 'EMP_ID='5955' AND DATE='04/19/00' AND IN='9:00''.


 SQL = "UPDATE CARD SET OUT='7:00' WHERE EMP_ID='5955' AND DATE='04/19/00'
 AND IN='9:00'"



 TIA
 Shawn Regan



--
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: can anyone see anything wrong with this?

2000-04-20 Thread Brian Grant

I think "IN" might be a reserved word.

HTH
brian
- Original Message -
From: Shawn Regan [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, April 20, 2000 3:43 PM
Subject: can anyone see anything wrong with this?


 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_01BFAB09.1517DF80
 Content-Type: text/plain;
 charset="iso-8859-1"

 Anyone see anything wrong with this?


 SQL = "UPDATE CARD SET OUT='7:00' WHERE EMP_ID='5955' AND DATE='04/19/00'
 AND IN='9:00'"



 ERROR BEWLOW


 Error Diagnostic Information
 ODBC Error Code = 37000 (Syntax error or access violation)


 [Microsoft][ODBC Microsoft Access Driver] Syntax error (missing operator)
in
 query expression 'EMP_ID='5955' AND DATE='04/19/00' AND IN='9:00''.


 SQL = "UPDATE CARD SET OUT='7:00' WHERE EMP_ID='5955' AND DATE='04/19/00'
 AND IN='9:00'"



 TIA
 Shawn Regan

 --_=_NextPart_001_01BFAB09.1517DF80
 Content-Type: text/html;
 charset="iso-8859-1"
 Content-Transfer-Encoding: quoted-printable

 !DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN"
 HTML
 HEAD
 META HTTP-EQUIV=3D"Content-Type" CONTENT=3D"text/html; =
 charset=3Diso-8859-1"
 META NAME=3D"Generator" CONTENT=3D"MS Exchange Server version =
 5.5.2650.12"
 TITLEcan anyone see anything wrong with this?/TITLE
 /HEAD
 BODY

 PFONT SIZE=3D2Anyone see anything wrong with this?/FONT
 /P
 BR

 PFONT SIZE=3D2SQL =3D quot;UPDATE CARD SET OUT=3D'7:00' WHERE =
 EMP_ID=3D'5955' AND DATE=3D'04/19/00' AND IN=3D'9:00'quot;/FONT
 /P
 BR
 BR

 PFONT SIZE=3D2ERROR BEWLOW/FONT
 /P
 BR

 PFONT SIZE=3D2Error Diagnostic Information/FONT
 BRFONT SIZE=3D2ODBC Error Code =3D 37000 (Syntax error or access =
 violation)/FONT
 /P
 BR

 PFONT SIZE=3D2[Microsoft][ODBC Microsoft Access Driver] Syntax =
 error (missing operator) in query expression 'EMP_ID=3D'5955' AND =
 DATE=3D'04/19/00' AND IN=3D'9:00''./FONT/P
 BR

 PFONT SIZE=3D2SQL =3D quot;UPDATE CARD SET OUT=3D'7:00' WHERE =
 EMP_ID=3D'5955' AND DATE=3D'04/19/00' AND IN=3D'9:00'quot;/FONT
 /P
 BR
 BR

 PFONT SIZE=3D2TIA/FONT
 BRFONT SIZE=3D2Shawn Regan/FONT
 /P

 /BODY
 /HTML
 --_=_NextPart_001_01BFAB09.1517DF80--
 --

 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.



Deleting Data

2000-04-20 Thread Tim Bahlke

I am trying to create a page where a user can delete their data from the DB.
I have created a CFQUERY with a DELETE statement.

When I try to perform the function I get a page that reads 405 Method Not
Allowed.

Am I missing something with my CF Server settings?

Thanks


Tim



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