Re: Security Concerns Question regarding Cfquery reguried username and password in sql environment

2000-12-05 Thread defective david

i already have a large userbase logged in using client vars stored in the
registry.  is there a migration path to storing client vars in a db?

also, what tabe and columsn does CF look for in the datasource?

---
defective david
http://defective.net

- Original Message -
From: "John Cummings" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Thursday, October 26, 2000 9:50 PM
Subject: Re: Security Concerns Question regarding Cfquery reguried username
and password in sql environment


 You really shouldn't make a habit out of storing client vars in the
registry
 either.  While it does work, and Cold Fusion DOES NOT crash, it is much
 better to store the client vars in a database.

 First of all, it is much easier to scale your site when client vars are
 stored at a DB level, and secondly, the registry has size limitations that
 aren't present when you are dumping vars to a database.

 Just make sure that if you change the CFAS admin setting to store
variables
 in a database that you actually have the database space created first,
 otherwise you will be digging around in the registry trying to fix some
 heartache.

 HTH,
 John
 - Original Message -
 From: "AustralianAccommodation.com Pty. Ltd."
 [EMAIL PROTECTED]
 To: "CF-Talk" [EMAIL PROTECTED]
 Sent: Friday, October 27, 2000 12:39 AM
 Subject: Re: Security Concerns Question regarding Cfquery reguried
username
 and password in sql environment


  The following is a reply sent to me by one of the lead cf hosting
services
  in usa regarding the use of user name and passwords for sql database
 access
  I would appreciate your advice and comments regarding the issue.
 
  "Thank you for your message.
 
  Please try to use the solution you suggested below. As far as I know we
 have
  determined that storing client variables in the registry causes
ColdFusion
  server to crash every time the registry is purged (which happens every
 5-20
  minutes).  We had to switch default client variables store to cookies
and
  restrict access to the client store in the registry."
 
  The solution that I suggested they refer to is to hard code the username
 and
  passwords in each if the cf query tags throughout all the cf pages on my
  site.
 
  My concern is that take the approach of hard coding the database
username
  and password leave a huge security loophole in the site and for those
  wanting to leave the way open for them to gain access to the database
 itself
  upon viewing the source code of the cf pages
 
  I look forward to your comments and advice re this issue
 
 
 
  - Original Message -
  From: "Dave Watts" [EMAIL PROTECTED]
  To: "CF-Talk" [EMAIL PROTECTED]
  Cc: [EMAIL PROTECTED]
  Sent: Friday, October 27, 2000 2:29 PM
  Subject: RE: Security Concerns Question regarding Cfquery reguried
 username
  and password in sql environment
 
 
   I never understood this one.
  
   Why is:
  
   CFQUERY DATASOURCE = "#Request.MainDSN#"
  
   in a template better than
  
   CFQUERY DATASOURCE = "#Request.MainDSN#" UserName =
   "#Request.User#"  Password = "#Request.Pass#"
  
   security-wise?
 
  From a hacker's perspective, it's often pretty easy to read script
code.
  It's usually a little harder to read the registry, which is where CF
 stores
  datasource usernames and passwords.
 
  Dave Watts, CTO, Fig Leaf Software
  http://www.figleaf.com/
  voice: (202) 797-5496
  fax: (202) 797-5444

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

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

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



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

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



Re: Another YAFLAQ (yet another f****** lock question)

2000-12-05 Thread Peter Theobald

Thread B-C will not wait, because CFLOCK is "ADVISORY" locking, meaning it is the 
CFLOCK itself that causes the wait for the resource to be freed up. Cold Fusion takes 
no automatic action for you (unless you turn on those options in the administrator). 
It is up to the programmer to control resource locking with CFLOCKs.

So if you put a CFLOCK around a resource, and DONT put a CFLOCK around another use of 
that same resource, the first lock was useless.

At 01:59 PM 12/4/00 -0800, Gregory Harris wrote:
I'm not locking up the entire page, but granted I'm working with code that I
didn't develop, I need to run a CFLOCK over some of the area to ensure some
integrity within CF.  Some of this code that is being locked has CFINCLUDE
statements doing additional work.  This is why I'm curious.

Basically it's something like this:

Page A: Contains a just developed CFLOCK and a CFINCLUDE within to Page C
Page B: Contains no CFLOCK statements but CFINCLUDES to page C
Page C: No CFLOCK statements or further includes

So if Page A starts and is in the lock, and Page C,  at the same time Page B
starts up and asks for page C, does Page B wait? Or does Page B go ahead?

P.S. I don't know what that second A stands for, innocent typo :-)

Gregory Harris
Web Developer
Stirling Bridge Group LLC

- Original Message -
From: "Jones, Matt" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Monday, December 04, 2000 11:24 AM
Subject: RE: Another YAFLAQ (yet another f** lock question)


 Why are you locking the entire page?

 -Original Message-
 From: Gregory Harris [mailto:[EMAIL PROTECTED]]
 Sent: Monday, December 04, 2000 11:47 AM
 To: CF-Talk
 Subject: Another YAFLAQ (yet another f** lock question)


 Ok, we all know that CFLOCK will lock up a page to single-threaded mode,
but
 my question is, if a Locked template encounters a CFINCLUDE statement,
will
 it lock up the resources in that page as well, for instance:

 I have Page A,B, and C

 Page A is locked up within a CFLOCK statement, but includes a CFINCLUDE to
 page C, page A is running Page C when page B attempts to CFINCLUDE page C
as
 well.

 Will Page B be allowed to include Page C right away, or is it going to
have
 to wait until Page A clears the lock?

 Gregory Harris
 Web Developer
 Stirling Bridge Group LLC


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

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



Re: IE vs. Netscape CF Help

2000-12-05 Thread C Kong

thank you nick, david, and jeff for taking the time out to help this CF
novice with some coding.  it has been much appreciated. colin


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

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



Re: Anti-caching code...

2000-12-05 Thread defective david

what are the other possible values for Progra and cache-control?
i'm trying to force my pages to cache.
---
defective david
http://defective.net

- Original Message -
From: "Jon Hall" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Monday, October 23, 2000 11:51 AM
Subject: Re: Anti-caching code...


   CFHEADER NAME="Expires" VALUE="Mon, 06 Jan 1990 00:00:01 GMT"
   CFHEADER NAME="Pragma" VALUE="no-cache"
   CFHEADER NAME="cache-control" VALUE="no-cache"

 try them

 jon
 - Original Message -
 From: "J.Milks" [EMAIL PROTECTED]
 To: "CF-Talk" [EMAIL PROTECTED]
 Sent: Monday, October 23, 2000 2:37 PM
 Subject: OT: Anti-caching code...


  This is a multi-part message in MIME format.
 
  --=_NextPart_000_0138_01C03CFE.D4DBACA0
  Content-Type: text/plain;
  charset="iso-8859-1"
  Content-Transfer-Encoding: quoted-printable
 
  Hi all,
  I am having an issue with my CFM templates caching like crazy, and was =
  wondering if someone could tell me how they solved it. I know there are
=
  a few META tags that work with the different browsers, but don't seem to
=
  be able to find the exact syntax. I am also aware of how to do it in =
  ASP, but am not sure if there is a way with CF.
 
  Thanks,
 
  Jim
 
 
  --=_NextPart_000_0138_01C03CFE.D4DBACA0
  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 http-equiv=3DContent-Type content=3D"text/html; =
  charset=3Diso-8859-1"
  META content=3D"MSHTML 5.50.4134.600" name=3DGENERATOR
  STYLE/STYLE
  /HEAD
  BODY bgColor=3D#ff
  DIVFONT face=3DArial size=3D2Hi all,/FONT/DIV
  DIVFONT face=3DArial size=3D2I am having an issue with my CFM =
  templates caching=20
  like crazy, and was wondering if someone could tell me how they solved =
  it. I=20
  know there are a few META tags that work with the different browsers, =
  but don't=20
  seem to be able to find the exact syntax. I am also aware of how to do =
  it in=20
  ASP, but am not sure if there is a way with CF./FONT/DIV
  DIVFONT face=3DArial size=3D2/FONTnbsp;/DIV
  DIVFONT face=3DArial size=3D2Thanks,/FONT/DIV
  DIVFONT face=3DArial size=3D2/FONTnbsp;/DIV
  DIVFONT face=3DArial size=3D2Jim/FONT/DIV
  DIVFONT face=3DArial size=3D2/FONTnbsp;/DIV/BODY/HTML
 
  --=_NextPart_000_0138_01C03CFE.D4DBACA0--
 

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

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



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

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



Re: Sending e-mail in a batch

2000-12-05 Thread defective david

i just had to comment that this is the coolest simplest idea for a problem
i've been thinking about for a while.

the bulk of the email i send out is "here's what's new in the last x days".
so if anyone has a similar problem here's how i plan to do it, hopefully
this will help you.

in my user table i'll add a date field called lastNewsletter
i'll select top 10 of users where lastNewsletter  now()-x days
generate and cache the "what's new part", the code that updates stuff on my
site delete appropiate cached files so they will be regenerated next time
send out mail with cached or just cached content.

i figure i could run this with every hit (since i can't use cfschedule),
most of the time it wouldn't send out any email, but when it does, it'll
only send out 10 with cached copy so it won't slow down the request too
much.  i'll tweak how many i send out based on how much i see it slows down
requests.

it's just beautiful i tell ya... beautiful.
---
defective david
http://defective.net


- Original Message -
From: "Steve Nelson" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Thursday, November 02, 2000 7:49 AM
Subject: Re: Sending e-mail in a batch


 I usually just do a calculation to determine that.  Figure out how long
 you want the email to span over.  1 hour? 1 day? 1 week? etc.  Then
 divide that by the number of emails that need to go out and you'll be
 able to figure out how many to send.

 This depends on how much load you think your server will be hit by. For
 example, when we released the ebook for my fusebox book, I was a little
 concerned that if there was a rush to download it my server would crash
 from the gigs of download.  So I emailed a handful of people every 5
 minutes for 24 hours.  That way they would span out the downloads.

 It worked like a charm!

 Steve

 ryo watanabe wrote:
 
  Thanks for the help!
  What would you suggest for the numbers of messages and the interval?
 
  ryo
  - Original Message -
  From: "Steve Nelson" [EMAIL PROTECTED]
  To: "CF-Talk" [EMAIL PROTECTED]
  Sent: Thursday, November 02, 2000 8:46 AM
  Subject: Re: Sending e-mail in a batch
 
   I do that all the time.  It's a very powerful method of emailing users
   because it helps to spread the load out on both your mail server and
   your CF server.  Here's the code I use.  User_newsletter_logs has two
   fields: user_id, date_sent, first I load that table with the users I'm
   sending the message to, then I run this code every X minutes with the
   scheduler.  select top 10 is a SQL 7 thing, not sure if it works in
   Access or not.
  
   cfquery name="getxemails" datasource="#request.maindsn#"
   select top 10 u.user_id,u.first_name,u.last_name,u.email, u.password
   from users u,user_newsletter_logs unl
   where unl.date_sent is null
   and u.user_id=unl.user_id
   /cfquery
  
  
   cfloop query="getxemails"
   cfmail to="#email#" from="[EMAIL PROTECTED]" subject="The Fusebox
   eBook is available!"
   Dear #first_name# #last_name#,
  
   blah blah blah
  
   /cfmail
   cfquery name="sentemails" datasource="#request.maindsn#"
   update user_newsletter_logs
   set date_sent=#now()#
   where user_id=#user_id#
   /cfquery
   /cfloop
  
   Steve Nelson
   http://www.SecretAgents.com
   Tools for Fusebox Developers
  
   ryo watanabe wrote:
   
This is a multi-part message in MIME format.
   
--=_NextPart_000_000D_01C044A2.2579BDA0
Content-Type: text/plain;
charset="Windows-1252"
Content-Transfer-Encoding: quoted-printable
   
Hi,
I was wondering what would be the best way to send e-mail in a
batch.  =
Say batch of 100 e-mail messages every hour.  I am using a shared =
hosting and do not have access to the mail server.  I need to query
a =
database for the e-mail addresses that match a certain set of =
requirements, and send e-mail to those addresses.  There would be no
=
problem if there are less than 100 addresses, however, if there are
300,
  =
I want to send those in 3 batches.
   
The database is updated while sending e-mail, so query result must
be =
somehow kept track of...
Any suggestions and/or ideas are welcomed.
Thanks in advance.
   
ryo
   
--=_NextPart_000_000D_01C044A2.2579BDA0
Content-Type: text/html;
charset="Windows-1252"
Content-Transfer-Encoding: quoted-printable
   
!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
HTMLHEAD
META http-equiv=3DContent-Type content=3D"text/html; =
charset=3Dwindows-1252"
META content=3D"MSHTML 5.50.4134.600" name=3DGENERATOR
STYLE/STYLE
/HEAD
BODY bgColor=3D#ff
DIVFONT size=3D2Hi,/FONT/DIV
DIVFONT size=3D2I was wondering what would be the best way to
send =
e-mail in a=20
batch.nbsp; Say batch of 100 e-mail messages every hour.nbsp; I am
=
using a=20
shared hosting and do not have access to the mail server.nbsp; I
need =
to=20
querynbsp;a database 

RE: deallocate

2000-12-05 Thread Dave Watts

 Are there any issues with using the request scope in lieu of 
 the variable scope? Or is the fact that one's a struct the 
 only difference?

There aren't any issues with using the Request scope, except that you must
explicitly scope your variables; with the local Variables scope, you don't
have to.

However, as mentioned earlier, the fact that the Request scope is a
structure isn't the only difference. The Request scope is also available to
every script that is used to respond to a single request. So, for example, a
Request variable set in application.cfm will be available in the main
script, and also in any custom tags called by that script, and any custom
tags called by those tags themselves, and so on.

That's actually the reason Allaire added it, I think - Spectra uses a lot of
nested custom tags, and the Request scope allows those tags to share data
more easily.

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

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

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



RE: Application.cfm

2000-12-05 Thread Dave Watts

 In your application
 cfset application.variablename = "variable"
 
 In your custom tag
 #application.variablename#
 
 Scoping it as request.variablename is BAD! The request scope 
 is set for each PAGE request and is not the same thing as 
 application scope. Before I figured out my application scoping 
 problem I set everything to request scope only to have to go 
 back and change it later. This is a big performance issue if 
 you run a big site.

I wouldn't go so far as to say that using the Request scope is bad. However,
it's not a replacement for the Application scope. Each is appropriate for
different things.

The Request scope is good for constants - variables which won't change their
values over the lifespan of the application, and which are created with
simple CFSETs. The cost of recreating them for each page is minimal. You
wouldn't want to use the Request scope to store data objects like recordsets
and arrays, though, unless you wanted to discard them at the end of
processing for all scripts building a response to a single request.

The Application scope is good for persistent values which may change over
the lifespan of the application.

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

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

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



RE: TWO for the crew

2000-12-05 Thread Dave Watts

 1) Will CF conect to a mdb DS through a network connection??
 
 If I map a drive to a network machine and try to connect 
 using that drive letter in the CFA ODBC connection screen - 
 it doesn't seem to like that??
 
 Has anyone done this successfully? How?

For this to happen, the CF service must run within a user security context
that allows network connections. You can read about how to run CF as a
specific user here:

http://www.defusion.com/articles/index.cfm?ArticleID=89

Once that's done, you can either create a persistent drive mapping for that
user, or simply use a UNC path:

