RE: Why won't this work to give me a list of photos?

2008-07-20 Thread Rick Faircloth
Yes, it's webroot... just personal preference.

This did the trick:

cffile action=read
file=e:\inetpub\webroot\real_estate_data\hmls\data\2008_0719_idx_custom\active_photos.txt
variable=photos

cfset photo_count=1

cfloop index=photo list=#photos# delimiters=#chr(13)chr(10)#

cfoutput#photo# - #photo_count#/cfoutputbr

cfset photo_count = photo_count + 1

/cfloop

Thanks,

Rick

 -Original Message-
 From: Azadi Saryev [mailto:[EMAIL PROTECTED]
 Sent: Saturday, July 19, 2008 11:26 PM
 To: CF-Talk
 Subject: Re: Why won't this work to give me a list of photos?
 
 is the file path correct? inetpub\webroot ? sure it's not wwwroot?
 
 if you are on a windows server use chr(10)chr(13) as newline delimiter
 
 why don't you loop directly over a file since you are on cf8?
 why do you use IE as your dev browser? switch to FF+Firebug+Coldfire
 immediately! :)
 
 Azadi Saryev
 Sabai-dee.com
 http://www.sabai-dee.com/
 
 
 
 Rick Faircloth wrote:
  What's wrong with this code?
 
  (I don't get an error message from CF, just an IE Error 500...)
 
  Thanks,
 
  Rick
 
  cffile action=read
  file=e:\inetpub\webroot\real_estate_data\hmls\data\2008_0719_idx_custom\active_photos.txt
  variable=photos
 
  cfset photo_count=1
 
  cfloop index=photo list=#photos# delimiters=#chr(10)#
 
  cfoutput#index# - #photo_count#/cfoutputbr
 
  cfset photo_count = photo_count + 1
 
  /cfloop
 
 
 
 
 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:309309
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Why won't this work to give me a list of photos?

2008-07-20 Thread Rick Faircloth
Yes, it should be #photo#...I rewrote it too quickly.

This worked:

cffile action=read
file=e:\inetpub\webroot\real_estate_data\hmls\data\2008_0719_idx_custom\active_photos.txt
variable=photos

cfset photo_count=1

cfloop index=photo list=#photos# delimiters=#chr(13)chr(10)#

cfoutput#photo# - #photo_count#/cfoutputbr

cfset photo_count = photo_count + 1

/cfloop

Thanks!

Rick

 -Original Message-
 From: Greg Morphis [mailto:[EMAIL PROTECTED]
 Sent: Sunday, July 20, 2008 12:22 AM
 To: CF-Talk
 Subject: Re: Why won't this work to give me a list of photos?
 
 What's #index# ?
 you dont have that variable declared anywhere.. should be #photo# right?
 
 On Sat, Jul 19, 2008 at 10:13 PM, Rick Faircloth
 [EMAIL PROTECTED] wrote:
  What's wrong with this code?
 
  (I don't get an error message from CF, just an IE Error 500...)
 
  Thanks,
 
  Rick
 
  cffile action=read
  file=e:\inetpub\webroot\real_estate_data\hmls\data\2008_0719_idx_custom\active_photos.txt
  variable=photos
 
  cfset photo_count=1
 
  cfloop index=photo list=#photos# delimiters=#chr(10)#
 
 cfoutput#index# - #photo_count#/cfoutputbr
 
 cfset photo_count = photo_count + 1
 
  /cfloop
 
 
 
 
 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:309310
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Why won't this work to give me a list of photos?

2008-07-20 Thread Rick Faircloth
Oh, and I meant to ask how I would loop directly over a file?

I tried some code, but it didn't work?
How would that be written?

Rick

 -Original Message-
 From: Azadi Saryev [mailto:[EMAIL PROTECTED]
 Sent: Saturday, July 19, 2008 11:26 PM
 To: CF-Talk
 Subject: Re: Why won't this work to give me a list of photos?
 
 is the file path correct? inetpub\webroot ? sure it's not wwwroot?
 
 if you are on a windows server use chr(10)chr(13) as newline delimiter
 
 why don't you loop directly over a file since you are on cf8?
 why do you use IE as your dev browser? switch to FF+Firebug+Coldfire
 immediately! :)
 
 Azadi Saryev
 Sabai-dee.com
 http://www.sabai-dee.com/
 
 
 
 Rick Faircloth wrote:
  What's wrong with this code?
 
  (I don't get an error message from CF, just an IE Error 500...)
 
  Thanks,
 
  Rick
 
  cffile action=read
  file=e:\inetpub\webroot\real_estate_data\hmls\data\2008_0719_idx_custom\active_photos.txt
  variable=photos
 
  cfset photo_count=1
 
  cfloop index=photo list=#photos# delimiters=#chr(10)#
 
  cfoutput#index# - #photo_count#/cfoutputbr
 
  cfset photo_count = photo_count + 1
 
  /cfloop
 
 
 
 
 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:309311
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Why won't this work to give me a list of photos?

2008-07-20 Thread Will Tomlinson
Oh, and I meant to ask how I would loop directly over a file?

I tried some code, but it didn't work?
How would that be written?



http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=Tags_j-l_15.html

:)

Will 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:309312
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Why won't this work to give me a list of photos?

2008-07-20 Thread Rick Faircloth
Oh...that works.  Thanks, Wilbur! :o)

Rick

 -Original Message-
 From: Will Tomlinson [mailto:[EMAIL PROTECTED]
 Sent: Sunday, July 20, 2008 7:08 AM
 To: CF-Talk
 Subject: Re: Why won't this work to give me a list of photos?
 
 Oh, and I meant to ask how I would loop directly over a file?
 
 I tried some code, but it didn't work?
 How would that be written?
 
 
 
 http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=Tags_j-l_15.html
 
 :)
 
 Will
 
 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:309313
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Why won't this work to give me a list of photos?

2008-07-19 Thread Rick Faircloth
What's wrong with this code?

(I don't get an error message from CF, just an IE Error 500...)

Thanks,

Rick

cffile action=read
file=e:\inetpub\webroot\real_estate_data\hmls\data\2008_0719_idx_custom\active_photos.txt
variable=photos

cfset photo_count=1

cfloop index=photo list=#photos# delimiters=#chr(10)#

cfoutput#index# - #photo_count#/cfoutputbr

cfset photo_count = photo_count + 1

/cfloop


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:309306
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Why won't this work to give me a list of photos?

2008-07-19 Thread Azadi Saryev
is the file path correct? inetpub\webroot ? sure it's not wwwroot?

if you are on a windows server use chr(10)chr(13) as newline delimiter

why don't you loop directly over a file since you are on cf8?
why do you use IE as your dev browser? switch to FF+Firebug+Coldfire
immediately! :)

Azadi Saryev
Sabai-dee.com
http://www.sabai-dee.com/



Rick Faircloth wrote:
 What's wrong with this code?

 (I don't get an error message from CF, just an IE Error 500...)

 Thanks,

 Rick

 cffile action=read
 file=e:\inetpub\webroot\real_estate_data\hmls\data\2008_0719_idx_custom\active_photos.txt
 variable=photos

 cfset photo_count=1

 cfloop index=photo list=#photos# delimiters=#chr(10)#

   cfoutput#index# - #photo_count#/cfoutputbr
   
   cfset photo_count = photo_count + 1
   
 /cfloop


 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:309307
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Why won't this work to give me a list of photos?

2008-07-19 Thread Greg Morphis
What's #index# ?
you dont have that variable declared anywhere.. should be #photo# right?

On Sat, Jul 19, 2008 at 10:13 PM, Rick Faircloth
[EMAIL PROTECTED] wrote:
 What's wrong with this code?

 (I don't get an error message from CF, just an IE Error 500...)

 Thanks,

 Rick

 cffile action=read
 file=e:\inetpub\webroot\real_estate_data\hmls\data\2008_0719_idx_custom\active_photos.txt
 variable=photos

 cfset photo_count=1

 cfloop index=photo list=#photos# delimiters=#chr(10)#

cfoutput#index# - #photo_count#/cfoutputbr

cfset photo_count = photo_count + 1

 /cfloop


 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:309308
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Verity - why won't it work?

2003-01-23 Thread Cutter (CF_Talk)
I have a site for a local school board set up on a Linux server running 
CFMX. I have set up two separate Verity collections, one to index the 
entire site and one to only index a documents directory. Having never 
done this before (and our lead developer not having any idea why it 
wasn't working) I killed the two prior, unworking, collections and 
recreated them from scratch. I just followed the ambiguous directions 
included in the Help of the CFIDE administrator. Although I have these 
two collections setup, and supposedly correctly, I am still unable to 
get any results. The CFSEARCH worked fine when this was all set up on 
a CF 4.5.2 machine, but we migrated the site when they asked for a 
redesign. Are there changes to CFSEARCH that I am unaware of? Any 
suggestions? Below is some of the code...

cfsearch collection=[collectionname]
  criteria=#form.terms#
  name=qryData
  type=SIMPLE
 
cfoutput
   
strong#qryData.recordcount#/strong records found 
matching strong#form.terms#/strong out of 
strong#qryData.recordsSearched#/strong.

cfif qryData.recordcount gt 0
.
/cfif

And the output of any query is...

0 records found matching [term] out of .

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: Verity - why won't it work?

2003-01-23 Thread Mark Leder
If you have multiple collections, separate these in the COLLECTION value
with commas.
Also, are you running CF in a dedicated or shared environment?  Also, how
many pages would you guess are being indexed?  Did the two prior unworking
collections work at any time in the past?

Thanks, Mark 

-Original Message-
From: Cutter (CF_Talk) [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, January 23, 2003 10:26 AM
To: CF-Talk
Subject: Verity - why won't it work?


I have a site for a local school board set up on a Linux server running 
CFMX. I have set up two separate Verity collections, one to index the 
entire site and one to only index a documents directory. Having never 
done this before (and our lead developer not having any idea why it 
wasn't working) I killed the two prior, unworking, collections and 
recreated them from scratch. I just followed the ambiguous directions 
included in the Help of the CFIDE administrator. Although I have these 
two collections setup, and supposedly correctly, I am still unable to 
get any results. The CFSEARCH worked fine when this was all set up on 
a CF 4.5.2 machine, but we migrated the site when they asked for a 
redesign. Are there changes to CFSEARCH that I am unaware of? Any 
suggestions? Below is some of the code...

cfsearch collection=[collectionname]
  criteria=#form.terms#
  name=qryData
  type=SIMPLE
 
cfoutput
   
strong#qryData.recordcount#/strong records found 
matching strong#form.terms#/strong out of 
strong#qryData.recordsSearched#/strong.

cfif qryData.recordcount gt 0
.
/cfif

And the output of any query is...

0 records found matching [term] out of .


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




Re: Verity - why won't it work?

2003-01-23 Thread Cutter (CF_Talk)
Different search pages are used to access each collection. It is a 
shared environment, though currently these are the only two collections 
on this server. Approximately 100 pages and 30+ documents (word and 
.pdf). Both collections worked fine when the site was on the 4.5.2 
server (but we can't go back).

Cutter

Mark Leder wrote:

If you have multiple collections, separate these in the COLLECTION value
with commas.
Also, are you running CF in a dedicated or shared environment?  Also, how
many pages would you guess are being indexed?  Did the two prior unworking
collections work at any time in the past?

Thanks, Mark 

-Original Message-
From: Cutter (CF_Talk) [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, January 23, 2003 10:26 AM
To: CF-Talk
Subject: Verity - why won't it work?


I have a site for a local school board set up on a Linux server running 
CFMX. I have set up two separate Verity collections, one to index the 
entire site and one to only index a documents directory. Having never 
done this before (and our lead developer not having any idea why it 
wasn't working) I killed the two prior, unworking, collections and 
recreated them from scratch. I just followed the ambiguous directions 
included in the Help of the CFIDE administrator. Although I have these 
two collections setup, and supposedly correctly, I am still unable to 
get any results. The CFSEARCH worked fine when this was all set up on 
a CF 4.5.2 machine, but we migrated the site when they asked for a 
redesign. Are there changes to CFSEARCH that I am unaware of? Any 
suggestions? Below is some of the code...

cfsearch collection=[collectionname]
  criteria=#form.terms#
  name=qryData
  type=SIMPLE
 
cfoutput
   
strong#qryData.recordcount#/strong records found 
matching strong#form.terms#/strong out of 
strong#qryData.recordsSearched#/strong.

cfif qryData.recordcount gt 0
.
/cfif

And the output of any query is...

0 records found matching [term] out of .



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: Verity - why won't it work?

2003-01-23 Thread Ben Doom
Here's a silly question (but one that got me after a long day):
did you index the collection after you created it?  I was re-indexing an
empty index and it wasn't working until I went into the admin and indexed
it.  Then it worked properly.

I figure you already thought of this, but I always like to start with the
obvious and work my way to the esoteric.  :-)


--  Ben Doom
Programmer  General Lackey
Moonbow Software, Inc

: -Original Message-
: From: Cutter (CF_Talk) [mailto:[EMAIL PROTECTED]]
: Sent: Thursday, January 23, 2003 1:17 PM
: To: CF-Talk
: Subject: Re: Verity - why won't it work?
:
:
: Different search pages are used to access each collection. It is a
: shared environment, though currently these are the only two collections
: on this server. Approximately 100 pages and 30+ documents (word and
: .pdf). Both collections worked fine when the site was on the 4.5.2
: server (but we can't go back).
:
: Cutter
:
: Mark Leder wrote:
:
: If you have multiple collections, separate these in the COLLECTION value
: with commas.
: Also, are you running CF in a dedicated or shared environment?  Also, how
: many pages would you guess are being indexed?  Did the two prior
: unworking
: collections work at any time in the past?
: 
: Thanks, Mark
: 
: -Original Message-
: From: Cutter (CF_Talk) [mailto:[EMAIL PROTECTED]]
: Sent: Thursday, January 23, 2003 10:26 AM
: To: CF-Talk
: Subject: Verity - why won't it work?
: 
: 
: I have a site for a local school board set up on a Linux server running
: CFMX. I have set up two separate Verity collections, one to index the
: entire site and one to only index a documents directory. Having never
: done this before (and our lead developer not having any idea why it
: wasn't working) I killed the two prior, unworking, collections and
: recreated them from scratch. I just followed the ambiguous directions
: included in the Help of the CFIDE administrator. Although I have these
: two collections setup, and supposedly correctly, I am still unable to
: get any results. The CFSEARCH worked fine when this was all set up on
: a CF 4.5.2 machine, but we migrated the site when they asked for a
: redesign. Are there changes to CFSEARCH that I am unaware of? Any
: suggestions? Below is some of the code...
: 
: cfsearch collection=[collectionname]
:   criteria=#form.terms#
:   name=qryData
:   type=SIMPLE
: 
: cfoutput
: 
: strong#qryData.recordcount#/strong records found
: matching strong#form.terms#/strong out of
: strong#qryData.recordsSearched#/strong.
: 
: cfif qryData.recordcount gt 0
: .
: /cfif
: 
: And the output of any query is...
: 
: 0 records found matching [term] out of .
: 
: 
: 
: 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




Re: Verity - why won't it work?

2003-01-23 Thread Cutter (CF_Talk)
I think I have, but this is my first experience with Verity so I don't 
know for sure. All I did was follow what little instructions were 
available in the CFIDE Help.

Cutter

Ben Doom wrote:

Here's a silly question (but one that got me after a long day):
did you index the collection after you created it?  I was re-indexing an
empty index and it wasn't working until I went into the admin and indexed
it.  Then it worked properly.

I figure you already thought of this, but I always like to start with the
obvious and work my way to the esoteric.  :-)


--  Ben Doom
Programmer  General Lackey
Moonbow Software, Inc

: -Original Message-
: From: Cutter (CF_Talk) [mailto:[EMAIL PROTECTED]]
: Sent: Thursday, January 23, 2003 1:17 PM
: To: CF-Talk
: Subject: Re: Verity - why won't it work?
:
:
: Different search pages are used to access each collection. It is a
: shared environment, though currently these are the only two collections
: on this server. Approximately 100 pages and 30+ documents (word and
: .pdf). Both collections worked fine when the site was on the 4.5.2
: server (but we can't go back).
:
: Cutter
:
: Mark Leder wrote:
:
: If you have multiple collections, separate these in the COLLECTION value
: with commas.
: Also, are you running CF in a dedicated or shared environment?  Also, how
: many pages would you guess are being indexed?  Did the two prior
: unworking
: collections work at any time in the past?
: 
: Thanks, Mark
: 
: -Original Message-
: From: Cutter (CF_Talk) [mailto:[EMAIL PROTECTED]]
: Sent: Thursday, January 23, 2003 10:26 AM
: To: CF-Talk
: Subject: Verity - why won't it work?
: 
: 
: I have a site for a local school board set up on a Linux server running
: CFMX. I have set up two separate Verity collections, one to index the
: entire site and one to only index a documents directory. Having never
: done this before (and our lead developer not having any idea why it
: wasn't working) I killed the two prior, unworking, collections and
: recreated them from scratch. I just followed the ambiguous directions
: included in the Help of the CFIDE administrator. Although I have these
: two collections setup, and supposedly correctly, I am still unable to
: get any results. The CFSEARCH worked fine when this was all set up on
: a CF 4.5.2 machine, but we migrated the site when they asked for a
: redesign. Are there changes to CFSEARCH that I am unaware of? Any
: suggestions? Below is some of the code...
: 
: cfsearch collection=[collectionname]
:   criteria=#form.terms#
:   name=qryData
:   type=SIMPLE
: 
: cfoutput
: 
: strong#qryData.recordcount#/strong records found
: matching strong#form.terms#/strong out of
: strong#qryData.recordsSearched#/strong.
: 
: cfif qryData.recordcount gt 0
: .
: /cfif
: 
: And the output of any query is...
: 
: 0 records found matching [term] out of .
: 
: 
: 
: 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: [cf-xml] Why won't this work on 4.0???

2001-07-17 Thread Zac Belado

 Any idea why the following code works on CF4.5pro but not 4.01pro

I believe there was a bug in the CFObject code in CF 4 and it was fixed in
CF4.5


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



Why won't this work on 4.0???

2001-07-16 Thread Joshua Miller

Any idea why the following code works on CF4.5pro but not 4.01pro

cfset request.sourceDoc=f:\web sites\_josh\cd_list.xml
cfset request.styleDoc=f:\web sites\_josh\cd_list.xsl

cfobject type=COM name=objSource context=INPROC
class=Microsoft.XMLDOM action=CREATE
cfobject type=COM name=objStyle context=INPROC
class=Microsoft.XMLDOM action=CREATE

cfscript
// Parse XML
objSource.async = false;
sourceReturn = objSource.load(#request.sourceDoc#);

// Parse XSL
objStyle.async = false;
styleReturn = objStyle.load(#request.styleDoc#);

// Transform Document
styleRoot = objStyle.documentElement;
xsloutput = objSource.transformNode(styleRoot);

// Set Caller Variable
xslout=#xsloutput#;
/cfscript


cfoutput#xslout#/cfoutput

Joshua Miller
Web Development::Programming
Eagle Technologies Group, Inc.
www.eagletgi.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: Why won't this work?

2000-07-10 Thread Joel Blanchette

How does you cfquery look like

Show us some code...

Joel


- Original Message -
From: "Dick Applebaum" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
Sent: Wednesday, June 28, 2000 3:30 AM
Subject: Re: Why won't this work?


 Chris

 I can't even get the initial page to display:


 Error Diagnostic Information

   ODBC Error Code = S1000 (General error)

   [Microsoft][ODBC Microsoft Access Driver] Unrecognized database
 format 'D:\FTP\chrisf\Database\bwpc.mdb'.

   The error occurred while processing an element with a general
 identifier of (CFQUERY), occupying document position
   (1:1) to (1:42).

   Date/Time: 06/28/00 01:28:56
   Browser: Mozilla/4.61 (Macintosh; I; PPC)
   Remote Address: 38.29.181.39
   Template: D:\FTP\chrisf\Htdocs\index.cfm


 HTH

 Dick


 At 9:18 PM -0400 6/27/2000, Chris Farrugia wrote:
 I have a link, it should work, but when you click the link, it just sits
 there and never does anything.  To see this problem, go to
 www.bluewaterpc.com and then click SOHO Bundle on the left, and then the
 button for Calculate Price, and then you'll see the problematic button
"Buy
 Now."  It is just sitting there... I really can not figure out this
problem
 for the life of me.  Thanks in advance for the help.
 
  Sincerely,
  Chris Farrugia
 --

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

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



Re: Why won't this work?

2000-07-10 Thread Fred T. Sanders

Sounds like maybe either it isn't really an access database or its an access
2K database and he doesn't have the latest MDACs installed on that machine
- Original Message -
From: "Joel Blanchette" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, July 10, 2000 9:02 PM
Subject: Re: Why won't this work?


 How does you cfquery look like

 Show us some code...

 Joel


 - Original Message -
 From: "Dick Applebaum" [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
 Sent: Wednesday, June 28, 2000 3:30 AM
 Subject: Re: Why won't this work?


  Chris
 
  I can't even get the initial page to display:
 
 
  Error Diagnostic Information
 
ODBC Error Code = S1000 (General error)
 
[Microsoft][ODBC Microsoft Access Driver] Unrecognized database
  format 'D:\FTP\chrisf\Database\bwpc.mdb'.
 
The error occurred while processing an element with a general
  identifier of (CFQUERY), occupying document position
(1:1) to (1:42).
 
Date/Time: 06/28/00 01:28:56
Browser: Mozilla/4.61 (Macintosh; I; PPC)
Remote Address: 38.29.181.39
Template: D:\FTP\chrisf\Htdocs\index.cfm
 
 
  HTH
 
  Dick
 
 
  At 9:18 PM -0400 6/27/2000, Chris Farrugia wrote:
  I have a link, it should work, but when you click the link, it just
sits
  there and never does anything.  To see this problem, go to
  www.bluewaterpc.com and then click SOHO Bundle on the left, and then
the
  button for Calculate Price, and then you'll see the problematic button
 "Buy
  Now."  It is just sitting there... I really can not figure out this
 problem
  for the life of me.  Thanks in advance for the help.
  
   Sincerely,
   Chris Farrugia

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

 --

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


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



RE: my pre-selected select box - why won't this work?

2000-07-05 Thread Mark Warrick

Simon,

My advice.  Stop using CFFORM!!!  For all the cool things it supposedly does for you, 
there's a matching set of restrictions it creates.  Use standard HTML for forms.

Next, refer back to the posts from last week for the same discussion.

The solution is to output your company's state as the first item on the list rather 
than trying to figure out whether it should be selected or not.  Then output the 
remaining states.

---mark

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


 -Original Message-
 From: Park, Simon [mailto:[EMAIL PROTECTED]]
 Sent: Monday, July 03, 2000 11:56 AM
 To: [EMAIL PROTECTED]
 Subject: my pre-selected select box - why won't this work?
 
 
 Sorry, this is probably very simple but I can't figure it out. I have a
 pre-selected value on my select box but it won't display. It should
 pre-select Maryland but it goes to the first option, Alaska. If I 
 hard-code
 "MD" into the 'SELECTED' parameter of the CFSELECT tag, the right 
 option is
 selected but if it is drawn from the query, it is wrong. Can 
 anyone tell me
 why?
 
 The URL is:
 http://206.239.48.11/test.cfm
 
 The code is:
 CFQUERY name="query_state" datasource="closingquotesdev"
 SELECT  state_des, state_abbrev
 FROM states 
 ORDER BY state_abbrev
 /CFQUERY
 
 CFQUERY NAME="GetCompanyAddress" datasource="closingquotesdev"
 SELECT  state
 FROM  dbo.comp_address
 WHERE comp_address.company_address_id = 299
 /CFQUERY
 
 
 CFOUTPUTGetCompanyAddress.state:
 #GetCompanyAddress.state#/CFOUTPUTBRBR
 CFFORM ACTION="" METHOD="POST"
 FONT face="MS SANS SERIF, HELVETICA" size="-1"State: FONT
 COLOR="Red"*/FONTBR
 CFSELECT NAME="state" MESSAGE="Please select your state."
 QUERY="query_state" VALUE="state_abbrev" DISPLAY="state_des"
 SELECTED="#GetCompanyAddress.state#"/CFSELECT/FONT
 /CFFORM
 
 
 Thanks.
 
 =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
 Simon ParkComputer Systems Management, Inc.
 [EMAIL PROTECTED]205 South Whiting Street
 Ph: 703-823-4300  Suite 201
 fax: 703-823-4301 Alexandria, VA  22304
  http://www.csmi.com  
 --
 
 Archives: http://www.eGroups.com/list/cf-talk
 To Unsubscribe visit 
 http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf
_talk or send a message to [EMAIL PROTECTED] with 'unsubscribe' in the 
body.

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



my pre-selected select box - why won't this work?

2000-07-03 Thread Park, Simon

Sorry, this is probably very simple but I can't figure it out. I have a
pre-selected value on my select box but it won't display. It should
pre-select Maryland but it goes to the first option, Alaska. If I hard-code
"MD" into the 'SELECTED' parameter of the CFSELECT tag, the right option is
selected but if it is drawn from the query, it is wrong. Can anyone tell me
why?

The URL is:
http://206.239.48.11/test.cfm

The code is:
CFQUERY name="query_state" datasource="closingquotesdev"
SELECT  state_des, state_abbrev
FROM states 
ORDER BY state_abbrev
/CFQUERY

CFQUERY NAME="GetCompanyAddress" datasource="closingquotesdev"
SELECT  state
FROMdbo.comp_address
WHERE   comp_address.company_address_id = 299
/CFQUERY


CFOUTPUTGetCompanyAddress.state:
#GetCompanyAddress.state#/CFOUTPUTBRBR
CFFORM ACTION="" METHOD="POST"
FONT face="MS SANS SERIF, HELVETICA" size="-1"State: FONT
COLOR="Red"*/FONTBR
CFSELECT NAME="state" MESSAGE="Please select your state."
QUERY="query_state" VALUE="state_abbrev" DISPLAY="state_des"
SELECTED="#GetCompanyAddress.state#"/CFSELECT/FONT
/CFFORM


Thanks.

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Simon Park  Computer Systems Management, Inc.
[EMAIL PROTECTED]  205 South Whiting Street
Ph: 703-823-4300Suite 201
fax: 703-823-4301   Alexandria, VA  22304
 http://www.csmi.com  
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: my pre-selected select box - why won't this work?

2000-07-03 Thread Seth Petry-Johnson

 Sorry, this is probably very simple but I can't figure it out. I have a
 pre-selected value on my select box but it won't display. It should
 pre-select Maryland but it goes to the first option, Alaska. If I
hard-code
 "MD" into the 'SELECTED' parameter of the CFSELECT tag, the right option
is
 selected but if it is drawn from the query, it is wrong. Can anyone tell
me
 why?

The only reason that Alaska is selected by default is because none of your
OPTION tags (generated by the CFSELECT) contain the SELECTED attribute.
This normally indicates that none of the values from the query matched the
value you specified as SELECTED.

The best guess I can make from looking at the output of your code is that
the value stored in the DB is "MD  " (note the trailing spaces).  This
could prevent the CFSELECT from pre-selecting Maryland because "MD" is not
the same as "MD".   Take a close look at the data in your
database... my guess is your problem lies there.

You could try changing the SELECTED parameter of the CFSELECT to read
SELECTED="#Trim(GetCompanyAddress.State)#"
but the best solution really is to fix up the data in the database.

Regards,
Seth Petry-Johnson
Argo Enterprise and Associates

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



RE: my pre-selected select box - why won't this work?

2000-07-03 Thread Roberts, Jesse D

Just a guess, but you might try putting using Trim in your SELECTED
varaible.  If your db state value has a space character, it would prevent it
from working.  

Jesse D. Roberts
Business Process Analyst
Procurement Quality Assurance
Boeing - Huntington Beach, CA
[EMAIL PROTECTED]
Ph. 714-896-3462
Fx. 714-896-3303

 -Original Message-
 From: Park, Simon [SMTP:[EMAIL PROTECTED]]
 Sent: Monday, July 03, 2000 11:56 AM
 To:   [EMAIL PROTECTED]
 Subject:  my pre-selected select box - why won't this work?
 
 Sorry, this is probably very simple but I can't figure it out. I have a
 pre-selected value on my select box but it won't display. It should
 pre-select Maryland but it goes to the first option, Alaska. If I
 hard-code
 "MD" into the 'SELECTED' parameter of the CFSELECT tag, the right option
 is
 selected but if it is drawn from the query, it is wrong. Can anyone tell
 me
 why?
 
 The URL is:
 http://206.239.48.11/test.cfm
 
 The code is:
 CFQUERY name="query_state" datasource="closingquotesdev"
 SELECT  state_des, state_abbrev
 FROM states 
 ORDER BY state_abbrev
 /CFQUERY
 
 CFQUERY NAME="GetCompanyAddress" datasource="closingquotesdev"
 SELECT  state
 FROM  dbo.comp_address
 WHERE comp_address.company_address_id = 299
 /CFQUERY
 
 
 CFOUTPUTGetCompanyAddress.state:
 #GetCompanyAddress.state#/CFOUTPUTBRBR
 CFFORM ACTION="" METHOD="POST"
 FONT face="MS SANS SERIF, HELVETICA" size="-1"State: FONT
 COLOR="Red"*/FONTBR
 CFSELECT NAME="state" MESSAGE="Please select your state."
 QUERY="query_state" VALUE="state_abbrev" DISPLAY="state_des"
 SELECTED="#GetCompanyAddress.state#"/CFSELECT/FONT
 /CFFORM
 
 
 Thanks.
 
 =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
 Simon ParkComputer Systems Management, Inc.
 [EMAIL PROTECTED]205 South Whiting Street
 Ph: 703-823-4300  Suite 201
 fax: 703-823-4301 Alexandria, VA  22304
  http://www.csmi.com  
 --
 
 Archives: http://www.eGroups.com/list/cf-talk
 To Unsubscribe visit
 http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
 send a message to [EMAIL PROTECTED] with 'unsubscribe' in
 the body.
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Why won't this work?

2000-06-28 Thread Chris Farrugia

Well everyone, I'll pass along the apology that Intermedia.net gave me.
They were doing "some changes" to their servers and it made ColdFusion
somehow act screwy for about an hour and a half.  But now everything is back
in order... so thank you for chasing a problem around in the dark like I did
:)

Sincerely,
Chris Farrugia





-Original Message-
From: Leong Yew [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, June 28, 2000 12:49 AM
To: [EMAIL PROTECTED]
Subject: RE: Why won't this work?



Chris,

I don't know if this is what the template's supposed to do. The buy now
button seems to work for me and I get directed to the page with title "STEP
3 provide information." and this was the output:

Hi guys. Your CFID is 128893 and your CFTOKEN is 9047698

All the links I followed worked out fine. Could it be your browser that's
problematic?

Leong

-Original Message-
From: Chris Farrugia [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, June 28, 2000 1:25 PM
To: [EMAIL PROTECTED]
Subject: RE: Why won't this work?


Wow, I can't get there, along with most everyone else... its when you click
the Buy button that it gets screwy...  did you do that?  And also, I don't
use cookies on my site... so I don't know how that matters... Thanks for the
help.




-Original Message-
From: pan [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, June 27, 2000 9:57 PM
To: [EMAIL PROTECTED]
Subject: Re: Why won't this work?



From: Chris Farrugia [EMAIL PROTECTED]

 I have a link, it should work, but when you click the link, it just sits
 there and never does anything.  To see this problem, go to
 www.bluewaterpc.com and then click SOHO Bundle on the left, and then the
 button for Calculate Price, and then you'll see the problematic button
"Buy
 Now."  It is just sitting there... I really can not figure out this
problem
 for the life of me.  Thanks in advance for the help.


After mousing down to the 'buy now' button, I got to the linked page
with no problem. Only info I cnan offer is that I refused cookies
through-out.

Pan



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


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


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

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



Re: Why won't this work?

2000-06-28 Thread Dick Applebaum

Chris

I can't even get the initial page to display:


Error Diagnostic Information

  ODBC Error Code = S1000 (General error)

  [Microsoft][ODBC Microsoft Access Driver] Unrecognized database 
format 'D:\FTP\chrisf\Database\bwpc.mdb'.

  The error occurred while processing an element with a general 
identifier of (CFQUERY), occupying document position
  (1:1) to (1:42).

  Date/Time: 06/28/00 01:28:56
  Browser: Mozilla/4.61 (Macintosh; I; PPC)
  Remote Address: 38.29.181.39
  Template: D:\FTP\chrisf\Htdocs\index.cfm


HTH

Dick


At 9:18 PM -0400 6/27/2000, Chris Farrugia wrote:
I have a link, it should work, but when you click the link, it just sits
there and never does anything.  To see this problem, go to
www.bluewaterpc.com and then click SOHO Bundle on the left, and then the
button for Calculate Price, and then you'll see the problematic button "Buy
Now."  It is just sitting there... I really can not figure out this problem
for the life of me.  Thanks in advance for the help.

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



Re: Why won't this work?

2000-06-28 Thread Daniel-Laurence Cedilotte

It seems to work when I go. When I click on buy now, I get located to a page
asking for my information including CC #. Seems ok as far as I can tell...

Dan

- Original Message -
From: "Chris Farrugia" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, June 27, 2000 9:18 PM
Subject: Why won't this work?


 I have a link, it should work, but when you click the link, it just sits
 there and never does anything.  To see this problem, go to
 www.bluewaterpc.com and then click SOHO Bundle on the left, and then the
 button for Calculate Price, and then you'll see the problematic button
"Buy
 Now."  It is just sitting there... I really can not figure out this
problem
 for the life of me.  Thanks in advance for the help.

 Sincerely,
 Chris Farrugia

 --

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

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



RE: Why won't this work?

2000-06-28 Thread Larry Juncker

Your button worked just fine for me.  It took me to your billing info page.

-Original Message-
From: Chris Farrugia [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, June 27, 2000 8:18 PM
To: [EMAIL PROTECTED]
Subject: Why won't this work?


I have a link, it should work, but when you click the link, it just sits
there and never does anything.  To see this problem, go to
www.bluewaterpc.com and then click SOHO Bundle on the left, and then the
button for Calculate Price, and then you'll see the problematic button "Buy
Now."  It is just sitting there... I really can not figure out this problem
for the life of me.  Thanks in advance for the help.

Sincerely,
Chris Farrugia


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


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



Why won't this work?

2000-06-27 Thread Chris Farrugia

I have a link, it should work, but when you click the link, it just sits
there and never does anything.  To see this problem, go to
www.bluewaterpc.com and then click SOHO Bundle on the left, and then the
button for Calculate Price, and then you'll see the problematic button "Buy
Now."  It is just sitting there... I really can not figure out this problem
for the life of me.  Thanks in advance for the help.

Sincerely,
Chris Farrugia

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



Re: Why won't this work?

2000-06-27 Thread pan


From: Chris Farrugia [EMAIL PROTECTED]

 I have a link, it should work, but when you click the link, it just sits
 there and never does anything.  To see this problem, go to
 www.bluewaterpc.com and then click SOHO Bundle on the left, and then the
 button for Calculate Price, and then you'll see the problematic button "Buy
 Now."  It is just sitting there... I really can not figure out this problem
 for the life of me.  Thanks in advance for the help.
 

After mousing down to the 'buy now' button, I got to the linked page
with no problem. Only info I cnan offer is that I refused cookies
through-out.

Pan


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



Re: Why won't this work?

2000-06-27 Thread Todd Ashworth

 From: Chris Farrugia [EMAIL PROTECTED]

  I have a link, it should work, but when you click the link, it just sits
  there and never does anything.  To see this problem, go to
  www.bluewaterpc.com and then click SOHO Bundle on the left, and then the
  button for Calculate Price, and then you'll see the problematic button
"Buy
  Now."  It is just sitting there... I really can not figure out this
problem
  for the life of me.  Thanks in advance for the help.
 

It doesn't work if you link straight to it either.
http://www.bluewaterpc.com/systems/orderonline/ordernow.cfm

You might want to check for some type of endless loop, or a query that's
taking longer than the timeout period.  I've had something similar happen to
me when getting nested cfloops in the wrong order.

.Todd

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



RE: Why won't this work?

2000-06-27 Thread Chris Farrugia

Wow, I can't get there, along with most everyone else... its when you click
the Buy button that it gets screwy...  did you do that?  And also, I don't
use cookies on my site... so I don't know how that matters... Thanks for the
help.




-Original Message-
From: pan [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, June 27, 2000 9:57 PM
To: [EMAIL PROTECTED]
Subject: Re: Why won't this work?



From: Chris Farrugia [EMAIL PROTECTED]

 I have a link, it should work, but when you click the link, it just sits
 there and never does anything.  To see this problem, go to
 www.bluewaterpc.com and then click SOHO Bundle on the left, and then the
 button for Calculate Price, and then you'll see the problematic button
"Buy
 Now."  It is just sitting there... I really can not figure out this
problem
 for the life of me.  Thanks in advance for the help.


After mousing down to the 'buy now' button, I got to the linked page
with no problem. Only info I cnan offer is that I refused cookies
through-out.

Pan



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

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



RE: Why won't this work?

2000-06-27 Thread Leong Yew


Chris,

I don't know if this is what the template's supposed to do. The buy now
button seems to work for me and I get directed to the page with title "STEP
3 provide information." and this was the output:

Hi guys. Your CFID is 128893 and your CFTOKEN is 9047698

All the links I followed worked out fine. Could it be your browser that's
problematic?

Leong

-Original Message-
From: Chris Farrugia [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, June 28, 2000 1:25 PM
To: [EMAIL PROTECTED]
Subject: RE: Why won't this work?


Wow, I can't get there, along with most everyone else... its when you click
the Buy button that it gets screwy...  did you do that?  And also, I don't
use cookies on my site... so I don't know how that matters... Thanks for the
help.




-Original Message-
From: pan [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, June 27, 2000 9:57 PM
To: [EMAIL PROTECTED]
Subject: Re: Why won't this work?



From: Chris Farrugia [EMAIL PROTECTED]

 I have a link, it should work, but when you click the link, it just sits
 there and never does anything.  To see this problem, go to
 www.bluewaterpc.com and then click SOHO Bundle on the left, and then the
 button for Calculate Price, and then you'll see the problematic button
"Buy
 Now."  It is just sitting there... I really can not figure out this
problem
 for the life of me.  Thanks in advance for the help.


After mousing down to the 'buy now' button, I got to the linked page
with no problem. Only info I cnan offer is that I refused cookies
through-out.

Pan



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


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

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



Re: Why won't this work?

2000-06-27 Thread pan


From: Chris Farrugia [EMAIL PROTECTED]

 Wow, I can't get there, along with most everyone else... its when you click
 the Buy button that it gets screwy...  did you do that?  And also, I don't
 use cookies on my site... so I don't know how that matters... Thanks for the
 help.

CFID  CFTOKEN come through my cookie filter(Cookie Pal) as cookies.
Yes - as I wrote; I moused down to the buy button and got to the next page
with no  problem. There was no content there - just htmlbody/body/html.

Refusing CFID  CFTOKEN is the (again) the oly difference I can see between
what I get and what others report.

Just repeated everything and now I get to the page with content.
It just reports the cftoken/cfif passed as URL.var amid the blue graphics/etc.




 -Original Message-
 From: pan [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, June 27, 2000 9:57 PM
 To: [EMAIL PROTECTED]
 Subject: Re: Why won't this work?



 From: Chris Farrugia [EMAIL PROTECTED]

  I have a link, it should work, but when you click the link, it just sits
  there and never does anything.  To see this problem, go to
  www.bluewaterpc.com and then click SOHO Bundle on the left, and then the
  button for Calculate Price, and then you'll see the problematic button
 "Buy
  Now."  It is just sitting there... I really can not figure out this
 problem
  for the life of me.  Thanks in advance for the help.
 

 After mousing down to the 'buy now' button, I got to the linked page
 with no problem. Only info I cnan offer is that I refused cookies
 through-out.

 Pan


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

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


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