\\servername\sharename\mydb.mdb

 2) The application.cfm template is used on all template under 
 that directory... Shouldn't I be able to specify CFAPPLICATION 
 on a page under that same directory - with a different app name 
 and have that template function in it's own application scope???

There's a problem with this logic. If you put a CFAPPLICATION tag in a page,
and that page runs an application.cfm with its own different CFAPPLICATION
tag, then your script will have two CFAPPLICATION tags.

To be honest, I don't know how that would work, or what CF would do. It
doesn't sound like a good idea, though, and how it might behave now might
not be the way it works in a future release of CF. If you need to create a
separate application, even if that application is only one page, put it in a
separate directory with its own application.cfm.

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

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

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



RE: ColdFusion for Dummies revision - CF5 features

2000-12-05 Thread Dave Watts

  |   b.. Ability to run queries against existing query 
  result sets (CFSQL).
 
  I don't understand the need for that. Couldn't you just run
  another query? Or is it some sort of performance issue thing 
  since the query is in memory?
 
 Since the query is stored in memory (I assume resident only 
 while the page is processing) you would be running your sub queries 
 against memory. This would be a big time performance boost over 
 running traditional queries because of the difference between 
 the speed of memory access vs. db access.

Not to be a wet blanket, but this isn't necessarily so.

The problem here is that CF doesn't currently execute SQL statements. All it
does is pass those as strings to the database, which executes them and
returns the appropriate recordsets.

Now the people who make the databases spend an awful lot of time (and money)
optimizing query execution. They take advantage of indexes, alternate
possible paths, bind parameters, and other stuff to make SQL run very fast.

When Allaire puts in an SQL analyzer, it's unlikely that it'll match the
best efforts of Oracle and Microsoft in SQL execution efficiency. To have a
chance at making this work, Allaire may have to incorporate a complete
in-memory database, in my opinion, which will make the base product more
complex and potentially more fragile.

Just a thought. I could be wrong.

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

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

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



RE: CF Development Methodologies... (for Dave Watts)

2000-12-05 Thread Dave Watts

 Dave, you have mentioned a few times that you favor 
 developing the front end in Cold Fusion (and of course 
 DHTML and Javascript), the back end in a SQL Database, 
 and all of the business logic in a middle layer.

I don't know if I'd go so far as to say I favor a four-tier approach.

What I do favor, though, is partitioning the logic within an application
across multiple tiers. I would argue that CF would primarily be a middle
tier, rather than a true front-end; HTML, JavaScript/DHTML, and Flash
(nowadays, especially Flash) would make up the front-end. Likewise, data
manipulation logic can usually fit well within the database, using stored
procedures and triggers. Finally, there's the option of placing business
logic in an object tier between CF and the database. With this approach,
you'd be surprised how little CF needs to be in a CF application!

Most of our applications don't have an object tier, though. They do always
have the other three tiers. For some applications, an object tier just makes
sense - for example, if you're working with message queues or multiple
database platforms.

 Can you tell us more about what you use for that middle 
 layer? Do you write custom COM or CORBA objects?
 Do you write custom CFX tags in your favorite programming 
 language?

For object tier development, I prefer COM. My preference is driven by
ignorance - I don't know enough about CORBA, and I'm not especially fond of
the CFX API. Plus, I can write COM in VB - and anyone can be a VB
programmer! The only problem with using COM is CF's weak COM interface,
which is the biggest obstacle keeping us from using it in more CF apps.

 Once Pharaoh comes out do you see yourself using Java for 
 the business logic layer?

I don't think I'll wait that long. I think Java is a nice language, and I'm
learning it as fast as I can. It's got very powerful libraries, and it's
easier than C++. Plus, I can write cross-platform server-side code in Java.
For Windows solutions, though, it's hard not to go with COM, especially if
your client is a typical Windows shop with lots of VB guys.

I do think that Java is the "language of the future", in that I think it'll
replace the use of C++ for general line-of-business application development.

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

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

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



RE: Application.cfm

2000-12-05 Thread Darryl Lyons

Do you use the fusebox methodology?

-Original Message-
From: Benjamin Fitts [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, December 05, 2000 10:01 AM
To: CF-Talk
Subject: RE: Application.cfm


Regarding Application variables.

When  my code wasn't properly written I thought custom tags couldn't read
application variables but I figured out I was doing something wrong.

Custom tags can read application variables; just scope the variable as
application.variablename.  You need to scope the variable BOTH in the
application.cfm and the custom tag.

In your application
cfset application.variablename = "variable"

In your custom tag
#application.variablename#

Scoping it as request.variablename is BAD! The request scope is set for each
PAGE request and is not the same thing as application scope. Before I
figured out my application scoping problem I set everything to request scope
only to have to go back and change it later.  This is a big performance
issue if you run a big site.

If your variables aren't available to your custom_tag I think you have
another problem with your code that should be examined.

Also remember to always try and scope your variables. Local variables are
variables.scope application are application.scope session variables are
session.scope etc.


Benjamin Fitts
Web Developer
uClick
[EMAIL PROTECTED]


-Original Message-
From: Jason Egan [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 04, 2000 3:19 PM
To: CF-Talk
Subject: RE: Application.cfm


No, I don't believe so - custom tags - called by cf_ or cfmodule are run on
a separate thread, so they aren't aware of application variables (like #dsn#
for your datasource).

The datasource is usually what I ran into trouble with, so I passed it as an
attribute:

cfmodule template="test.cfm" userid="10" dsn="#dsn#"

Then attributes.userid and attributes.dsn would be available to me in my tag
test.cfm.

hope this helps.

je

-Original Message-
From: Neil H. [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 04, 2000 11:19 AM
To: CF-Talk
Subject: Application.cfm


Would application variables be available to a module (i.e. a template called
by CFModule) ?  And if they are how far up the tree will CF look for the
application.cfm file?

My problem is I set a variable called datasource equal to my DSN name.  I
attempt to reference #datasource# and even #application.datasource# in my
module and it isn't available.

Any help or suggestions would be appreciated.

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

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



Re: Need some guidance on a CFPOP question

2000-12-05 Thread pan





 Ok,  can i do this to determine if someone has logged in correctly???
 
 cfpop 
 SERVER="1.1.1.1"
 USERNAME="[EMAIL PROTECTED]"
 PASSWORD="password"
 NAME="check"
 

You wouldn't use username@domain, just username.
LogIn to a pop3 server is done with acctame and password.


 cfif check.RecordCount EQ 1
Good Login, Proceed
 cfelse
Bad Login, Redirect
 /cfif
 
 Can i do that record check?
 

Yes - but it's better to wrap the cfpop in a cftry/cfcatch trap.
Your code assumes no error from the pop3 server. Cftry
will catch things like bad password; poplock; no response, etc.
If there is no error, then the name attribute (in your case "check")
is a query - with all the attendant properties of a query.

also - recordcount froma cfpop query is the count of
messages available for the current login - and what if there is
a good login but no messages ...

use the cftry/cfcatch wrapper - it will provide you all you need.

Pan



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

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



ALOT of users was Re: Big companies using CF

2000-12-05 Thread Brian bouldernet

www.lycosshop.com
nike is using it with able commerece in Florida.
www.vegas.com
www.mgmgrand.com
www.lvtb.com
www.westernunion.com
POint him to linkexchange.com   IT's a MS site and run on CF He'll like
that of course.
- Original Message -
From: Joe Sheble aka Wizaerd [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Monday, December 04, 2000 7:18 PM
Subject: Big companies using CF


 I know this is probably one of those discussions that turn up all the time
 on a mailing list such as this, and I apologize for bringing it up.  I
have
 a new IT Director starting at my company in the very near future who's a
big
 Microsoft fan, and thinks there's nothing better than ASP and/or C# (which
I
 believe hasn't even been released yet, no?).

 When I told him that CF has been around for a long time, and some really
big
 companies use it, he doubted it.  I told him Amazon.com was using it (was
I
 right about this?).

 So anyway, I've agreed to compile a list of some of the bigger well known
 internet comapnies using it, and would like some assistance.  What big
time
 comapnies are using CF for their pages?

 thanx...

 Joseph E. Sheble
 a.k.a. Wizaerd
 Wizaerd's Realm
 Canvas, 3D, Graphics,
 ColdFusion, PHP, and mySQL
 http://www.wizaerd.com
 =



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

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



Assembler.....

2000-12-05 Thread Michael Thomas

Lately I wuz thinking of picking up an extra language to add to my long list 
of the ones I currently know ;) As most people know you can develop custom 
COM, CORBA, CFX  other types of add-ons using alot of different languages 
like C++, VB, Java etc. etc.

What I am wondering is if anyone out there knows if I can create COM or CFX 
extensions through assembly/assembler language. I know its a pretty old 
language but its also pretty efficient. If anyone has anything to comment 
about this, please do ;) I will be one extremely greatful person.

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

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



RE: Big companies using CF

2000-12-05 Thread Stewart McGowan

Freeserve in the UK, the UK's largest ISP and Portal and their associated
sites.

Stew

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

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



Re: ColdFusion for Dummies revision - CF5 features

2000-12-05 Thread pan

[Lots of message chaff on the list lately, can't find
new messages amidst all the echoed old posts]

From: "Dave Watts" [EMAIL PROTECTED]
Sent: Monday, December 04, 2000 20:05
Subject: RE: ColdFusion for Dummies revision - CF5 features


 
 When Allaire puts in an SQL analyzer, it's unlikely that it'll match the
 best efforts of Oracle and Microsoft in SQL execution efficiency. To have a
 chance at making this work, Allaire may have to incorporate a complete
 in-memory database, in my opinion, which will make the base product more
 complex and potentially more fragile.
 

Absent good information we've been speculating about the CF5 ability
to query a query. It may not be written to emulate anything and to do
no more than allow simple look-ups and other low-level ops that are
not currently part of the functions toolbox. Has anyone stated that
we are getting a full blown inline analyzer? Could be just an expansion
of Queryxxx function set.

Pan



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

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



RE: Assembler.....

2000-12-05 Thread DeVoil, Nick

Mike,

Yes, you could write COM objects in assembler.
COM is a language-independent binary standard.

But I wouldn't do that if I were you.
C++ is pretty efficient too you know.

Nick

-Original Message-
From: Michael Thomas [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, December 05, 2000 8:26 AM
To: CF-Talk
Subject: Assembler.


Lately I wuz thinking of picking up an extra language to add to my long list

of the ones I currently know ;) As most people know you can develop custom 
COM, CORBA, CFX  other types of add-ons using alot of different languages 
like C++, VB, Java etc. etc.

What I am wondering is if anyone out there knows if I can create COM or CFX 
extensions through assembly/assembler language. I know its a pretty old 
language but its also pretty efficient. If anyone has anything to comment 
about this, please do ;) I will be one extremely greatful person.

TIA,
Mike


**
Information in this email is confidential and may be privileged. 
It is intended for the addressee only. If you have received it in error,
please notify the sender immediately and delete it from your system. 
You should not otherwise copy it, retransmit it or use or disclose its
contents to anyone. 
Thank you for your co-operation.
**

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

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



Just remembered....

2000-12-05 Thread Michael Thomas

I just remembered I had some troublesome code from a small lil' thing I wuz 
making while bored one night about 2 months ago. I had forgotten all about 
this page till I just found it ;). I called the code dynamicxygen.cfm  
planned to use it as an include. Basically what it does is this:

It'll dynamically create links to each directory from the current template 
path, all the way down to root. If you included it on every page you would 
have a very easy way of creating links around the site, even tho the code is 
a bit clunky. It would look like this one a page:

!--- Normal path to file. ---
Path: C:\r00t\main\newdir\currentdir\blah.cfm

!--- The dyxgen navigation would then end up like this on the page ---

linkmain/link/linknewdir/link/linkcurrentdir/link/blah.cfm
main/newdir/currentdir/blah.cfm all linked back to the correct files.


The code works great when creating links to docs in root  2nd level 
directories but when it goes deeper than that it doesnt return anything but 
an empty array. I cant understand why, altho I do have to admit I havent 
looked at the code in a long while.

Can anyone help me find out why this isnt working 3 or more directories deep 
when it works fine any level before that??? Ill post the code below:

cfset pathlen=ListLen(SCRIPT_NAME,"/")
cfset temparray=ArrayNew(1)
cfset y="1"

cfoutput
  cfloop index="x" from="#pathlen#" to="1" step="1"
  cfset getting=ListGetAt(SCRIPT_NAME,"#x#","/")
cfif y IS "#pathlen#"
  cfset temparray[y]=#ReReplaceNoCase(SCRIPT_NAME,"getting","","ONE")#
cfelse
  cfset y=y+1
  cfset temparray[y]=#ReReplaceNoCase(SCRIPT_NAME,"getting","","ONE")#
/cfif
/cfloop

cfloop index="z" from="1" to="#ArrayLen(temparray)#" step="1"
  cfset newlink="#ReReplaceNoCase(reverse(temparray[z]),"/","","ONE")#"
cfif z IS "1" AND z IS NOT "#ArrayLen(temparray)#"
  /a href="http://127.0.0.1/"Home/a/a 
href="#temparray[z]#"#Reverse(newlink)#/a
cfelseif z IS "#ArrayLen(temparray)#"
  /a href="#temparray[z]#"#Reverse(newlink)#/a
/cfif
/cfloop

!--- I added this code once I found the bug. This'll prove that the code 
doesnt work when executed after 2 directories deep. ---
cfif ArrayIsEmpty(temparray) IS "true"
  Array is empty
cfelse
  Array is all good.
/cfif

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

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



RE: Assembler.....

2000-12-05 Thread Michael Thomas

Thanx for the response, I wuz almost going to bet that no one would reply to 
this one ;) Assembler is a pretty old language  its too bad that you 
recommend not using it for extending CF. Nonetheless it seems like an 
interesting language to learn, so Ill definantly study up on it a bit. I'll 
just have to look to other languages, like C++, to extend my apps. Thanx 
again.

Mike


From: "DeVoil, Nick" [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Subject: RE: Assembler.
Date: Tue, 05 Dec 2000 11:02:11 -

Mike,

Yes, you could write COM objects in assembler.
COM is a language-independent binary standard.

But I wouldn't do that if I were you.
C++ is pretty efficient too you know.

Nick

-Original Message-
From: Michael Thomas [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, December 05, 2000 8:26 AM
To: CF-Talk
Subject: Assembler.


Lately I wuz thinking of picking up an extra language to add to my long 
list

of the ones I currently know ;) As most people know you can develop custom
COM, CORBA, CFX  other types of add-ons using alot of different languages
like C++, VB, Java etc. etc.

What I am wondering is if anyone out there knows if I can create COM or CFX
extensions through assembly/assembler language. I know its a pretty old
language but its also pretty efficient. If anyone has anything to comment
about this, please do ;) I will be one extremely greatful person.

TIA,
Mike


**
Information in this email is confidential and may be privileged.
It is intended for the addressee only. If you have received it in error,
please notify the sender immediately and delete it from your system.
You should not otherwise copy it, retransmit it or use or disclose its
contents to anyone.
Thank you for your co-operation.
**


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

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



variables scope...

2000-12-05 Thread Daniel Lancelot

Is it possible to access the variables scope as a structure (similar to
seesion, form, url, application and cookie) 
or is there some other way of looping through all variables?

I'm want to know all defined variables and their values for debug
purposes...

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

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



Re: APPLICATION.CFM Variable problems

2000-12-05 Thread Richard L Smith

Thank's

I figured it out, it was the Template Cache Size setting
causing the problem. I reset it from 1024k down to 5kb
that did it!
Anyway is there any standard/ formula for setting parameters like this on
server.

Thanks again
Rick
- Original Message -
From: "David Cummins" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Monday, December 04, 2000 3:20 PM
Subject: Re: APPLICATION.CFM Variable problems


 One thing that happened to me recently, was I forgot that a relative URL
would
 be relative to the template that was called, not the include file that it
 appears in.

 Silly, I know, but if you had another copy of those stylesheets somewhere
else,
 and the URL happens to resolve to them, they would be the only ones that
work...

 David Cummins

 Richard L Smith wrote:
 
  Hello;
 
  I have a strange problem with CFParam in my APPLICATION.CFM file.
 
  I put some cfparams containing some references to style sheets that are
used
  throughout the site.
 
  CFPARAM  NAME="stTypeA" default="styles/aStyle.css"
  CFPARAM  NAME="stTypeB" default="styles/bStyle.css"
 
  Then I reference it like this:
 
  cfoutput
  link rel="STYLESHEET" type="text/css" href="#stTypeA#"
 
  /cfoutput
 
  It works fine until I make some change to any OF THE CFPARAMS like the
  path to the style sheets
  then it stops working it still shows the page in IE4.0 but the styles
don't
  show up at all, I think it maybe
  some kind of cache problem, although looking at View source the output
  appears to be correct.
 
  Any Ideas
 
  Thanks
  Rick


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

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



Slightly OT....HTML question

2000-12-05 Thread Andy Ewings

I have a form with a select control that loads approx 7000 options into it
(I know this is stupid but it's what the client wants).  When I view the
form on a PC it's fine.  However on a Mac I see nothing.  When I reduce the
number of entries to about 4,500 I can see them on the Mac.

Does anyone know if there is a known issue here and if so is there a way
around it?
-- 
Andrew Ewings
Project Manager
Thoughtbubble Ltd 
http://www.thoughtbubble.net 
-- 
United Kingdom 
http://www.thoughtbubble.co.uk/ 
Tel: +44 (0) 20 7387 8890 
-- 
New Zealand 
http://www.thoughtbubble.co.nz/ 
Tel: +64 (0) 9 419 4235 
-- 
The information in this email and in any attachments is confidential and
intended solely for the attention and use of the named addressee(s). Any
views or opinions presented are solely those of the author and do not
necessarily represent those of Thoughtbubble. This information may be
subject to legal, professional or other privilege and further distribution
of it is strictly prohibited without our authority. If you are not the
intended recipient, you are not authorised to disclose, copy, distribute, or
retain this message. Please notify us on +44 (0)207 387 8890. 



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

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



Re: Big companies using CF

2000-12-05 Thread Michael She

onvia.com and even Hewlett Packard uses it for their site.


At 07:18 PM 12/04/00 -0700, Joe Sheble aka Wizaerd you wrote:

I know this is probably one of those discussions that turn up all the time
on a mailing list such as this, and I apologize for bringing it up.  I have
a new IT Director starting at my company in the very near future who's a big
Microsoft fan, and thinks there's nothing better than ASP and/or C# (which I
believe hasn't even been released yet, no?).

When I told him that CF has been around for a long time, and some really big
companies use it, he doubted it.  I told him Amazon.com was using it (was I
right about this?).

So anyway, I've agreed to compile a list of some of the bigger well known
internet comapnies using it, and would like some assistance.  What big time
comapnies are using CF for their pages?

thanx...

Joseph E. Sheble
a.k.a. Wizaerd
Wizaerd's Realm
Canvas, 3D, Graphics,
ColdFusion, PHP, and mySQL
http://www.wizaerd.com
=



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

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



Chat Application

2000-12-05 Thread Kent A. Orso

Does anyone know of a Chat Application written in CF that will work with
about 30-40 users at one time and will work with users coming in from AOL,
Prodigy or MSN? I need an application that will allow a couple of moderators
to "police" the room and "mute" or remove abusive users.

Kent A. Orso
[EMAIL PROTECTED]


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

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



Re: How can I use CF to push data into a statistical package or an Ex cel spreadsheet?

2000-12-05 Thread Tim Dempsey

Thanks very much Rick. This is really helpful. And, if you would, can you
send the working Perl version to me at [EMAIL PROTECTED] ?  I'd
appreciate that, too.

Thanks again,
  -- Tim Dempsey
- Original Message -
From: "Rick Osborne [Mojo]" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Monday, December 04, 2000 8:17 PM
Subject: RE: How can I use CF to push data into a statistical package or an
Ex cel spreadsheet?


 Tim Dempsey asked:
  How do I take that data and get it into Excel on the client's machine?

 We had to do something like this last month (with Doughnut charts instead
of
 Pie charts, but it's close enough).  I never could get it to work 100% in
 CF, as Excel wouldn't honor my Quit() command and would just stay open,
 leaving lots of little zombies all over the place.  However, on a whim I
 translated it into Perl and got it to work that way.  (And, oddly enough,
 the Perl version is *much* easier on the eyes, for once.)

 Anyway, I apologize for the minimal documentation, but this was really
just
 a quick hack for me.  YMMV and all that.  If you ever figure out the
Quit()
 problem, let me know.  I'd love to know what I'm doing wrong.  Also, if
you
 want the (working) Perl version, let me know and I'll send it via separate
 channels (as I figured I'd get flamed 'til the end of time if I posted
Perl
 to this list).  It's much smarter and does things like palette conversion
 (so that you aren't stuck with Excel's default colors), and other neat-o
 tricks.

 -R

 CFSETTING ENABLECFOUTPUTONLY="YES" SHOWDEBUGOUTPUT="No"

 !---
   graph/doughnut.cfm
 ---

 !---
   Constants
 ---
 CFSET xlWorksheet=-4167

 CFINCLUDE TEMPLATE="../../include/_ext2attr.cfm"
 CFPARAM NAME="Attributes.Height" DEFAULT="200"
 CFPARAM NAME="Attributes.Width" DEFAULT="200"
 CFPARAM NAME="Attributes.Rows" DEFAULT="0"
 CFPARAM NAME="Attributes.Cols" DEFAULT="0"
 CFPARAM NAME="Attributes.Title" DEFAULT=""
 CFPARAM NAME="Attributes.Legend" DEFAULT="0"
 CFPARAM NAME="Attributes.Type" DEFAULT="gif"
 CFSET Attributes.Height=Attributes.Height*0.74999
 CFSET Attributes.Width=Attributes.Width*0.74999
 CFSET FileName=""

 CFTRY
   CFTRY
 CFOBJECT ACTION="CONNECT" TYPE="COM" CLASS="Excel.Application"
 NAME="App"
   CFCATCH
 CFOBJECT ACTION="CREATE" TYPE="COM" CLASS="Excel.Application"
 NAME="App"
   /CFCATCH
   /CFTRY
   CFSET Workbooks=App.Workbooks
   CFSET Workbook=Workbooks.Add(xlWorksheet)
   CFLOOP COLLECTION="#Workbook.WorkSheets#" ITEM="Sheet"
 CFLOOP FROM="1" TO="#Attributes.Rows#" INDEX="Row"
   CFLOOP FROM="1" TO="#Attributes.Cols#" INDEX="Col"
 CFSET ColLetter=Chr(Col + Asc('A') - 1)
 CFSET CellName="vr#Row#c#Col#"
 CFIF StructKeyExists(Attributes,CellName)
   CFSET Range=Sheet.Range("#ColLetter##Row#")
   CFSET Range.Value=Attributes[CellName]
 /CFIF
   /CFLOOP
 /CFLOOP
 CFSET ColLetter=Chr(Attributes.Cols + Asc('A') - 1)
 CFSET SourceRange=Sheet.Range("A1:#ColLetter##Attributes.Rows#")
 CFSET ChartObjects=Sheet.ChartObjects()
 CFSET Chart=ChartObjects.Add(0,0,Attributes.Width,Attributes.Height)
 CFSET Donut=Chart.Chart
 CFSET Donut.ChartWizard(SourceRange, -4120, 1, 2, 1, 0)
 CFSET Series=0
 CFLOOP FROM="1" TO="#DecrementValue(Attributes.Cols)#"
INDEX="Series"
   CFSET Ser=Donut.SeriesCollection(Series)
   CFSET Ser.HasDataLabels=0
   CFLOOP FROM="1" TO="#Attributes.Rows#" INDEX="Row"
 CFSET Cellname="c_#Series#_#Row#"
 CFIF StructKeyExists(Attributes,CellName)
   CFSET CellColor=Attributes[CellName]
   CFOUTPUTPResetting color #CellColor#/P/CFOUTPUT
   CFIF Left(CellColor,1) IS "##"
 CFSET CellColor=InputBaseN(Mid(CellColor,6,2) 
 Mid(CellColor,4,2)  Mid(CellColor,2,2),16)
   /CFIF
   CFSET Point=Ser.Points(Row)
   CFSET Interior=Point.Interior
   CFSET Interior.Color=CellColor
 /CFIF
   /CFLOOP
 /CFLOOP
 CFIF Attributes.Title IS ""
   CFSET Donut.HasTitle=0
   CFSET PlotArea=Donut.PlotArea
   CFSET PlotArea.Top=0
   CFSET PlotArea.Left=0
   CFSET PlotArea.Height=Attributes.Height-8
   CFSET PlotArea.Width=Attributes.Width-8
 CFELSE
   CFSET Donut.HasTitle=1
   CFSET ChartTitle=Donut.ChartTitle
   CFSET ChartTitle.Caption=Attributes.Title
 /CFIF
 CFIF Attributes.Legend
   CFSET Donut.HasLegend=1
 CFELSE
   CFSET Donut.HasLegend=0
 /CFIF
 CFSET Border=Chart.Border
 CFSET Border.LineStyle=-4142
 CFSET FileName="c:\temp\Doughnut#CreateUUID()#.#Attributes.Type#"
 CFSET Donut.Export(FileName,Attributes.Type,0)
 CFSET Donut.Delete()
   /CFLOOP
 CFCATCH TYPE="Any"
   CFOUTPUT
 H1Error/H1
 P#CFCATCH.Message#/P
 BLOCKQUOTE#CFCATCH.Detail#/BLOCKQUOTE
   /CFOUTPUT
 /CFCATCH
 /CFTRY

 CFSET WorkBook.Saved=-1
 CFSET App.Quit()
 CFSET App=""

 CFIF FileName IS NOT ""
   CFCONTENT TYPE="image/#Attributes.Type#" 

Re: Big companies using CF

2000-12-05 Thread Todd Ashworth

Autobytel.com

You can also look here for a list:

http://www.allaire.com/casestudies/index.cfm

Todd Ashworth

- Original Message -
From: "Joe Sheble aka Wizaerd" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Monday, December 04, 2000 9:18 PM
Subject: Big companies using CF


| I know this is probably one of those discussions that turn up all the time
| on a mailing list such as this, and I apologize for bringing it up.  I
have
| a new IT Director starting at my company in the very near future who's a
big
| Microsoft fan, and thinks there's nothing better than ASP and/or C# (which
I
| believe hasn't even been released yet, no?).
|
| When I told him that CF has been around for a long time, and some really
big
| companies use it, he doubted it.  I told him Amazon.com was using it (was
I
| right about this?).
|
| So anyway, I've agreed to compile a list of some of the bigger well known
| internet comapnies using it, and would like some assistance.  What big
time
| comapnies are using CF for their pages?



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

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



RE: variables scope...

2000-12-05 Thread Robert Segal

The local (variables scoped) variables cannot be accessed in a structure.
You could however use request variables instead of local variables, and then
access the request structure.

-Original Message-
From: Daniel Lancelot [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, December 05, 2000 7:10 AM
To: CF-Talk
Subject: variables scope...


Is it possible to access the variables scope as a structure (similar to
seesion, form, url, application and cookie) 
or is there some other way of looping through all variables?

I'm want to know all defined variables and their values for debug
purposes...
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



RE: variables scope...

2000-12-05 Thread Daniel Lancelot

yup - nps - it was just for debugging realy - when I'm editing other peoples
code and I quickly want to see which vars are defined...

but doesnt look possible  :(

: -Original Message-
: From: Robert Segal [mailto:[EMAIL PROTECTED]]
: Sent: 05 December 2000 13:46
: To: CF-Talk
: Subject: RE: variables scope...
: 
: 
: The local (variables scoped) variables cannot be accessed in 
: a structure.
: You could however use request variables instead of local 
: variables, and then
: access the request structure.
: 
: -Original Message-
: From: Daniel Lancelot [mailto:[EMAIL PROTECTED]]
: Sent: Tuesday, December 05, 2000 7:10 AM
: To: CF-Talk
: Subject: variables scope...
: 
: 
: Is it possible to access the variables scope as a structure 
: (similar to
: seesion, form, url, application and cookie) 
: or is there some other way of looping through all variables?
: 
: I'm want to know all defined variables and their values for debug
: purposes...
:
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



Re: Slightly OT....HTML question

2000-12-05 Thread Todd Ashworth

| Does anyone know if there is a known issue here and if so is there a way
| around it?

Yes .. strike the client about the head firmly and repeatedly until they
understand the foolishness of their ways ;)

What in the world would you need 7,000 entries in a single select box?  Is
there a way you could split that up, or drill down to a more manageable
number?

Todd Ashworth

- Original Message -
From: "Andy Ewings" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Tuesday, December 05, 2000 7:53 AM
Subject: Slightly OTHTML question


| I have a form with a select control that loads approx 7000 options into it
| (I know this is stupid but it's what the client wants).  When I view the
| form on a PC it's fine.  However on a Mac I see nothing.  When I reduce
the
| number of entries to about 4,500 I can see them on the Mac.
|
| Does anyone know if there is a known issue here and if so is there a way
| around it?



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

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



Re: Slightly OT....HTML question

2000-12-05 Thread Jamie Keane

Egads, that's a big number.  What we commonly use for a drill-down is the
TwoSelectsRelated tag (or if the data is sufficiently cumbersome,
ThreeSelectsRelated).

Jamie

--
Jamie Keane
Programmer
SolutionMasters, Inc.
9111 Monroe Rd., Suite 100
Charlotte, NC  28270
www.solutionmasters.com
704.563.5559 x 228  Voice
704.849.9291  Fax
-Original Message-
From: Todd Ashworth [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Date: Tuesday, December 05, 2000 8:53 AM
Subject: Re: Slightly OTHTML question


| Does anyone know if there is a known issue here and if so is there a way
| around it?

Yes .. strike the client about the head firmly and repeatedly until they
understand the foolishness of their ways ;)

What in the world would you need 7,000 entries in a single select box?  Is
there a way you could split that up, or drill down to a more manageable
number?

Todd Ashworth

- Original Message -
From: "Andy Ewings" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Tuesday, December 05, 2000 7:53 AM
Subject: Slightly OTHTML question


| I have a form with a select control that loads approx 7000 options into
it
| (I know this is stupid but it's what the client wants).  When I view the
| form on a PC it's fine.  However on a Mac I see nothing.  When I reduce
the
| number of entries to about 4,500 I can see them on the Mac.
|
| Does anyone know if there is a known issue here and if so is there a way
| around it?




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

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



Re: Assembler.....

2000-12-05 Thread Joe Sheble aka Wizaerd

C++ was only efficient before MS developed the bloated MFC...
Remember OWL?  Now there was efficiency

- Original Message -
From: "DeVoil, Nick" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Tuesday, December 05, 2000 4:02 AM
Subject: RE: Assembler.


 Mike,

 Yes, you could write COM objects in assembler.
 COM is a language-independent binary standard.

 But I wouldn't do that if I were you.
 C++ is pretty efficient too you know.

 Nick

 -Original Message-
 From: Michael Thomas [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, December 05, 2000 8:26 AM
 To: CF-Talk
 Subject: Assembler.


 Lately I wuz thinking of picking up an extra language to add to my long
list

 of the ones I currently know ;) As most people know you can develop custom
 COM, CORBA, CFX  other types of add-ons using alot of different languages
 like C++, VB, Java etc. etc.

 What I am wondering is if anyone out there knows if I can create COM or
CFX
 extensions through assembly/assembler language. I know its a pretty old
 language but its also pretty efficient. If anyone has anything to comment
 about this, please do ;) I will be one extremely greatful person.

 TIA,
 Mike


 **
 Information in this email is confidential and may be privileged.
 It is intended for the addressee only. If you have received it in error,
 please notify the sender immediately and delete it from your system.
 You should not otherwise copy it, retransmit it or use or disclose its
 contents to anyone.
 Thank you for your co-operation.
 **


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

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



RE: Change Header Value (tds)

2000-12-05 Thread Dave Watts

 I have a *.cfm template that I want to just spit out text and be
 interpreted by the browser to be just text.
 
 I'm assuming I need to change the header "Content-type:" from
 "text/html" to "text/plain". Can I do this and if so how?

You can use the CFCONTENT tag to do that. Here's an example:

http://www.figleaf.com/demo/mimetest/

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

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

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



Re: Coding standards

2000-12-05 Thread Todd Ashworth

www.black-box.org

www.swtich-box.org

litter-box (in development still)

Todd Ashworth

- Original Message -
From: "Michael She" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Monday, December 04, 2000 6:19 PM
Subject: Coding standards


| Hello,
|
| I'm intersted in learning about coding and programming standards for
| Coldfusion/scripting languages.
|
| People have mentioned CFObjects and Fusebox coding methodologies for
| CF.  Are there any others out there?
|
| They don't have to be specific for ColdFusion.
|
| Thanks!
| --
| Michael She
| I m a g i n e   C o m m u n i c a t i o n s
| Company E-mail: [EMAIL PROTECTED]
| Personal E-mail: [EMAIL PROTECTED]
| ICQ UIN: #243466
| Personal Homepage: http://www.michaelshe.com (Under Construction)
| Imagine Communications: http://www.imagineer.net
| PGP Fingerprint: 9A24 1DA9 39B8 0A0C C5ED 6E5D 45E9 075A 51CD 66A1
|
|
|
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



Re: Big companies using CF

2000-12-05 Thread Joe Sheble aka Wizaerd

having worked for onvia.com (their newly aquired phoenix office) I wouldn't
offer them as being a good or even efficient example of CF usage...

- Original Message -
From: "Michael She" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Tuesday, December 05, 2000 5:59 AM
Subject: Re: Big companies using CF


 onvia.com and even Hewlett Packard uses it for their site.


 At 07:18 PM 12/04/00 -0700, Joe Sheble aka Wizaerd you wrote:

 I know this is probably one of those discussions that turn up all the
time
 on a mailing list such as this, and I apologize for bringing it up.  I
have
 a new IT Director starting at my company in the very near future who's a
big
 Microsoft fan, and thinks there's nothing better than ASP and/or C#
(which I
 believe hasn't even been released yet, no?).
 
 When I told him that CF has been around for a long time, and some really
big
 companies use it, he doubted it.  I told him Amazon.com was using it (was
I
 right about this?).
 
 So anyway, I've agreed to compile a list of some of the bigger well known
 internet comapnies using it, and would like some assistance.  What big
time
 comapnies are using CF for their pages?
 
 thanx...
 
 Joseph E. Sheble
 a.k.a. Wizaerd
 Wizaerd's Realm
 Canvas, 3D, Graphics,
 ColdFusion, PHP, and mySQL
 http://www.wizaerd.com
 =
 
 
 

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

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



RE: Slightly OT....HTML question

2000-12-05 Thread Andy Ewings

I think I'm going to have to.  At the moment the 7,000 entries are every 6th
form school/colledge in the country.  The form as it is takes about 30
seconds to load so I htink I'm going to break it down whereby the user
selects a letter which the school name starts with.  This will restrict the
list sufficiently.  Lets hope the client goes for it!

-- 
Andrew Ewings
Project Manager
Thoughtbubble Ltd 
http://www.thoughtbubble.net 
-- 
United Kingdom 
http://www.thoughtbubble.co.uk/ 
Tel: +44 (0) 20 7387 8890 
-- 
New Zealand 
http://www.thoughtbubble.co.nz/ 
Tel: +64 (0) 9 419 4235 
-- 
The information in this email and in any attachments is confidential and
intended solely for the attention and use of the named addressee(s). Any
views or opinions presented are solely those of the author and do not
necessarily represent those of Thoughtbubble. This information may be
subject to legal, professional or other privilege and further distribution
of it is strictly prohibited without our authority. If you are not the
intended recipient, you are not authorised to disclose, copy, distribute, or
retain this message. Please notify us on +44 (0)207 387 8890. 



-Original Message-
From: Todd Ashworth [mailto:[EMAIL PROTECTED]]
Sent: 05 December 2000 14:02
To: CF-Talk
Subject: Re: Slightly OTHTML question


| Does anyone know if there is a known issue here and if so is there a way
| around it?

Yes .. strike the client about the head firmly and repeatedly until they
understand the foolishness of their ways ;)

What in the world would you need 7,000 entries in a single select box?  Is
there a way you could split that up, or drill down to a more manageable
number?

Todd Ashworth

- Original Message -
From: "Andy Ewings" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Tuesday, December 05, 2000 7:53 AM
Subject: Slightly OTHTML question


| I have a form with a select control that loads approx 7000 options into it
| (I know this is stupid but it's what the client wants).  When I view the
| form on a PC it's fine.  However on a Mac I see nothing.  When I reduce
the
| number of entries to about 4,500 I can see them on the Mac.
|
| Does anyone know if there is a known issue here and if so is there a way
| around it?
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



Re: Big companies using CF

2000-12-05 Thread Jamie Keane

I believe www.roomstogo.com is CF-based (and FuseBox-based to boot!).

--
Jamie Keane
Programmer
SolutionMasters, Inc.
9111 Monroe Rd., Suite 100
Charlotte, NC  28270
www.solutionmasters.com
704.563.5559 x 228  Voice
704.849.9291  Fax
-Original Message-
From: Todd Ashworth [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Date: Tuesday, December 05, 2000 8:36 AM
Subject: Re: Big companies using CF


Autobytel.com

You can also look here for a list:

http://www.allaire.com/casestudies/index.cfm

Todd Ashworth

- Original Message -
From: "Joe Sheble aka Wizaerd" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Monday, December 04, 2000 9:18 PM
Subject: Big companies using CF


| I know this is probably one of those discussions that turn up all the
time
| on a mailing list such as this, and I apologize for bringing it up.  I
have
| a new IT Director starting at my company in the very near future who's a
big
| Microsoft fan, and thinks there's nothing better than ASP and/or C#
(which
I
| believe hasn't even been released yet, no?).
|
| When I told him that CF has been around for a long time, and some really
big
| companies use it, he doubted it.  I told him Amazon.com was using it (was
I
| right about this?).
|
| So anyway, I've agreed to compile a list of some of the bigger well known
| internet comapnies using it, and would like some assistance.  What big
time
| comapnies are using CF for their pages?




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

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



RE: Assembler.....

2000-12-05 Thread Dave Watts

 C++ was only efficient before MS developed the bloated MFC...
 Remember OWL?  Now there was efficiency

If you're building COM objects in VC++, you'd use ATL, not MFC. ATL is
pretty lightweight.

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

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

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



Re: Slightly OT....HTML question

2000-12-05 Thread Dick Applebaum

Andrew

You can try allocating more memory to the browser on the Mac.

A better approach might be to use something like twoSelectsRelated or 
ThreeSelectsRelated custom tags availab at allaire.

At least you could break the unwieldy number of entries into smaller groups.

HTH

Dick


At 12:53 PM + 12/5/00, Andy Ewings wrote:
I have a form with a select control that loads approx 7000 options into it
(I know this is stupid but it's what the client wants).  When I view the
form on a PC it's fine.  However on a Mac I see nothing.  When I reduce the
number of entries to about 4,500 I can see them on the Mac.

Does anyone know if there is a known issue here and if so is there a way
around it?
--
Andrew Ewings

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

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



RE: How can I use CF to push data into a statistical package or an Ex cel spreadsheet?

2000-12-05 Thread Al Musella, DPM


If you just need simple pie charts or bar graphs, the java applets that 
used to come with CF work out fine..
Take a look at  survey results I just did for someone:
http://a1webs.com/pm-news/graphs.cfm

the survey is at:
http://a1webs.com/pm-news/

(don't look at the ugly colors - it had to blend in with an existing ugly 
site:)

I think the java applets are on the allaire site someplace.  To use, it is 
simply:

applet code="BarChart.class" codebase="http://a1webs.com/pm-news/" 
width="300" height="300"
PARAM NAME="ChartData.Columns" VALUE="Items,Values"
PARAM NAME="ChartData.Items" VALUE="#items#"
PARAM NAME="ChartData.Values" VALUE="#values#"
PARAM NAME="Title" VALUE="#title#"
PARAM NAME="BackgroundColor" VALUE="ff"
/applet

You just have to fill in the items, values and title parameter from your 
database.

Al Musella
a1webs.com


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

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



RE: Big companies using CF

2000-12-05 Thread Simon Halcrow

Crayola (www.crayola.com)

and

the University Of Teesside (www.tees.ac.uk)


Sapphire Technologies Ltd.
Secure in the Knowledge
Simon Halcrow   Web Developer   
E  [EMAIL PROTECTED]   
T +44 (0)1642 702100
F  +44 (0)1642 702119
W www.sapphire.net


 -Original Message-
 From: Todd Ashworth [SMTP:[EMAIL PROTECTED]]
 Sent: Tuesday, December 05, 2000 1:45 PM
 To:   CF-Talk
 Subject:  Re: Big companies using CF
 
 Autobytel.com
 
 You can also look here for a list:
 
 http://www.allaire.com/casestudies/index.cfm
 
 Todd Ashworth
 
 - Original Message -
 From: "Joe Sheble aka Wizaerd" [EMAIL PROTECTED]
 To: "CF-Talk" [EMAIL PROTECTED]
 Sent: Monday, December 04, 2000 9:18 PM
 Subject: Big companies using CF
 
 
 | I know this is probably one of those discussions that turn up all the
 time
 | on a mailing list such as this, and I apologize for bringing it up.  I
 have
 | a new IT Director starting at my company in the very near future who's a
 big
 | Microsoft fan, and thinks there's nothing better than ASP and/or C#
 (which
 I
 | believe hasn't even been released yet, no?).
 |
 | When I told him that CF has been around for a long time, and some really
 big
 | companies use it, he doubted it.  I told him Amazon.com was using it
 (was
 I
 | right about this?).
 |
 | So anyway, I've agreed to compile a list of some of the bigger well
 known
 | internet comapnies using it, and would like some assistance.  What big
 time
 | comapnies are using CF for their pages?
 
 
 

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

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



Re: Big companies using CF

2000-12-05 Thread Todd Ashworth

oh yeah .. www.afternic.com is CF/Fusebox too.

Todd Ashworth

- Original Message - 
From: "Jamie Keane" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Tuesday, December 05, 2000 9:09 AM
Subject: Re: Big companies using CF


| I believe www.roomstogo.com is CF-based (and FuseBox-based to boot!).
| 
| --
| Jamie Keane
| Programmer
| SolutionMasters, Inc.
| 9111 Monroe Rd., Suite 100
| Charlotte, NC  28270
| www.solutionmasters.com
| 704.563.5559 x 228  Voice
| 704.849.9291  Fax



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

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



Re: Slightly OT....HTML question

2000-12-05 Thread Todd Ashworth

hmm .. maybe you could even break it down by some sort of geographic
location?

Todd Ashworth

- Original Message -
From: "Andy Ewings" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Tuesday, December 05, 2000 9:05 AM
Subject: RE: Slightly OTHTML question


| I think I'm going to have to.  At the moment the 7,000 entries are every
6th
| form school/colledge in the country.  The form as it is takes about 30
| seconds to load so I htink I'm going to break it down whereby the user
| selects a letter which the school name starts with.  This will restrict
the
| list sufficiently.  Lets hope the client goes for it!
|
| --
| Andrew Ewings
| Project Manager
| Thoughtbubble Ltd
| http://www.thoughtbubble.net
| --
| United Kingdom
| http://www.thoughtbubble.co.uk/
| Tel: +44 (0) 20 7387 8890
| --
| New Zealand
| http://www.thoughtbubble.co.nz/
| Tel: +64 (0) 9 419 4235



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

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



Re: Big companies using CF

2000-12-05 Thread Marc Garrett

AOL uses it for the developer site.

Regards,

Marc Garrett


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

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



RE: Big companies using CF

2000-12-05 Thread Nick Betts

www.footlocker.com use it for their huge site



-Original Message-
From: Michael She [mailto:[EMAIL PROTECTED]]
Sent: 05 December 2000 12:59
To: CF-Talk
Subject: Re: Big companies using CF


onvia.com and even Hewlett Packard uses it for their site.


At 07:18 PM 12/04/00 -0700, Joe Sheble aka Wizaerd you wrote:

I know this is probably one of those discussions that turn up all the time
on a mailing list such as this, and I apologize for bringing it up.  I have
a new IT Director starting at my company in the very near future who's a
big
Microsoft fan, and thinks there's nothing better than ASP and/or C# (which
I
believe hasn't even been released yet, no?).

When I told him that CF has been around for a long time, and some really
big
companies use it, he doubted it.  I told him Amazon.com was using it (was I
right about this?).

So anyway, I've agreed to compile a list of some of the bigger well known
internet comapnies using it, and would like some assistance.  What big time
comapnies are using CF for their pages?

thanx...

Joseph E. Sheble
a.k.a. Wizaerd
Wizaerd's Realm
Canvas, 3D, Graphics,
ColdFusion, PHP, and mySQL
http://www.wizaerd.com
=



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

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



RE: Big companies using CF

2000-12-05 Thread Hal Helms

That's right, Jamie. Rooms To Go is the nation's largest furniture retailer
and it's all CF  Fusebox.

Hal Helms

-Original Message-
From: Jamie Keane [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, December 05, 2000 9:09 AM
To: CF-Talk
Subject: Re: Big companies using CF


I believe www.roomstogo.com is CF-based (and FuseBox-based to boot!).

--
Jamie Keane
Programmer
SolutionMasters, Inc.
9111 Monroe Rd., Suite 100
Charlotte, NC  28270
www.solutionmasters.com
704.563.5559 x 228  Voice
704.849.9291  Fax
-Original Message-
From: Todd Ashworth [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Date: Tuesday, December 05, 2000 8:36 AM
Subject: Re: Big companies using CF


Autobytel.com

You can also look here for a list:

http://www.allaire.com/casestudies/index.cfm

Todd Ashworth

- Original Message -
From: "Joe Sheble aka Wizaerd" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Monday, December 04, 2000 9:18 PM
Subject: Big companies using CF


| I know this is probably one of those discussions that turn up all the
time
| on a mailing list such as this, and I apologize for bringing it up.  I
have
| a new IT Director starting at my company in the very near future who's a
big
| Microsoft fan, and thinks there's nothing better than ASP and/or C#
(which
I
| believe hasn't even been released yet, no?).
|
| When I told him that CF has been around for a long time, and some really
big
| companies use it, he doubted it.  I told him Amazon.com was using it (was
I
| right about this?).
|
| So anyway, I've agreed to compile a list of some of the bigger well known
| internet comapnies using it, and would like some assistance.  What big
time
| comapnies are using CF for their pages?




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

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



RE: Big companies using CF

2000-12-05 Thread Stewart McGowan

and just for your info we're doing internal corporate projects for Unilever,
Kraft, Tesco, Royal Dutch Philips and Next at the moment...

Stew

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

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



RE: Slightly OT....HTML question

2000-12-05 Thread Andy Ewings

Yeh I may looking into that.  I have some software that groups by postcode
but I was wondering if there was a more immediate fix.  I think the answer
is no!

-- 
Andrew Ewings
Project Manager
Thoughtbubble Ltd 
http://www.thoughtbubble.net 
-- 
United Kingdom 
http://www.thoughtbubble.co.uk/ 
Tel: +44 (0) 20 7387 8890 
-- 
New Zealand 
http://www.thoughtbubble.co.nz/ 
Tel: +64 (0) 9 419 4235 
-- 
The information in this email and in any attachments is confidential and
intended solely for the attention and use of the named addressee(s). Any
views or opinions presented are solely those of the author and do not
necessarily represent those of Thoughtbubble. This information may be
subject to legal, professional or other privilege and further distribution
of it is strictly prohibited without our authority. If you are not the
intended recipient, you are not authorised to disclose, copy, distribute, or
retain this message. Please notify us on +44 (0)207 387 8890. 



-Original Message-
From: Todd Ashworth [mailto:[EMAIL PROTECTED]]
Sent: 05 December 2000 14:39
To: CF-Talk
Subject: Re: Slightly OTHTML question


hmm .. maybe you could even break it down by some sort of geographic
location?

Todd Ashworth

- Original Message -
From: "Andy Ewings" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Tuesday, December 05, 2000 9:05 AM
Subject: RE: Slightly OTHTML question


| I think I'm going to have to.  At the moment the 7,000 entries are every
6th
| form school/colledge in the country.  The form as it is takes about 30
| seconds to load so I htink I'm going to break it down whereby the user
| selects a letter which the school name starts with.  This will restrict
the
| list sufficiently.  Lets hope the client goes for it!
|
| --
| Andrew Ewings
| Project Manager
| Thoughtbubble Ltd
| http://www.thoughtbubble.net
| --
| United Kingdom
| http://www.thoughtbubble.co.uk/
| Tel: +44 (0) 20 7387 8890
| --
| New Zealand
| http://www.thoughtbubble.co.nz/
| Tel: +64 (0) 9 419 4235
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



RE: Slightly OT....HTML question

2000-12-05 Thread Andy Ewings

Thanks.  I'll have a lok at these tags.  Can you give me a brief desription
as to what they do?

-- 
Andrew Ewings
Project Manager
Thoughtbubble Ltd 
http://www.thoughtbubble.net 
-- 
United Kingdom 
http://www.thoughtbubble.co.uk/ 
Tel: +44 (0) 20 7387 8890 
-- 
New Zealand 
http://www.thoughtbubble.co.nz/ 
Tel: +64 (0) 9 419 4235 
-- 
The information in this email and in any attachments is confidential and
intended solely for the attention and use of the named addressee(s). Any
views or opinions presented are solely those of the author and do not
necessarily represent those of Thoughtbubble. This information may be
subject to legal, professional or other privilege and further distribution
of it is strictly prohibited without our authority. If you are not the
intended recipient, you are not authorised to disclose, copy, distribute, or
retain this message. Please notify us on +44 (0)207 387 8890. 



-Original Message-
From: Dick Applebaum [mailto:[EMAIL PROTECTED]]
Sent: 05 December 2000 14:11
To: CF-Talk
Subject: Re: Slightly OTHTML question


Andrew

You can try allocating more memory to the browser on the Mac.

A better approach might be to use something like twoSelectsRelated or 
ThreeSelectsRelated custom tags availab at allaire.

At least you could break the unwieldy number of entries into smaller groups.

HTH

Dick


At 12:53 PM + 12/5/00, Andy Ewings wrote:
I have a form with a select control that loads approx 7000 options into it
(I know this is stupid but it's what the client wants).  When I view the
form on a PC it's fine.  However on a Mac I see nothing.  When I reduce the
number of entries to about 4,500 I can see them on the Mac.

Does anyone know if there is a known issue here and if so is there a way
around it?
--
Andrew Ewings
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



Re: Big companies using CF

2000-12-05 Thread Ryan

half.com uses it. Its a very large e-commerce site. I buy stuff
there all the time.

Ryan


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

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



Re: Recurrence Engine

2000-12-05 Thread Dylan Bromby

Yes, I have one.

- Original Message -
From: "Duane Boudreau" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Monday, December 04, 2000 6:55 PM
Subject: Recurrence Engine


 Has anyone here built a scheduling recurrence engine?

 I'm looking for some thing that schedules tasks like so:
   o Every nth day of the month
   o Every given day of every week
   o Every nday of every month
 etc...

 TIA,
 Duane Boudreau
 CFExperts.Com



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

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



Minor CFStudio 4.5/IE/PWS Bug

2000-12-05 Thread Guy J. McDowell

I don't know for certain if this bug is within CF Studio 4.5, Internet
Explorer or MS Personal Web Server. (My educated guess is the latter.)

Situation: web document in directory named whatever.com on local drive
being accessed in the 'browse' feature of CFStudio 4.5 returns
Internal Server 500 error (This points the problem as being with PWS)
However, any other type of TLD name in your directory name is okay,
such as .org, .net etc.

Quick Fix: Drop the .com off your directory name on your local drive.

Minor bug, but I thought I'd share as minor bugs can drive us batty
can't they?

Yours In Conservation,

Guy J. McDowell,
Webmaster
The Ontario Federation of Anglers  Hunters
E-mail: [EMAIL PROTECTED]
Phone: (705) 748-6324 ext. 262

P.S.
www.OFAH.org -  The flagship site for the O.F.A.H. with NEW
Election2000 Section
www.AuctionForWildlife.com - Your chance to make your bid for
conservation.
www.EcoEd.org - an online adventure for kids in grades 1 through 8.
www.HuntingDog.org - Celebrating our Hunting Dog Heritage.
www.AHTV.com - Your online companion to the Angler and Hunter
Television show.
www.OHEP.net -  Where to find out and learn about the Ontario Hunter
Education Program.


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



Manually expiring sessions

2000-12-05 Thread CAlvarado

Is there a way to manually expire a session? I know is ASP you can do
something like session.expire, so I know there has got to be a way to do it
in CF. I think I saw someone post the method a while back but I cannot
recall.

Thanks for any help.

chris.alvarado
cold.fusion - developer
[phone] 512.794.6563
[email] [EMAIL PROTECTED]
[web] http://www.tmanage.com


Privileged/Confidential Information may be contained in this message. It is
not for use or disclosure outside TManage without a written proprietary
agreement.  If you are not the addressee indicated in this message, or agent
responsible for delivery, you may not copy or deliver this message to
anyone.  Please notify the sender as soon as possible and immediately
destroy this message and its attachments entirely.



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

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



Re: Assembler.....

2000-12-05 Thread Al Musella, DPM



  I don't think it would be practical for general use, but for a specific 
function that is often used and too slow now, it may do the trick. The 
easiest approach would be to use something like Delphi to handle the 
complicated interface stuff, then use inline assembly (Delphi allows you to 
easy add assembly code in line:)  to code your function.


Al
At 08:25 AM 12/5/2000 +, Michael Thomas wrote:
Lately I wuz thinking of picking up an extra language to add to my long list
of the ones I currently know ;) As most people know you can develop custom
COM, CORBA, CFX  other types of add-ons using alot of different languages
like C++, VB, Java etc. etc.

What I am wondering is if anyone out there knows if I can create COM or CFX
extensions through assembly/assembler language. I know its a pretty old
language but its also pretty efficient. If anyone has anything to comment
about this, please do ;) I will be one extremely greatful person.


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

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



RE: ColdFusion for Dummies revision - CF5 features

2000-12-05 Thread Duane Boudreau

   |   b.. Ability to run queries against existing query
   result sets (CFSQL).
  
   I don't understand the need for that. Couldn't you just run
   another query? Or is it some sort of performance issue thing
   since the query is in memory?
 
  Since the query is stored in memory (I assume resident only
  while the page is processing) you would be running your sub queries
  against memory. This would be a big time performance boost over
  running traditional queries because of the difference between
  the speed of memory access vs. db access.

 Not to be a wet blanket, but this isn't necessarily so.

 The problem here is that CF doesn't currently execute SQL
 statements. All it
 does is pass those as strings to the database, which executes them and
 returns the appropriate recordsets.

 Now the people who make the databases spend an awful lot of time
 (and money)
 optimizing query execution. They take advantage of indexes, alternate
 possible paths, bind parameters, and other stuff to make SQL run
 very fast.
 When Allaire puts in an SQL analyzer, it's unlikely that it'll match the
 best efforts of Oracle and Microsoft in SQL execution efficiency.

There is no disputing that, as there is no subsitiute for a fully optimized
and well written query, but there are times that it would be nice to be able
to query or resort the data set without returning to database engine.
Querying against queries temporarily stored in memory (depending on
Allaire's strategy) should be much faster than making another call to the db
to return a partial record.

In theory, which as we all know rarely emulates real life, querying a query
should be faster than making an additional call to the database. At this
point I guess it is up to the implementation to prove or disprove.

 To have a
 chance at making this work, Allaire may have to incorporate a complete
 in-memory database, in my opinion, which will make the base product more
 complex and potentially more fragile.

Placing the entire database in memory definelty has its advantages and
disadvantages.

 Just a thought. I could be wrong.

The temperature in hell just dropped a couple of degrees ;)

Cheers,
Duane

"The internet, they have that on computers now you know.": Homer Simpson


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

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



Re: Recurrence Engine

2000-12-05 Thread Todd Ashworth

I have one as well .. almost :)

Todd Ashworth

- Original Message -
From: "Dylan Bromby" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Tuesday, December 05, 2000 9:39 AM
Subject: Re: Recurrence Engine


| Yes, I have one.
|
| - Original Message -
| From: "Duane Boudreau" [EMAIL PROTECTED]
| To: "CF-Talk" [EMAIL PROTECTED]
| Sent: Monday, December 04, 2000 6:55 PM
| Subject: Recurrence Engine
|
|
|  Has anyone here built a scheduling recurrence engine?
| 
|  I'm looking for some thing that schedules tasks like so:
|o Every nth day of the month
|o Every given day of every week
|o Every nday of every month
|  etc...
| 
|  TIA,
|  Duane Boudreau
|  CFExperts.Com
| 
| 
| 
|
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



Re: Big companies using CF

2000-12-05 Thread Michael Thomas

Well if your into football The St. Louis Rams website is powered by Cold 
Fusion. Also there is a big cellular phone distributor out of Miami that my 
friend runs, its powered by Cold Fusion, the site is 
http://www.brightcell.com

They are also the first mobile phone dealer listed on amazon.com

From: Ryan [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Subject: Re: Big companies using CF
Date: Tue, 05 Dec 2000 08:36:33 -0600

half.com uses it. Its a very large e-commerce site. I buy stuff
there all the time.

Ryan



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

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



Re: Coding standards

2000-12-05 Thread Michael Dinowitz

Remember that coding standards are ways of writing good code. I write a
number of articles on proper programming practices out of
www.houseoffusion.com and www.fusionauthority.com. Ben Forta writes a column
for CFDJ (www.coldfusionjournal.com) that includes some coding ideas as well
as other info. Defusion (www.defusion.com), CFAdvisor (www.cfadvisor.com),
Hal's Team Allaire site (www.teamallaire.com) and a whole lot more have
articles on how to write your code well. Any coding standard is going to be
(or should be) concerned with good code first.
As a small plug, I'll have my article on prefixing variables up in the
latest issue of FA.

 www.black-box.org

 www.swtich-box.org

 litter-box (in development still)

 Todd Ashworth

 - Original Message -
 From: "Michael She" [EMAIL PROTECTED]
 To: "CF-Talk" [EMAIL PROTECTED]
 Sent: Monday, December 04, 2000 6:19 PM
 Subject: Coding standards


 | Hello,
 |
 | I'm intersted in learning about coding and programming standards for
 | Coldfusion/scripting languages.
 |
 | People have mentioned CFObjects and Fusebox coding methodologies for
 | CF.  Are there any others out there?
 |
 | They don't have to be specific for ColdFusion.
 |
 | Thanks!
 | --
 | Michael She
 | I m a g i n e   C o m m u n i c a t i o n s
 | Company E-mail: [EMAIL PROTECTED]
 | Personal E-mail: [EMAIL PROTECTED]
 | ICQ UIN: #243466
 | Personal Homepage: http://www.michaelshe.com (Under Construction)
 | Imagine Communications: http://www.imagineer.net
 | PGP Fingerprint: 9A24 1DA9 39B8 0A0C C5ED 6E5D 45E9 075A 51CD 66A1
 |
 |
 |

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

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



Re: Sending e-mail in a batch

2000-12-05 Thread Al Musella, DPM


   I have another solution:
I send out a newsletter every day and it was starting to get too 
big - it would really slow down performance doing it all at once on the server.
Every night, I backup a copy of the live database onto my home computer.
  So now,   I use my home computer - which is connected to a cable modem 
-  to run the templates that sends the newsletter, using a local copy of 
the database.  Windows 2000 server has a built-in mail server, which was a 
snap to set up and worked flawlessly!  The work is done on my home machine, 
so there is no performance hit on the production web server, database 
server or mail server!

Al Musella
a1webs.com




At 09:26 PM 12/4/2000 -0700, defective david wrote:
i just had to comment that this is the coolest simplest idea for a problem
i've been thinking about for a while.


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

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



RE: Big companies using CF

2000-12-05 Thread Craig Thomas

At-A_Glance, Mead paper's e-commerce site uses CF.

Craig Thomas
PK Interactive, Inc.

-Original Message-
From: Stewart McGowan [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, December 05, 2000 9:26 AM
To: CF-Talk
Subject: RE: Big companies using CF


and just for your info we're doing internal corporate projects for Unilever,
Kraft, Tesco, Royal Dutch Philips and Next at the moment...

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

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



RE: A great Shockwave flash movie

2000-12-05 Thread Marcus

 -Original Message-
 From: ibtoad [mailto:[EMAIL PROTECTED]]
 Sent: Monday, December 04, 2000 5:34 PM
 To: CF-Talk
 Subject: RE: A great Shockwave flash movie


 Uh where is it??
 Rich

It's the latest worm making the rounds... Luckily this newsgroup filters it
out!

Marcus


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

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



Re: Excerpt

2000-12-05 Thread Kevin Schmidt

You could use a regular expression that takes the information for say the
first 3 periods and discards the rest.  This would give you a variable with
only the first 3 sentences.
- Original Message -
From: "Rob Eastland" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Thursday, November 30, 2000 12:41 PM
Subject: Excerpt



 I'm trying to build a tag that gets the article text from an access memo
 field and returns part of it as a news excerpt on another page. I thought
of
 doing a cfhttp from the main news page and stripping it down, but I think
 that would be slow and  I was wondering if anyone had a better suggestion?

 :--))
 Rob Eastland

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

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



RE: Big companies using CF

2000-12-05 Thread Jason Lees (National Express)


www.gobycoach.com (National Express Coaches UK)

as well as internal projects.

Jason Lees 
National Express
Email : [EMAIL PROTECTED]


-Original Message-
From: Joe Sheble aka Wizaerd [mailto:[EMAIL PROTECTED]]
Sent: 05 December 2000 02:19
To: CF-Talk
Subject: Big companies using CF


I know this is probably one of those discussions that turn up all the time
on a mailing list such as this, and I apologize for bringing it up.  I have
a new IT Director starting at my company in the very near future who's a big
Microsoft fan, and thinks there's nothing better than ASP and/or C# (which I
believe hasn't even been released yet, no?).

When I told him that CF has been around for a long time, and some really big
companies use it, he doubted it.  I told him Amazon.com was using it (was I
right about this?).

So anyway, I've agreed to compile a list of some of the bigger well known
internet comapnies using it, and would like some assistance.  What big time
comapnies are using CF for their pages?

thanx...

Joseph E. Sheble
a.k.a. Wizaerd
Wizaerd's Realm
Canvas, 3D, Graphics,
ColdFusion, PHP, and mySQL
http://www.wizaerd.com
=
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



commerce blocks

2000-12-05 Thread Trip Ward

pst

Trip Ward
Webmaster
EBStor.com
(703)393-7930 ext 273

 -Original Message-
 From: Larry C. Lyons [SMTP:[EMAIL PROTECTED]]
 Sent: Saturday, December 02, 2000 2:19 PM
 To:   CF-Talk
 Subject:  Re: [parsing shtml files]
 
 As far as I understand, SSI and CF do not get along. Web servers process
 SSI's while the CF server processes .cfm pages. To get the SHTML to work
 with CF you would have change the !--#include file/virtual= etc to
 CFINCLUDE Template= etc.
 
 regards,
 larry
 
 -- 
 Larry C. Lyons
 ColdFusion/Web Developer
 EBStor.com
 8870 Rixlew Lane, Suite 201
 Manassas, Virginia 20109-3795
 tel: (703) 393-7930 x253
 fax: (703) 393-2659
 http://www.ebstor.com
 http://www.pacel.com
 email: [EMAIL PROTECTED]
 
 Chaos, panic, and disorder - my work here is done.
 --
 
 Rob Keniger wrote:
  
  on 12/2/00 11:09 AM, Alex at [EMAIL PROTECTED] wrote:
  
   you can include cf and call it via SSI.
  
  Does that work on all servers? I have had very inconsistent results.
 Quite
  often the .shtml page just displays the CF code.
  
  --
  
  Rob Keniger
  
  big bang solutions
  
  mailto:[EMAIL PROTECTED]
  http://www.bigbang.net.au
  
 

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

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



RE: Big companies using CF

2000-12-05 Thread John Fix 3rd

True Value (www.truvalue.com) has a real nice site built with CF that includes a nice 
shopping application and an overall "Amazon" look (like a gazillion other online 
shopping sites).


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

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



COMMERCE BLOCKS

2000-12-05 Thread Trip Ward

Lets do it . . . .

Trip Ward
Webmaster
EBStor.com
(703)393-7930 ext 273

 -Original Message-
 From: Larry C. Lyons [SMTP:[EMAIL PROTECTED]]
 Sent: Saturday, December 02, 2000 2:19 PM
 To:   CF-Talk
 Subject:  Re: [parsing shtml files]
 
 As far as I understand, SSI and CF do not get along. Web servers process
 SSI's while the CF server processes .cfm pages. To get the SHTML to work
 with CF you would have change the !--#include file/virtual= etc to
 CFINCLUDE Template= etc.
 
 regards,
 larry
 
 -- 
 Larry C. Lyons
 ColdFusion/Web Developer
 EBStor.com
 8870 Rixlew Lane, Suite 201
 Manassas, Virginia 20109-3795
 tel: (703) 393-7930 x253
 fax: (703) 393-2659
 http://www.ebstor.com
 http://www.pacel.com
 email: [EMAIL PROTECTED]
 
 Chaos, panic, and disorder - my work here is done.
 --
 
 Rob Keniger wrote:
  
  on 12/2/00 11:09 AM, Alex at [EMAIL PROTECTED] wrote:
  
   you can include cf and call it via SSI.
  
  Does that work on all servers? I have had very inconsistent results.
 Quite
  often the .shtml page just displays the CF code.
  
  --
  
  Rob Keniger
  
  big bang solutions
  
  mailto:[EMAIL PROTECTED]
  http://www.bigbang.net.au
  
 

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

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



commerce blocks

2000-12-05 Thread Trip Ward

now

Trip Ward
Webmaster
EBStor.com
(703)393-7930 ext 273

 -Original Message-
 From: Larry C. Lyons [SMTP:[EMAIL PROTECTED]]
 Sent: Saturday, December 02, 2000 2:19 PM
 To:   CF-Talk
 Subject:  Re: [parsing shtml files]
 
 As far as I understand, SSI and CF do not get along. Web servers process
 SSI's while the CF server processes .cfm pages. To get the SHTML to work
 with CF you would have change the !--#include file/virtual= etc to
 CFINCLUDE Template= etc.
 
 regards,
 larry
 
 -- 
 Larry C. Lyons
 ColdFusion/Web Developer
 EBStor.com
 8870 Rixlew Lane, Suite 201
 Manassas, Virginia 20109-3795
 tel: (703) 393-7930 x253
 fax: (703) 393-2659
 http://www.ebstor.com
 http://www.pacel.com
 email: [EMAIL PROTECTED]
 
 Chaos, panic, and disorder - my work here is done.
 --
 
 Rob Keniger wrote:
  
  on 12/2/00 11:09 AM, Alex at [EMAIL PROTECTED] wrote:
  
   you can include cf and call it via SSI.
  
  Does that work on all servers? I have had very inconsistent results.
 Quite
  often the .shtml page just displays the CF code.
  
  --
  
  Rob Keniger
  
  big bang solutions
  
  mailto:[EMAIL PROTECTED]
  http://www.bigbang.net.au
  
 

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

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



commerce blocks

2000-12-05 Thread Trip Ward

come on  

Trip Ward
Webmaster
EBStor.com
(703)393-7930 ext 273

 -Original Message-
 From: Larry C. Lyons [SMTP:[EMAIL PROTECTED]]
 Sent: Saturday, December 02, 2000 2:19 PM
 To:   CF-Talk
 Subject:  Re: [parsing shtml files]
 
 As far as I understand, SSI and CF do not get along. Web servers process
 SSI's while the CF server processes .cfm pages. To get the SHTML to work
 with CF you would have change the !--#include file/virtual= etc to
 CFINCLUDE Template= etc.
 
 regards,
 larry
 
 -- 
 Larry C. Lyons
 ColdFusion/Web Developer
 EBStor.com
 8870 Rixlew Lane, Suite 201
 Manassas, Virginia 20109-3795
 tel: (703) 393-7930 x253
 fax: (703) 393-2659
 http://www.ebstor.com
 http://www.pacel.com
 email: [EMAIL PROTECTED]
 
 Chaos, panic, and disorder - my work here is done.
 --
 
 Rob Keniger wrote:
  
  on 12/2/00 11:09 AM, Alex at [EMAIL PROTECTED] wrote:
  
   you can include cf and call it via SSI.
  
  Does that work on all servers? I have had very inconsistent results.
 Quite
  often the .shtml page just displays the CF code.
  
  --
  
  Rob Keniger
  
  big bang solutions
  
  mailto:[EMAIL PROTECTED]
  http://www.bigbang.net.au
  
 

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

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



Re: Slightly OT....HTML question

2000-12-05 Thread Jamie Keane

Basically what they do is whip together two or three select boxes that are
tied with Javascript.  Select a category in Box 1, and the categories linked
to your selection show up in Box 2.  Change the selection in Box 1 again,
and Box 2's contents change to reflect a new category.  Spiffy!

--
Jamie Keane
Programmer
SolutionMasters, Inc.
9111 Monroe Rd., Suite 100
Charlotte, NC  28270
www.solutionmasters.com
704.563.5559 x 228  Voice
704.849.9291  Fax
-Original Message-
From: Andy Ewings [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Date: Tuesday, December 05, 2000 9:54 AM
Subject: RE: Slightly OTHTML question


Thanks.  I'll have a lok at these tags.  Can you give me a brief desription
as to what they do?

--
Andrew Ewings
Project Manager
Thoughtbubble Ltd
http://www.thoughtbubble.net
--
United Kingdom
http://www.thoughtbubble.co.uk/
Tel: +44 (0) 20 7387 8890
--
New Zealand
http://www.thoughtbubble.co.nz/
Tel: +64 (0) 9 419 4235
--
The information in this email and in any attachments is confidential and
intended solely for the attention and use of the named addressee(s). Any
views or opinions presented are solely those of the author and do not
necessarily represent those of Thoughtbubble. This information may be
subject to legal, professional or other privilege and further distribution
of it is strictly prohibited without our authority. If you are not the
intended recipient, you are not authorised to disclose, copy, distribute,
or
retain this message. Please notify us on +44 (0)207 387 8890.



-Original Message-
From: Dick Applebaum [mailto:[EMAIL PROTECTED]]
Sent: 05 December 2000 14:11
To: CF-Talk
Subject: Re: Slightly OTHTML question


Andrew

You can try allocating more memory to the browser on the Mac.

A better approach might be to use something like twoSelectsRelated or
ThreeSelectsRelated custom tags availab at allaire.

At least you could break the unwieldy number of entries into smaller
groups.

HTH

Dick


At 12:53 PM + 12/5/00, Andy Ewings wrote:
I have a form with a select control that loads approx 7000 options into it
(I know this is stupid but it's what the client wants).  When I view the
form on a PC it's fine.  However on a Mac I see nothing.  When I reduce
the
number of entries to about 4,500 I can see them on the Mac.

Does anyone know if there is a known issue here and if so is there a way
around it?
--
Andrew Ewings

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

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



new cf version

2000-12-05 Thread Jason Egan

The new cf version is on the horizon and is to have java as a backed if I
understand correctly... anyone recommend a starting point to prepare for
this new version and all it may offer?  A particular language, books,
references... anything at all would be extremely helpful!

Thank you,
Jason


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

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



Re: Big companies using CF

2000-12-05 Thread jeffc

Joe,

You did say "new IT Director". My suggestion is to learn to "LOVE" ASP or
find a new job.
Pointing out to your new boss the errors in his thinking will will be about
as logical as the current presidential political arguments.

:o))
Jeff Craig




- Original Message -
From: "Joe Sheble aka Wizaerd" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Tuesday, December 05, 2000 8:00 AM
Subject: Re: Big companies using CF


 having worked for onvia.com (their newly aquired phoenix office) I
wouldn't
 offer them as being a good or even efficient example of CF usage...

 - Original Message -
 From: "Michael She" [EMAIL PROTECTED]
 To: "CF-Talk" [EMAIL PROTECTED]
 Sent: Tuesday, December 05, 2000 5:59 AM
 Subject: Re: Big companies using CF


  onvia.com and even Hewlett Packard uses it for their site.
 
 
  At 07:18 PM 12/04/00 -0700, Joe Sheble aka Wizaerd you wrote:
 
  I know this is probably one of those discussions that turn up all the
 time
  on a mailing list such as this, and I apologize for bringing it up.  I
 have
  a new IT Director starting at my company in the very near future who's
a
 big
  Microsoft fan, and thinks there's nothing better than ASP and/or C#
 (which I
  believe hasn't even been released yet, no?).
  
  When I told him that CF has been around for a long time, and some
really
 big
  companies use it, he doubted it.  I told him Amazon.com was using it
(was
 I
  right about this?).
  
  So anyway, I've agreed to compile a list of some of the bigger well
known
  internet comapnies using it, and would like some assistance.  What big
 time
  comapnies are using CF for their pages?
  
  thanx...
  
  Joseph E. Sheble
  a.k.a. Wizaerd
  Wizaerd's Realm
  Canvas, 3D, Graphics,
  ColdFusion, PHP, and mySQL
  http://www.wizaerd.com
  =
  
  
  
 

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

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



RE: Shopping Cart query

2000-12-05 Thread Nick Betts

Hi,
I have an application which worked fine, until sizes were introduced for
products (yeah, I know, a small oversight!).  The following code snippet is
passed the appropriate parameters (id, name, price, quantity, size etc). The
code I use to add a product to the cart is as follows (sorry, its pretty
long..):

cfif not isdefined("session.cart")
cfset session.cart = structnew()
/cfif 

cfset tempvalue =
listtoarray('#attributes.id#,#attributes.name#,#attributes.price#,#attribute
s.quantity#,#attributes.size#')

!---If item is not yet in cart, simply add it to the basket---
cfif structKeyExists(session.cart, attributes.name) is false
cfset tempinsert =
StructInsert(session.cart,attributes.name,tempvalue)
cfelse
!---If item is already in cart, are we doing an update?---
cfif isdefined("attributes.update")!---user has not added new
product, just changing quantity currently in cart---
cfset tempvalue[4]=attributes.quantity
cfelse!---user is adding new product to cart--- 
!---Just update quantity on existing product, instead of
adding a new row---
cfset
tempvalue[4]=session.cart[attributes.name][4]+attributes.quantity
/cfif

cfset tempupdate =
StructUpdate(session.cart,attributes.name,tempvalue)
/cfif 


If an item is already in cart I want to check its size, if sizes are same
(eg both medium and both same product) then just update quantity (ie do not
add new product to cart).  If products are same but sizes different (eg
small and a medium) then I want to add new entry in cart for this
product/size.
Hope this is clear!

Any help greatly appreciated.

Nick Betts..

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

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



Re: Big companies using CF

2000-12-05 Thread Tim Bahlke

I'm a developer with Lucent and we use CF extensively behind the firewall.

In particular, I am using CF to create a monthly e-zine and a multimedia 
app.


At 07:18 PM 12/04/00 -0700, Joe Sheble aka Wizaerd you wrote:

 I know this is probably one of those discussions that turn up all the 
time
 on a mailing list such as this, and I apologize for bringing it up.  I 
have
 a new IT Director starting at my company in the very near future who's a 
big
 Microsoft fan, and thinks there's nothing better than ASP and/or C# 
(which I
 believe hasn't even been released yet, no?).
 
 When I told him that CF has been around for a long time, and some really 
big
 companies use it, he doubted it.  I told him Amazon.com was using it (was 
I
 right about this?).
 
 So anyway, I've agreed to compile a list of some of the bigger well known
 internet comapnies using it, and would like some assistance.  What big 
time
 comapnies are using CF for their pages?
 
 thanx...
 
 Joseph E. Sheble
 a.k.a. Wizaerd
 Wizaerd's Realm
 Canvas, 3D, Graphics,
 ColdFusion, PHP, and mySQL
 http://www.wizaerd.com
 =
 
 
 

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

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



OT: Javascript problem

2000-12-05 Thread Gene Kraybill

Looking for a bit of help with some Javascript I want to use in a CF app. 

I want to be able to open a popup window (TEST_POPUP.CFM), enter a value in that 
window, and then submit the popup window so it changes a field in the original page 
(TEST_MAIN.CFM) to the popup value and automatically submits the original page to 
its action script (TEST_ACTION.CFM). I need to show the action page's results in the 
original window and close the popup window. 

With these 3 little test scripts, the value from the popup window appears in the input 
field of the original page, but the original page doesn't get submitted to the action 
page. What am I missing?

Gene Kraybill
==

TEST_MAIN.CFM:

script language="JavaScript"!--
function windowOpen() {
var myWindow=window.open('test_popup.cfm','windowRef','width=200,height=200');
if (!myWindow.opener) myWindow.opener = self;
}

windowOpen();
//--/script
 
form METHOD="Post" action="test_action.cfm"
input type="text" value="" name="output"
/form

TEST_POPUP.CFM

script language="JavaScript"!--
function updateOpener() {
opener.document.forms[0].output.value = document.forms[0].input.value;
opener.document.forms[0].submit;
window.close();
}
//--/script

form onSubmit="updateOpener()"
input type="text" value="" name="input"
input type="submit"
/form

TEST_ACTION.CFM

html
body
this is the page that processes the results from the main page.
CFOUTPUToutput is: #form.output#/CFOUTPUT
/body
/html

-
Gene Kraybill
LPW  Associates LLC
www.lpw.net

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

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



Re: Big companies using CF

2000-12-05 Thread stas

http://sunglasshut.com


- Original Message - 
From: "Nick Betts" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Tuesday, December 05, 2000 8:48 AM
Subject: RE: Big companies using CF


 www.footlocker.com use it for their huge site
 



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

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



cfmail??

2000-12-05 Thread ibtoad

If my smtp is set up ok and verified in my local Cf administrator, why is my
email being placed in the undeliverable folder when I run a cfmail tag?

Thanks,
Rich


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

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



Re: Big companies using CF

2000-12-05 Thread Brian bouldernet

Nike.COM ALONG WITH AbleCommerce
Lycos
Iwon is for email marketing
DoubleClick has a new server product offering scheduled for rollout in  mid
2001
Microsoft is using it for a recent purchase of  LinkExchange
www.loadmail.com is using it for a Hotmail like co brand system
www.ebags.com is a fusebox based ecommerce monger.
Heinz57
MIT is using it for a internal test app.

Remember CF works on UNIX too
- Original Message -
From: Ryan [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Tuesday, December 05, 2000 7:36 AM
Subject: Re: Big companies using CF


 half.com uses it. Its a very large e-commerce site. I buy stuff
 there all the time.

 Ryan



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

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



RE: Big companies using CF

2000-12-05 Thread Richard Kern


Don't forget www.ebags.com first large fusebox application 

Richard Kern

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

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



Re: COMMERCE BLOCKS

2000-12-05 Thread Michael Dinowitz

Lets not. Mr ward will be leaving us for the next few days. He will return
when he has enough sense on how to post to the list.


 Lets do it . . . .

 Trip Ward
 Webmaster
 EBStor.com
 (703)393-7930 ext 273

  -Original Message-
  From: Larry C. Lyons [SMTP:[EMAIL PROTECTED]]
  Sent: Saturday, December 02, 2000 2:19 PM
  To: CF-Talk
  Subject: Re: [parsing shtml files]
 
  As far as I understand, SSI and CF do not get along. Web servers process
  SSI's while the CF server processes .cfm pages. To get the SHTML to work
  with CF you would have change the !--#include file/virtual= etc to
  CFINCLUDE Template= etc.
 
  regards,
  larry
 
  --
  Larry C. Lyons
  ColdFusion/Web Developer
  EBStor.com
  8870 Rixlew Lane, Suite 201
  Manassas, Virginia 20109-3795
  tel: (703) 393-7930 x253
  fax: (703) 393-2659
  http://www.ebstor.com
  http://www.pacel.com
  email: [EMAIL PROTECTED]
 
  Chaos, panic, and disorder - my work here is done.
  --
 
  Rob Keniger wrote:
  
   on 12/2/00 11:09 AM, Alex at [EMAIL PROTECTED] wrote:
  
you can include cf and call it via SSI.
  
   Does that work on all servers? I have had very inconsistent results.
  Quite
   often the .shtml page just displays the CF code.
  
   --
  
   Rob Keniger
  
   big bang solutions
  
   mailto:[EMAIL PROTECTED]
   http://www.bigbang.net.au
  
  
 

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

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



Dateadd function problems with UK locale!

2000-12-05 Thread Anthony Caroleo

Hello All,

I wonder if someone out there can help me?  I am having a horrible time with
the dateadd function using UK dates, I am acquiring a date value and
increment values from a form and then incrementing other form values with
this date and increment values.  My problem seems to occur when the dates
are displayed out to the form in American format with the wrong datepart
incremented, from what I can see the date is being treated as a US date and
not my locale UK.  Has anyone had any similar problems or know of a solution
to this problem.

I have included below a snippet from my code as an example of the problem,
through my testing and debugging I have also noticed that datepart function
also seems ignore the fact that my locale is UK.  If I could get datepart to
work then I could pass that value into dateadd but as in the example below
datepart also uses the US date format.

html
head
titleUntitled/title
/head

body

Given UK date: 06/01/01
cfoutputSplit into parts: 
Year= #DatePart("","06/01/01")# 
Month=#DatePart("m","06/01/01")# 
Day=#DatePart("d","06/01/01")#
/cfoutput
p
cfset GetFirstSdate = CreateDate("01","01","06")
cfoutputCreateDate yy=01,mm=01,dd=06: #getfirstsdate#/cfoutput
cfoutputDateAdd 7 days: #DateAdd("d",7,getfirstsdate)#/cfoutput

/body
/html

Any help would be greatly appreciated.

Many Thanks in advance 

Anthony Caroleo


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



RE: Slightly OT....HTML question

2000-12-05 Thread Andy Ewings

How is the data linked in the background?.using a db?  At the moment I
have done something similar in that the user select a letter from one drop
down box and then the other is populated with all of the entries starting
with that letter.  The only problem is the page gets re-loaded each time.
Are you saying that these tags do this without reloading the page?  i.e.
All the results are loaded at first and then the Java script picks out the
relevant ones?

-- 
Andrew Ewings
Project Manager
Thoughtbubble Ltd 
http://www.thoughtbubble.net 
-- 
United Kingdom 
http://www.thoughtbubble.co.uk/ 
Tel: +44 (0) 20 7387 8890 
-- 
New Zealand 
http://www.thoughtbubble.co.nz/ 
Tel: +64 (0) 9 419 4235 
-- 
The information in this email and in any attachments is confidential and
intended solely for the attention and use of the named addressee(s). Any
views or opinions presented are solely those of the author and do not
necessarily represent those of Thoughtbubble. This information may be
subject to legal, professional or other privilege and further distribution
of it is strictly prohibited without our authority. If you are not the
intended recipient, you are not authorised to disclose, copy, distribute, or
retain this message. Please notify us on +44 (0)207 387 8890. 



-Original Message-
From: Jamie Keane [mailto:[EMAIL PROTECTED]]
Sent: 05 December 2000 15:10
To: CF-Talk
Subject: Re: Slightly OTHTML question


Basically what they do is whip together two or three select boxes that are
tied with Javascript.  Select a category in Box 1, and the categories linked
to your selection show up in Box 2.  Change the selection in Box 1 again,
and Box 2's contents change to reflect a new category.  Spiffy!

--
Jamie Keane
Programmer
SolutionMasters, Inc.
9111 Monroe Rd., Suite 100
Charlotte, NC  28270
www.solutionmasters.com
704.563.5559 x 228  Voice
704.849.9291  Fax
-Original Message-
From: Andy Ewings [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Date: Tuesday, December 05, 2000 9:54 AM
Subject: RE: Slightly OTHTML question


Thanks.  I'll have a lok at these tags.  Can you give me a brief desription
as to what they do?

--
Andrew Ewings
Project Manager
Thoughtbubble Ltd
http://www.thoughtbubble.net
--
United Kingdom
http://www.thoughtbubble.co.uk/
Tel: +44 (0) 20 7387 8890
--
New Zealand
http://www.thoughtbubble.co.nz/
Tel: +64 (0) 9 419 4235
--
The information in this email and in any attachments is confidential and
intended solely for the attention and use of the named addressee(s). Any
views or opinions presented are solely those of the author and do not
necessarily represent those of Thoughtbubble. This information may be
subject to legal, professional or other privilege and further distribution
of it is strictly prohibited without our authority. If you are not the
intended recipient, you are not authorised to disclose, copy, distribute,
or
retain this message. Please notify us on +44 (0)207 387 8890.



-Original Message-
From: Dick Applebaum [mailto:[EMAIL PROTECTED]]
Sent: 05 December 2000 14:11
To: CF-Talk
Subject: Re: Slightly OTHTML question


Andrew

You can try allocating more memory to the browser on the Mac.

A better approach might be to use something like twoSelectsRelated or
ThreeSelectsRelated custom tags availab at allaire.

At least you could break the unwieldy number of entries into smaller
groups.

HTH

Dick


At 12:53 PM + 12/5/00, Andy Ewings wrote:
I have a form with a select control that loads approx 7000 options into it
(I know this is stupid but it's what the client wants).  When I view the
form on a PC it's fine.  However on a Mac I see nothing.  When I reduce
the
number of entries to about 4,500 I can see them on the Mac.

Does anyone know if there is a known issue here and if so is there a way
around it?
--
Andrew Ewings

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

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



ot javascript

2000-12-05 Thread Gavin Myers

anyone know of a decent javascript editor?

thinking of something more on the lines of CF Studio except geared towards
js


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

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



Debate: Customized weblogging vs third party tool

2000-12-05 Thread Eric Dawson

Debate: Customized weblogging vs third party tool

showing my ignorance a little, I am debating which approach is better. I am 
interested in any insight.

Basically our configuration find 3 or 4 web servers pumping out ASP content. 
We need to create some smart logging.

Option 1. WebTrends. Need to attach session information to the logs.
Option 2. Use the session management and security module to do our own 
logging. Create an ad hoc reporting environment for now. Power Play, 
Impromptu that sort of thing.

Curious how other people are creating smart logs that integrate session 
(demographic, psychographic and other slice and dice) information to 
standard web traffic logs.

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

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



Re: Recurrence Engine

2000-12-05 Thread Olivier Moulene

I am also very interesting in this engine.
I'm working on a CF task Scheduler.
Can you give me more details about it?
Does it work with load balancing?


Thanks


- Original Message -
From: "Dylan Bromby" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Tuesday, December 05, 2000 3:39 PM
Subject: Re: Recurrence Engine


 Yes, I have one.

 - Original Message -
 From: "Duane Boudreau" [EMAIL PROTECTED]
 To: "CF-Talk" [EMAIL PROTECTED]
 Sent: Monday, December 04, 2000 6:55 PM
 Subject: Recurrence Engine


  Has anyone here built a scheduling recurrence engine?
 
  I'm looking for some thing that schedules tasks like so:
o Every nth day of the month
o Every given day of every week
o Every nday of every month
  etc...
 
  TIA,
  Duane Boudreau
  CFExperts.Com
 
 
 

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

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



Cookies for authentication/security and CF2PDF...

2000-12-05 Thread Milks, Jim

Hi all, 

1- Anybody have an opinion on the 3 PDF related custom tags on the Allaire 
developer exchange? I have a client who would like to save reports / queries

to PDF. 

2- I am evaluating a site for enhancements which uses cookies for all 
security and authentication. Although I have never done this, I am not sure 
if I should tell the client to spend some $ on changing it to use session 
management instead. Opinions? Bear in mind that the site does not really 
house any truly confidential info, and log-in is more to limit the audience 
than anything else. 

Thanks 

James 


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

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



RE: Manually expiring sessions

2000-12-05 Thread Robert Segal

Since all session variables are available in a structure called session,
just clear the session structure

structclear(session)


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, December 05, 2000 11:06 AM
To: CF-Talk
Subject: Manually expiring sessions


Is there a way to manually expire a session? I know is ASP you can do
something like session.expire, so I know there has got to be a way to do it
in CF. I think I saw someone post the method a while back but I cannot
recall.

Thanks for any help.

chris.alvarado
cold.fusion - developer
[phone] 512.794.6563
[email] [EMAIL PROTECTED]
[web] http://www.tmanage.com


Privileged/Confidential Information may be contained in this message. It is
not for use or disclosure outside TManage without a written proprietary
agreement.  If you are not the addressee indicated in this message, or agent
responsible for delivery, you may not copy or deliver this message to
anyone.  Please notify the sender as soon as possible and immediately
destroy this message and its attachments entirely.
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



RE: Javascript problem

2000-12-05 Thread DeVoil, Nick

opener.document.forms[0].submit;
 
make that

opener.document.forms[0].submit();

Nick 


**
Information in this email is confidential and may be privileged.
It is intended for the addressee only. If you have received it in error,
please notify the sender immediately and delete it from your system. 
You should not otherwise copy it, retransmit it or use or disclose its
contents to anyone. 
Thank you for your co-operation.
**

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

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



RE: cfmail??

2000-12-05 Thread Clint Tredway

make sure that the mail server has not been stopped and started. If it has
restart the web server and all should be well. I had this exact same problem
and this cured it.

-Original Message-
From: ibtoad [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, December 05, 2000 10:15 AM
To: CF-Talk
Subject: cfmail??


If my smtp is set up ok and verified in my local Cf administrator, why is my
email being placed in the undeliverable folder when I run a cfmail tag?

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

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



LDAP and single logon how to read logon info from the desktop machine

2000-12-05 Thread Marc Schipperheyn

Hi all,

I'm interested in the way you can use the (LDAP)-logon information a user
provided when he logged on to his Windows machine in order for him to
automatically get the proper access rights when he logs on to the Intranet.
I don't want them to have to log on twice.

Is this possible? Do I need special software for this? How could you do
this?

Kind regards,

Marc Schipperheyn

__theFactor.e__

_  .e  ___
mr M.Schipperheyn MBA
Technical Director___[EMAIL PROTECTED]
_  .e  ___
Friesestraatweg 215a
P.o. Box 2010__ tel: +31 (0)50 5757888
9704 CA Groningen__fax: +31 (0)50 5757889
The Netherlands http://www.thefactore.com
_  .e  ___

 Premium Partner for Allaire. Multimedia development
_   with Macromedia Director, Authorware  Flash.

 The future is technological, but it will not be a world of gray steel.






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

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



RE: Just remembered....

2000-12-05 Thread Chris Eland

Looks like you need to do a step -1 on your first loop and increment y after
your cfset temparray[y] line - array then good but not sure links are!

Chris.

 -Original Message-
 From: Michael Thomas [mailto:[EMAIL PROTECTED]]
 Sent: 05 December 2000 11:21
 To: CF-Talk
 Subject: Just remembered
 
 
 I just remembered I had some troublesome code from a small 
 lil' thing I wuz 
 making while bored one night about 2 months ago. I had 
 forgotten all about 
 this page till I just found it ;). I called the code 
 dynamicxygen.cfm  
 planned to use it as an include. Basically what it does is this:
 
 It'll dynamically create links to each directory from the 
 current template 
 path, all the way down to root. If you included it on every 
 page you would 
 have a very easy way of creating links around the site, even 
 tho the code is 
 a bit clunky. It would look like this one a page:
 
 !--- Normal path to file. ---
 Path: C:\r00t\main\newdir\currentdir\blah.cfm
 
 !--- The dyxgen navigation would then end up like this on 
 the page ---
 
 linkmain/link/linknewdir/link/linkcurrentdir/link/blah.cfm
 main/newdir/currentdir/blah.cfm all linked back to the correct files.
 
 
 The code works great when creating links to docs in root  2nd level 
 directories but when it goes deeper than that it doesnt 
 return anything but 
 an empty array. I cant understand why, altho I do have to 
 admit I havent 
 looked at the code in a long while.
 
 Can anyone help me find out why this isnt working 3 or more 
 directories deep 
 when it works fine any level before that??? Ill post the code below:
 
 cfset pathlen=ListLen(SCRIPT_NAME,"/")
 cfset temparray=ArrayNew(1)
 cfset y="1"
 
 cfoutput
   cfloop index="x" from="#pathlen#" to="1" step="1"
   cfset getting=ListGetAt(SCRIPT_NAME,"#x#","/")
 cfif y IS "#pathlen#"
   cfset 
 temparray[y]=#ReReplaceNoCase(SCRIPT_NAME,"getting","","ONE")#
 cfelse
   cfset y=y+1
   cfset 
 temparray[y]=#ReReplaceNoCase(SCRIPT_NAME,"getting","","ONE")#
 /cfif
 /cfloop
 
 cfloop index="z" from="1" to="#ArrayLen(temparray)#" step="1"
   cfset 
 newlink="#ReReplaceNoCase(reverse(temparray[z]),"/","","ONE")#"
 cfif z IS "1" AND z IS NOT "#ArrayLen(temparray)#"
   /a href="http://127.0.0.1/"Home/a/a 
 href="#temparray[z]#"#Reverse(newlink)#/a
 cfelseif z IS "#ArrayLen(temparray)#"
   /a href="#temparray[z]#"#Reverse(newlink)#/a
 /cfif
 /cfloop
 
 !--- I added this code once I found the bug. This'll prove 
 that the code 
 doesnt work when executed after 2 directories deep. ---
 cfif ArrayIsEmpty(temparray) IS "true"
   Array is empty
 cfelse
   Array is all good.
 /cfif
 
 /cfoutput

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

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



LDAP and secure access how to protect the CF machine - LDAP machine connection

2000-12-05 Thread Marc Schipperheyn

Hi all,

A customer came to me with the following question:
I have LDAP (Novell) set up and my users can authenticate fine. The
connection between my webserver and the client is protected through SSL.
However, how do I connect my connection from the cf server to the LDAP
server. LDAP3 is supposed to support encryption of the communication.

Any experience/ideas on this?

Kind regards,

Marc Schipperheyn
theFactor.e


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

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



RE: new cf version

2000-12-05 Thread Simon Horwith

no preperation necessary at this point.. the CFML language is going to
remain the same as it is now, with enhancements and new featuresjust as
you'd expect from any new version release.

~Simon

 Simon Horwith
 Certified ColdFusion Developer
 Fig Leaf Software
 1400 16th St NW, # 220
 Washington DC 20036
 202.797.6570 (direct line)
 www.figleaf.com
 


-Original Message-
From: Jason Egan [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, December 05, 2000 11:00 AM
To: CF-Talk
Subject: new cf version


The new cf version is on the horizon and is to have java as a backed if I
understand correctly... anyone recommend a starting point to prepare for
this new version and all it may offer?  A particular language, books,
references... anything at all would be extremely helpful!

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

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



RE: Assembler.....

2000-12-05 Thread Zachary Bedell

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Lately I wuz thinking of picking up an extra language to add 
 to my long list
 of the ones I currently know ;) As most people know you can 
 develop custom
 COM, CORBA, CFX  other types of add-ons using alot of 
 different languages
 like C++, VB, Java etc. etc.
 
 What I am wondering is if anyone out there knows if I can 
 create COM or CFX
 extensions through assembly/assembler language. I know its a 
 pretty old
 language but its also pretty efficient. If anyone has 
 anything to comment
 about this, please do ;) I will be one extremely greatful person.

I wouldn't call assembly an old language...  When you think about it,
it's THE language.  Everything else you write in comes down to
assembly in the end (or at least one step below -- the processor's
machine code).

As for writing COM (or windows apps in general) in assembly...  It is
most definitely possible.  Having two or three consecutive root
canals would be a WHOLE lot more fun in my opinion, but it's
doable...  You'd need to become intimately familiar with the various
data structures and calling methods of COM and of the Windows PE EXE
format.  The folks at Bleem! did it for their Sony PlayStation
emulator -- it's an entire Windows application stored in a single
800KB EXE file written in assembler.  It's just very difficult.

Chance are for your applications, writing your COM in assembly would
be a waste of time.  The overhead of the COM conventions would still
be there.  Whether it's written in assembler or VB, you still need to
go through all of the motions to support COM.  And given that you'll
presumably be accessing your nice assembly COM from ColdFusion 
Let's say that CF isn't the most optimized piece of software out
there, so you'd really be wasting your time.  Any little bit of speed
you might gain from assembler would be overshaddowed from the various
lags introduced by an HTTP application server.

Best regards,
Zac Bedell

-BEGIN PGP SIGNATURE-
Version: PGPfreeware 6.5.8 for non-commercial use http://www.pgp.com

iQA/AwUBOi0i2KvhLS1aWPxeEQIVdgCcDzS5wOXvyLmXO0WS4bqpBilRKMcAnRVB
9X1StCD+vLZxrvo58tSbD8Fk
=sTdY
-END PGP SIGNATURE-

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

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



Caching LDAP Queries?

2000-12-05 Thread Kevin Miller


Is it possible to cache LDAP queries?

Thanks,

Kevin


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

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



RE: Cookies for authentication/security and CF2PDF...

2000-12-05 Thread Simon Horwith

I recommend using the activepdf server COM Object, personally.  I've made it
do a lot of neat stuff from CF.  It's not free, like the tags may be, but it
allows for much greater scalability, compression, etc. etc.  I'd be more
than happy to answer any questions you have about it...and NO, I do not get
paid to sell activepdf servers... far from it.

~Simon

 Simon Horwith
 Certified ColdFusion Developer
 Fig Leaf Software
 1400 16th St NW, # 220
 Washington DC 20036
 202.797.6570 (direct line)
 www.figleaf.com
 


-Original Message-
From: Milks, Jim [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, December 05, 2000 9:55 AM
To: CF-Talk
Subject: Cookies for authentication/security and CF2PDF...


Hi all, 

1- Anybody have an opinion on the 3 PDF related custom tags on the Allaire 
developer exchange? I have a client who would like to save reports / queries

to PDF. 

2- I am evaluating a site for enhancements which uses cookies for all 
security and authentication. Although I have never done this, I am not sure 
if I should tell the client to spend some $ on changing it to use session 
management instead. Opinions? Bear in mind that the site does not really 
house any truly confidential info, and log-in is more to limit the audience 
than anything else. 

Thanks 

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

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



RE: Just remembered....

2000-12-05 Thread Michael Thomas

Thanx alot. Someone sent an off list message solving my lil' loop typo  
Then I noticed the the y increment in the wrong place. Your right about the 
links as well, somethings screwy in there that I'll have to fix.

I have to say you guys are pretty thorough  very observative!!! I got a 
couple off list responses  everyone of you guys were right on target. Once 
again, Thanx for the help.

Sincerely,
Mike

From: Chris Eland [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Subject: RE: Just remembered
Date: Tue, 05 Dec 2000 16:56:18 -

Looks like you need to do a step -1 on your first loop and increment y 
after
your cfset temparray[y] line - array then good but not sure links are!

Chris.

  -Original Message-
  From: Michael Thomas [mailto:[EMAIL PROTECTED]]
  Sent: 05 December 2000 11:21
  To: CF-Talk
  Subject: Just remembered
 
 
  I just remembered I had some troublesome code from a small
  lil' thing I wuz
  making while bored one night about 2 months ago. I had
  forgotten all about
  this page till I just found it ;). I called the code
  dynamicxygen.cfm 
  planned to use it as an include. Basically what it does is this:
 
  It'll dynamically create links to each directory from the
  current template
  path, all the way down to root. If you included it on every
  page you would
  have a very easy way of creating links around the site, even
  tho the code is
  a bit clunky. It would look like this one a page:
 
  !--- Normal path to file. ---
  Path: C:\r00t\main\newdir\currentdir\blah.cfm
 
  !--- The dyxgen navigation would then end up like this on
  the page ---
 
  linkmain/link/linknewdir/link/linkcurrentdir/link/blah.cfm
  main/newdir/currentdir/blah.cfm all linked back to the correct files.
 
 
  The code works great when creating links to docs in root  2nd level
  directories but when it goes deeper than that it doesnt
  return anything but
  an empty array. I cant understand why, altho I do have to
  admit I havent
  looked at the code in a long while.
 
  Can anyone help me find out why this isnt working 3 or more
  directories deep
  when it works fine any level before that??? Ill post the code below:
 
  cfset pathlen=ListLen(SCRIPT_NAME,"/")
  cfset temparray=ArrayNew(1)
  cfset y="1"
 
  cfoutput
cfloop index="x" from="#pathlen#" to="1" step="1"
cfset getting=ListGetAt(SCRIPT_NAME,"#x#","/")
  cfif y IS "#pathlen#"
cfset
  temparray[y]=#ReReplaceNoCase(SCRIPT_NAME,"getting","","ONE")#
  cfelse
cfset y=y+1
cfset
  temparray[y]=#ReReplaceNoCase(SCRIPT_NAME,"getting","","ONE")#
  /cfif
  /cfloop
 
  cfloop index="z" from="1" to="#ArrayLen(temparray)#" step="1"
cfset
  newlink="#ReReplaceNoCase(reverse(temparray[z]),"/","","ONE")#"
  cfif z IS "1" AND z IS NOT "#ArrayLen(temparray)#"
/a href="http://127.0.0.1/"Home/a/a
  href="#temparray[z]#"#Reverse(newlink)#/a
  cfelseif z IS "#ArrayLen(temparray)#"
/a href="#temparray[z]#"#Reverse(newlink)#/a
  /cfif
  /cfloop
 
  !--- I added this code once I found the bug. This'll prove
  that the code
  doesnt work when executed after 2 directories deep. ---
  cfif ArrayIsEmpty(temparray) IS "true"
Array is empty
  cfelse
Array is all good.
  /cfif
 
  /cfoutput
 

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

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



RE: Shopping Cart query

2000-12-05 Thread Bud

On 12/5/00, Nick Betts penned:
If an item is already in cart I want to check its size, if sizes are same
(eg both medium and both same product) then just update quantity (ie do not
add new product to cart).  If products are same but sizes different (eg
small and a medium) then I want to add new entry in cart for this
product/size.
Hope this is clear!

Not to get into it too far. When I add a product with a different 
color, size, or style, I add all that to an additional row I use just 
for that purpose. Sort of like:

cfset variables.searchrow = product_id  form.style  form.size  form.color

Then I test against that.
-- 

Bud Schneehagen - Tropical Web Creations

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
ColdFusion Solutions / eCommerce Development
[EMAIL PROTECTED]
http://www.twcreations.com/
954.721.3452

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

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



RE: cfmail??

2000-12-05 Thread Joshua Miller

I just experienced the same problems ... make sure both the to and from
addresses are valid email addresses or it won't send.

Joshua Miller
Web Development
Eagle Technologies Group, Inc.
Business Solutions for the Next Generation
www.eagletgi.com http://www.eagletgi.com
[EMAIL PROTECTED] mailto:[EMAIL PROTECTED]


-Original Message-
From: ibtoad [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, December 05, 2000 11:15 AM
To: CF-Talk
Subject: cfmail??


If my smtp is set up ok and verified in my local Cf administrator, why is my
email being placed in the undeliverable folder when I run a cfmail tag?

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

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



Re: cfmail??

2000-12-05 Thread Howie Hamlin

Look in the log files to get more details on what's happening.  Non-delivery
can be caused by many things...

HTH,

Howie

- Original Message -
From: "ibtoad" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Tuesday, December 05, 2000 11:15 AM
Subject: cfmail??


 If my smtp is set up ok and verified in my local Cf administrator, why is
my
 email being placed in the undeliverable folder when I run a cfmail tag?


 Thanks,
 Rich



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

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



Encryption problem when passed in URL?

2000-12-05 Thread Phill Gibson

Hi Everyone,

Try this:

htmlhead/headbodycfoutput

cfset date= "27-FEB-02:28:07:18"
cfset key = "aabbcc"
Before encryption, date is #date#br

cfset date2=Encrypt(date, #key#)
Encrypted, date2 is #date2#br

cfset date=Decrypt(date2, #key#)
 After encryption, date is #date#br

/cfoutput/body/html

With that given key and string, it gives the following output:
Before encryption, date is 27-FEB-02:28:07:18
Encrypted, date2 is 2#1 276*NP/W/WWV.Y\,1]4OG
After decryption, date is 27-FEB-02:28:07:18

Notice there is a space in the encryped string in position 4!   If I pass
this using, say, cfmail as an encrypted variable in the URL it bombs out
as in:

a href="www.domain.com/process.cfm?var1=2#1 276*NP/W/WWV.Y\,1]4OGclick
here to proceed/a
See that space still there?

Some dates do this, but by far, most don't. I came up with a second one with
a white space in it by tweaking the date after about 20 random tries.

Does anyone have any suggestions?

(I suppose I could just apologize to every ~20th customer for choosing the
wrong time of day! ;-)


Phill Gibson
Velawebs Web Designs
www.Velawebs.com
[EMAIL PROTECTED]



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

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



Re: COMMERCE BLOCKS

2000-12-05 Thread Jon Hall

ok

jon
- Original Message -
From: "Trip Ward" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Tuesday, December 05, 2000 10:08 AM
Subject: COMMERCE BLOCKS


 Lets do it . . . .

 Trip Ward
 Webmaster
 EBStor.com
 (703)393-7930 ext 273

  -Original Message-
  From: Larry C. Lyons [SMTP:[EMAIL PROTECTED]]
  Sent: Saturday, December 02, 2000 2:19 PM
  To: CF-Talk
  Subject: Re: [parsing shtml files]
 
  As far as I understand, SSI and CF do not get along. Web servers process
  SSI's while the CF server processes .cfm pages. To get the SHTML to work
  with CF you would have change the !--#include file/virtual= etc to
  CFINCLUDE Template= etc.
 
  regards,
  larry
 
  --
  Larry C. Lyons
  ColdFusion/Web Developer
  EBStor.com
  8870 Rixlew Lane, Suite 201
  Manassas, Virginia 20109-3795
  tel: (703) 393-7930 x253
  fax: (703) 393-2659
  http://www.ebstor.com
  http://www.pacel.com
  email: [EMAIL PROTECTED]
 
  Chaos, panic, and disorder - my work here is done.
  --
 
  Rob Keniger wrote:
  
   on 12/2/00 11:09 AM, Alex at [EMAIL PROTECTED] wrote:
  
you can include cf and call it via SSI.
  
   Does that work on all servers? I have had very inconsistent results.
  Quite
   often the .shtml page just displays the CF code.
  
   --
  
   Rob Keniger
  
   big bang solutions
  
   mailto:[EMAIL PROTECTED]
   http://www.bigbang.net.au
  
  
 

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

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



  1   2   >