Re: cflocation mystery- solved

2014-02-02 Thread Brian Cain

You should also be retiring a 301 status code to the client. This makes a 
difference for SEO purposes.

In CF7 or before you would need to use the cfheader tag. CF8 and on, you can 
add the status code attribute to the cflocation tag. 

Sent from my iPhone

> On Feb 2, 2014, at 11:51 AM, "Rob Voyle"  wrote:
> 
> 
> Thanks guys
> 
> needed the absolute path in fileExist
> Rob
> 
> 
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:357577
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cflocation mystery- solved

2014-02-02 Thread Rob Voyle

Thanks guys

needed the absolute path in fileExist
Rob


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:357576
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cflocation mystery

2014-02-02 Thread Bobby

Exception.log

On 2/2/14, 12:18 PM, "Rob Voyle"  wrote:

>
>Hi Timothy
>
>Which log would the error be in. I can't find the error in any of the
>logs.
>The site is public and only displays a generic error template rather than
>the 
>specific error. 
>
>Rob
>
>On 2 Feb 2014 at 11:58, Timothy Heald wrote:
>
>> 
>> What's the error message?
>> On Feb 2, 2014 11:42 AM, "Rob Voyle"  wrote:
>
>
>
>

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:357575
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cflocation mystery

2014-02-02 Thread Timothy Heald

Nope, read that wrong.
On Feb 2, 2014 12:39 PM, timothy.he...@gmail.com wrote:

> Looks like newurl isn't a url, rather a path, it's appended to the domain
> name.
> On Feb 2, 2014 12:35 PM, "Cameron Childress"  wrote:
>
>>
>> fileExists() accepts a filename on the filesystem, not a URL.
>>
>> -Cameron
>>
>>
>> On Sun, Feb 2, 2014 at 11:41 AM, Rob Voyle  wrote:
>>
>> >
>> > Hi Folks
>> >
>> > I have a basic ".html" site that I have converted to a coldfusion site.
>> >
>> > since there are many old .html links out there I added the following to
>> my
>> > notFound.cfm file:
>> >
>> > 
>> > http://www.mydomain.com"; &
>> > replace(notFoundUrl,".html",".cfm")>
>> > 
>> > 
>> > 
>> > http://www.mydomain.com";>
>> > 
>> > 
>> >
>> > Works fine if the file exists but throws an error if the file doesn't
>> > exist rather than
>> > redirecting.
>> >
>> > Also which log file would have the error in it as I can't find the error
>> > in any of the
>> > logs
>> >
>> > What am I missing?
>> >
>> > Thanks
>> > Rob
>> >
>> >
>> >
>> >
>>
>> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:357574
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cflocation mystery

2014-02-02 Thread Timothy Heald

Looks like newurl isn't a url, rather a path, it's appended to the domain
name.
On Feb 2, 2014 12:35 PM, "Cameron Childress"  wrote:

>
> fileExists() accepts a filename on the filesystem, not a URL.
>
> -Cameron
>
>
> On Sun, Feb 2, 2014 at 11:41 AM, Rob Voyle  wrote:
>
> >
> > Hi Folks
> >
> > I have a basic ".html" site that I have converted to a coldfusion site.
> >
> > since there are many old .html links out there I added the following to
> my
> > notFound.cfm file:
> >
> > 
> > http://www.mydomain.com"; &
> > replace(notFoundUrl,".html",".cfm")>
> > 
> > 
> > 
> > http://www.mydomain.com";>
> > 
> > 
> >
> > Works fine if the file exists but throws an error if the file doesn't
> > exist rather than
> > redirecting.
> >
> > Also which log file would have the error in it as I can't find the error
> > in any of the
> > logs
> >
> > What am I missing?
> >
> > Thanks
> > Rob
> >
> >
> >
> >
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:357573
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cflocation mystery

2014-02-02 Thread Cameron Childress

fileExists() accepts a filename on the filesystem, not a URL.

-Cameron


On Sun, Feb 2, 2014 at 11:41 AM, Rob Voyle  wrote:

>
> Hi Folks
>
> I have a basic ".html" site that I have converted to a coldfusion site.
>
> since there are many old .html links out there I added the following to my
> notFound.cfm file:
>
> 
> http://www.mydomain.com"; &
> replace(notFoundUrl,".html",".cfm")>
> 
> 
> 
> http://www.mydomain.com";>
> 
> 
>
> Works fine if the file exists but throws an error if the file doesn't
> exist rather than
> redirecting.
>
> Also which log file would have the error in it as I can't find the error
> in any of the
> logs
>
> What am I missing?
>
> Thanks
> Rob
>
>
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:357572
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cflocation mystery

2014-02-02 Thread Timothy Heald

What version of cf?
On Feb 2, 2014 12:19 PM, "Rob Voyle"  wrote:

>
> Hi Timothy
>
> Which log would the error be in. I can't find the error in any of the logs.
> The site is public and only displays a generic error template rather than
> the
> specific error.
>
> Rob
>
> On 2 Feb 2014 at 11:58, Timothy Heald wrote:
>
> >
> > What's the error message?
> > On Feb 2, 2014 11:42 AM, "Rob Voyle"  wrote:
>
>
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:357571
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cflocation mystery

2014-02-02 Thread Timothy Heald

We don't know what's on the variable, and it's working through the first
half of the condition it sounds like.

Can you cflocate to the tld or do you require a filename?
On Feb 2, 2014 12:12 PM, "Russ Michaels"  wrote:

>
> you firstly are trying to use fileExists on a URL, so it will always fail,
> fileExists requires an absolute path on the server
> see here: https://learn.adobe.com/wiki/display/coldfusionen/fileexists
>
> secondly an html page will never reach coldfusion, because it is an html
> page, so cfml code will never run.
> You need to setup a 404 handler on the web server or use URL rewriting.
>
>
>
>
>
> On Sun, Feb 2, 2014 at 4:41 PM, Rob Voyle  wrote:
>
> >
> > Hi Folks
> >
> > I have a basic ".html" site that I have converted to a coldfusion site.
> >
> > since there are many old .html links out there I added the following to
> my
> > notFound.cfm file:
> >
> > 
> > http://www.mydomain.com"; &
> > replace(notFoundUrl,".html",".cfm")>
> > 
> > 
> > 
> > http://www.mydomain.com";>
> > 
> > 
> >
> > Works fine if the file exists but throws an error if the file doesn't
> > exist rather than
> > redirecting.
> >
> > Also which log file would have the error in it as I can't find the error
> > in any of the
> > logs
> >
> > What am I missing?
> >
> > Thanks
> > Rob
> >
> >
> >
> >
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:357570
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cflocation mystery

2014-02-02 Thread Rob Voyle

Hi Timothy

Which log would the error be in. I can't find the error in any of the logs.
The site is public and only displays a generic error template rather than the 
specific error. 

Rob

On 2 Feb 2014 at 11:58, Timothy Heald wrote:

> 
> What's the error message?
> On Feb 2, 2014 11:42 AM, "Rob Voyle"  wrote:



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:357569
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cflocation mystery

2014-02-02 Thread Timothy Heald

Add the file.  Like index.cfm our what ever
On Feb 2, 2014 12:09 PM, "Rob Voyle"  wrote:

>
> Hi Timothy
> Instead of redirecting to: mydomain.com
> http://www.mydomain.com";>
> It is throwing an error rather than redirecting.
>
> How do I redirect?
>
> Rob
>
>
> On 2 Feb 2014 at 11:56, Timothy Heald wrote:
>
> >
> > It's no mystery, that's the correct response.  Trap the 404 error
> > for html
> > files at the web server and handle the cf side through either site
> > wide or
> > per application error handling.
> > On Feb 2, 2014 11:42 AM, "Rob Voyle"  wrote:
> >
> > > 
> > > http://www.mydomain.com"; &
> > > replace(notFoundUrl,".html",".cfm")>
> > > 
> > > 
> > > 
> > > http://www.mydomain.com";>
> > > 
> > > 
> > >
>
>
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:357568
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cflocation mystery

2014-02-02 Thread Russ Michaels

you firstly are trying to use fileExists on a URL, so it will always fail,
fileExists requires an absolute path on the server
see here: https://learn.adobe.com/wiki/display/coldfusionen/fileexists

secondly an html page will never reach coldfusion, because it is an html
page, so cfml code will never run.
You need to setup a 404 handler on the web server or use URL rewriting.





On Sun, Feb 2, 2014 at 4:41 PM, Rob Voyle  wrote:

>
> Hi Folks
>
> I have a basic ".html" site that I have converted to a coldfusion site.
>
> since there are many old .html links out there I added the following to my
> notFound.cfm file:
>
> 
> http://www.mydomain.com"; &
> replace(notFoundUrl,".html",".cfm")>
> 
> 
> 
> http://www.mydomain.com";>
> 
> 
>
> Works fine if the file exists but throws an error if the file doesn't
> exist rather than
> redirecting.
>
> Also which log file would have the error in it as I can't find the error
> in any of the
> logs
>
> What am I missing?
>
> Thanks
> Rob
>
>
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:357567
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cflocation mystery

2014-02-02 Thread Timothy Heald

What's the error?
On Feb 2, 2014 12:09 PM, "Rob Voyle"  wrote:

>
> Hi Timothy
> Instead of redirecting to: mydomain.com
> http://www.mydomain.com";>
> It is throwing an error rather than redirecting.
>
> How do I redirect?
>
> Rob
>
>
> On 2 Feb 2014 at 11:56, Timothy Heald wrote:
>
> >
> > It's no mystery, that's the correct response.  Trap the 404 error
> > for html
> > files at the web server and handle the cf side through either site
> > wide or
> > per application error handling.
> > On Feb 2, 2014 11:42 AM, "Rob Voyle"  wrote:
> >
> > > 
> > > http://www.mydomain.com"; &
> > > replace(notFoundUrl,".html",".cfm")>
> > > 
> > > 
> > > 
> > > http://www.mydomain.com";>
> > > 
> > > 
> > >
>
>
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:357566
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cflocation mystery

2014-02-02 Thread Rob Voyle

Hi Timothy
Instead of redirecting to: mydomain.com
http://www.mydomain.com";>
It is throwing an error rather than redirecting.

How do I redirect?

Rob


On 2 Feb 2014 at 11:56, Timothy Heald wrote:

> 
> It's no mystery, that's the correct response.  Trap the 404 error
> for html
> files at the web server and handle the cf side through either site
> wide or
> per application error handling.
> On Feb 2, 2014 11:42 AM, "Rob Voyle"  wrote:
> 
> > 
> > http://www.mydomain.com"; &
> > replace(notFoundUrl,".html",".cfm")>
> > 
> > 
> > 
> > http://www.mydomain.com";>
> > 
> > 
> >



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:357565
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cflocation mystery

2014-02-02 Thread Timothy Heald

What's the error message?
On Feb 2, 2014 11:42 AM, "Rob Voyle"  wrote:

>
> Hi Folks
>
> I have a basic ".html" site that I have converted to a coldfusion site.
>
> since there are many old .html links out there I added the following to my
> notFound.cfm file:
>
> 
> http://www.mydomain.com"; &
> replace(notFoundUrl,".html",".cfm")>
> 
> 
> 
> http://www.mydomain.com";>
> 
> 
>
> Works fine if the file exists but throws an error if the file doesn't
> exist rather than
> redirecting.
>
> Also which log file would have the error in it as I can't find the error
> in any of the
> logs
>
> What am I missing?
>
> Thanks
> Rob
>
>
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:357564
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cflocation mystery

2014-02-02 Thread Timothy Heald

And that's not what you're asking at all
On Feb 2, 2014 11:42 AM, "Rob Voyle"  wrote:

>
> Hi Folks
>
> I have a basic ".html" site that I have converted to a coldfusion site.
>
> since there are many old .html links out there I added the following to my
> notFound.cfm file:
>
> 
> http://www.mydomain.com"; &
> replace(notFoundUrl,".html",".cfm")>
> 
> 
> 
> http://www.mydomain.com";>
> 
> 
>
> Works fine if the file exists but throws an error if the file doesn't
> exist rather than
> redirecting.
>
> Also which log file would have the error in it as I can't find the error
> in any of the
> logs
>
> What am I missing?
>
> Thanks
> Rob
>
>
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:357563
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cflocation mystery

2014-02-02 Thread Timothy Heald

It's no mystery, that's the correct response.  Trap the 404 error for html
files at the web server and handle the cf side through either site wide or
per application error handling.
On Feb 2, 2014 11:42 AM, "Rob Voyle"  wrote:

>
> Hi Folks
>
> I have a basic ".html" site that I have converted to a coldfusion site.
>
> since there are many old .html links out there I added the following to my
> notFound.cfm file:
>
> 
> http://www.mydomain.com"; &
> replace(notFoundUrl,".html",".cfm")>
> 
> 
> 
> http://www.mydomain.com";>
> 
> 
>
> Works fine if the file exists but throws an error if the file doesn't
> exist rather than
> redirecting.
>
> Also which log file would have the error in it as I can't find the error
> in any of the
> logs
>
> What am I missing?
>
> Thanks
> Rob
>
>
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:357562
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cflocation and long urls

2013-08-28 Thread Rob Voyle

Hi Kevin

I doubt that the + is the problem as it is now working fine as a relative link 
which includes the + / and = 
Rob

On 28 Aug 2013 at 19:49, Kevin Parker wrote:

> 
> My guess is your + signs may be seen as a space unless that's what
> you
> intended. I have seen this on the odd occasion but mainly on an
> older system
> on our Intranet.
> 



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:356583
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: cflocation and long urls

2013-08-28 Thread Russ Michaels

Try urlencodedformat

Russ Michaels
www.michaels.me.uk
cfmldeveloper.com
cflive.net
cfsearch.com
On 28 Aug 2013 10:50, "Kevin Parker"  wrote:

>
> My guess is your + signs may be seen as a space unless that's what you
> intended. I have seen this on the odd occasion but mainly on an older
> system
> on our Intranet.
>
>
> ++
> Kevin Parker
>
> ++
>
> -Original Message-
> From: Rob Voyle [mailto:robvo...@voyle.com]
> Sent: Wednesday, 28 August 2013 7:24 AM
> To: cf-talk
> Subject: cflocation and long urls
>
>
> Hi folks
>
> I have a long encrypted url stored in a database:
>
> the cgi.query_string is something like
>
> YJShGG8kxBWgJKOlo2z4oTM8jEanxnGNBzw+QBQw8JBtuiQ8Oyn6tc6qmbd+E7W
> vcbfncSF/pq2ttDOdegKnxA==
>
> It works fine if i manually copy the total url from the database to the
> browser,
>
>  however if I use
> 
>
> I get a not found error in firefox IE Chrome whereas Safari it works fine
>
> Any ideas or work arounds?
>
> Thanks
>
> Rob
> Robert J. Voyle, Psy.D.
> Director, Clergy Leadership Institute
> For Coaching and Training in Appreciative Inquiry
> Author: Restoring Hope: Appreciative Strategies
> to Resolve Grief and Resentment
> http://www.appreciativeway.com/
> 503-647-2378 or 503-647-2382
>
>
>
>
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:356578
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: cflocation and long urls

2013-08-28 Thread Kevin Parker

My guess is your + signs may be seen as a space unless that's what you
intended. I have seen this on the odd occasion but mainly on an older system
on our Intranet.


++
Kevin Parker

++

-Original Message-
From: Rob Voyle [mailto:robvo...@voyle.com] 
Sent: Wednesday, 28 August 2013 7:24 AM
To: cf-talk
Subject: cflocation and long urls


Hi folks

I have a long encrypted url stored in a database:

the cgi.query_string is something like
 
YJShGG8kxBWgJKOlo2z4oTM8jEanxnGNBzw+QBQw8JBtuiQ8Oyn6tc6qmbd+E7W
vcbfncSF/pq2ttDOdegKnxA==

It works fine if i manually copy the total url from the database to the
browser,

 however if I use


I get a not found error in firefox IE Chrome whereas Safari it works fine

Any ideas or work arounds?

Thanks

Rob
Robert J. Voyle, Psy.D.
Director, Clergy Leadership Institute
For Coaching and Training in Appreciative Inquiry
Author: Restoring Hope: Appreciative Strategies
to Resolve Grief and Resentment http://www.appreciativeway.com/
503-647-2378 or 503-647-2382





~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:356577
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cflocation and long urls

2013-08-27 Thread Rob Voyle

Hi Byron
yes there are several + and / and =

Rob

On 27 Aug 2013 at 21:43, Byron Mann wrote:

> 
> Are there any strange characters in the final decrypted uri? Like %
> / +?
> That are in the query_string portion of the URI?
> 
> Byron Mann
> Lead Engineer & Architect
> HostMySite.com



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:356576
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cflocation and long urls

2013-08-27 Thread Byron Mann

Are there any strange characters in the final decrypted uri? Like % / +?
That are in the query_string portion of the URI?

Byron Mann
Lead Engineer & Architect
HostMySite.com


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:356575
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cflocation and long urls -2

2013-08-27 Thread Rob Voyle

Hi folks
Interesting it works fine with relative url. 
Not sure if it is a length issue in the cflocation or some other factor

Thanks
Rob


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:356574
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cflocation and long urls

2013-08-27 Thread Rob Voyle

Hi Bryan

To check it I used "trim" no success.

Then instead of using 
I put 

Again no success,

What I did notice the link is an absolute link beginning http://www
the cflocation appears to be appended to the url of the origninal page.
such as http://www.originalpage.cfmhttp://wwwnewlink which is what is causing 
the "notfound error"

Normally cflocation replaces the entire url

Rob 




On 27 Aug 2013 at 15:57, Bryan Stevenson wrote:

> 
> Well just remember that copying and pasting often selects extra 
> characters (like blanks either side of the string)and I'm
> mentioning 
> this because Rob you have not said explicitly that you did check for
> thisjust being thorough ;-)
> 
> If you've already made sure the values are trimmed and each
> character is 
> indeed IDENTICAL, then move on



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:356573
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cflocation and long urls

2013-08-27 Thread Bryan Stevenson

Well just remember that copying and pasting often selects extra 
characters (like blanks either side of the string)and I'm mentioning 
this because Rob you have not said explicitly that you did check for 
thisjust being thorough ;-)

If you've already made sure the values are trimmed and each character is 
indeed IDENTICAL, then move on

Cheers

*Bryan Stevenson*B.Comm.
President & CEO
Electric Edge Systems Group Inc. - makers of FACTS^(TM)
phone: 250.480.0642
cell: 250.920.8830
e-mail: br...@electricedgesystems.com 
web: www.electricedgesystems.com  
and www.fisheryfacts.com 



Please consider the environment before printing this e-mail

-CONFIDENTIALITY--
This message, including any attachments, is confidential and may contain 
information that is privileged or exempt from disclosure. It is intended 
only for the person to whom it is addressed unless expressly authorized 
otherwise by the sender. If you are not an authorized recipient, please 
notify the sender immediately and permanently destroy all copies of this 
message and attachments.
On 13-08-27 03:48 PM, Rob Voyle wrote:
> Hi Ray and Dave
>
> If it were a length issue then it wouldn't work if I just paste it in from the
> database.
> Also its not an error in the string as you suggest Dave. I have both copied it
> straight from the database and then copied it from a cfm page where the
> database query is being presented. Both work fine. Its just the cflocation 
> that is
> not working.Using CF9 if that matters.
>
> Rob
>
>
>>> I have a long encrypted url stored in a database:
>>>
>>> the cgi.query_string is something like
>>>
>>> YJShGG8kxBWgJKOlo2z4oTM8jEanxnGNBzw+QBQw8JBtuiQ8Oyn6tc6qmbd+E7W
>>> vcbfncSF/pq2ttDOdegKnxA==
>>>
>
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:356571
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cflocation and long urls

2013-08-27 Thread Dave Watts

> Also its not an error in the string as you suggest Dave. I have both copied it
> straight from the database and then copied it from a cfm page where the
> database query is being presented. Both work fine. Its just the cflocation 
> that is
> not working.Using CF9 if that matters.

I think you misunderstood my suggestion. I think that the encoding of
that string may be broken in some way when you drop it as a literal
value in CFLOCATION.

You can test this by using Firebug or Chrome Developer Tools to look
at the Location response header and compare it to what you get when
you go directly to the URL in question.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
http://training.figleaf.com/

Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
GSA Schedule, and provides the highest caliber vendor-authorized
instruction at our training centers, online, or onsite.

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:356572
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cflocation and long urls

2013-08-27 Thread Rob Voyle

Hi Ray and Dave

If it were a length issue then it wouldn't work if I just paste it in from the 
database.
Also its not an error in the string as you suggest Dave. I have both copied it 
straight from the database and then copied it from a cfm page where the 
database query is being presented. Both work fine. Its just the cflocation that 
is 
not working.Using CF9 if that matters.

Rob 


> 
> > I have a long encrypted url stored in a database:
> >
> > the cgi.query_string is something like
> >
> > YJShGG8kxBWgJKOlo2z4oTM8jEanxnGNBzw+QBQw8JBtuiQ8Oyn6tc6qmbd+E7W
> > vcbfncSF/pq2ttDOdegKnxA==
> >



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:356570
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: cflocation and long urls

2013-08-27 Thread Mark A Kruger

Ray,
I agree but that restriction is pretty common for very very old browsers
(like IE 5 or maybe 6) but I haven't seen it be a problem recently. .NET
pages in particular can generate famously long URLs. My guess is that it
get's mangled by the redirect somehow - or that some intermediate engine
(like dotdefender) changes it or precludes it in some fashion. On one of the
other lists I read about dotdefender stopping a request that had redirected
more than 1 time for example.

-Mark

-Original Message-
From: Raymond Camden [mailto:raymondcam...@gmail.com] 
Sent: Tuesday, August 27, 2013 5:00 PM
To: cf-talk
Subject: Re: cflocation and long urls


There is a max size for URLs. Some browsers may be more strict about it.


On Tue, Aug 27, 2013 at 4:23 PM, Rob Voyle  wrote:

>
> Hi folks
>
> I have a long encrypted url stored in a database:
>
> the cgi.query_string is something like
>
> YJShGG8kxBWgJKOlo2z4oTM8jEanxnGNBzw+QBQw8JBtuiQ8Oyn6tc6qmbd+E7W
> vcbfncSF/pq2ttDOdegKnxA==
>
> It works fine if i manually copy the total url from the database to the
> browser,
>
>  however if I use
> 
>
> I get a not found error in firefox IE Chrome whereas Safari it works fine
>
> Any ideas or work arounds?
>
> Thanks
>
> Rob
> Robert J. Voyle, Psy.D.
> Director, Clergy Leadership Institute
> For Coaching and Training in Appreciative Inquiry
> Author: Restoring Hope: Appreciative Strategies
> to Resolve Grief and Resentment
> http://www.appreciativeway.com/
> 503-647-2378 or 503-647-2382
>
>
>
> 



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:356569
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cflocation and long urls

2013-08-27 Thread Dave Watts

> I have a long encrypted url stored in a database:
>
> the cgi.query_string is something like
>
> YJShGG8kxBWgJKOlo2z4oTM8jEanxnGNBzw+QBQw8JBtuiQ8Oyn6tc6qmbd+E7W
> vcbfncSF/pq2ttDOdegKnxA==
>
> It works fine if i manually copy the total url from the database to the 
> browser,
>
>  however if I use
> 
>
> I get a not found error in firefox IE Chrome whereas Safari it works fine
>
> Any ideas or work arounds?

My guess is that it's not a length issue, as Ray suggests, but rather
an encoding issue. Compare the exact value very carefully between the
one you pasted in and the one you're getting from the database.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
http://training.figleaf.com/

Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
GSA Schedule, and provides the highest caliber vendor-authorized
instruction at our training centers, online, or onsite.

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:356568
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cflocation and long urls

2013-08-27 Thread Raymond Camden

There is a max size for URLs. Some browsers may be more strict about it.


On Tue, Aug 27, 2013 at 4:23 PM, Rob Voyle  wrote:

>
> Hi folks
>
> I have a long encrypted url stored in a database:
>
> the cgi.query_string is something like
>
> YJShGG8kxBWgJKOlo2z4oTM8jEanxnGNBzw+QBQw8JBtuiQ8Oyn6tc6qmbd+E7W
> vcbfncSF/pq2ttDOdegKnxA==
>
> It works fine if i manually copy the total url from the database to the
> browser,
>
>  however if I use
> 
>
> I get a not found error in firefox IE Chrome whereas Safari it works fine
>
> Any ideas or work arounds?
>
> Thanks
>
> Rob
> Robert J. Voyle, Psy.D.
> Director, Clergy Leadership Institute
> For Coaching and Training in Appreciative Inquiry
> Author: Restoring Hope: Appreciative Strategies
> to Resolve Grief and Resentment
> http://www.appreciativeway.com/
> 503-647-2378 or 503-647-2382
>
>
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:356567
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CFLOCATION and urlencodedformat

2013-01-23 Thread John M Bliss

P.S. My test was simply this:

http://citiprogram.desk.com/customer/portal/articles/search?q=#URLEncodedFormat('thisis
a test')#" addtoken="no">


On Wed, Jan 23, 2013 at 2:25 PM, John M Bliss  wrote:

>
> On Wed, Jan 23, 2013 at 2:16 PM, Torrent Girl wrote:
>
>> this is a test
>
>
> I just ran that and ended up looking at this URL:
>
>
> http://citiprogram.desk.com/customer/portal/articles/search?q=this%20is%20a%20test
>
>
> ...where that page reads:
>
> 1 results found for "this is a test"
>
> ...all of which is correct.
>
> What are you seeing?
>
> P.S. You do not need those  tags.
>
>
>
> --
> John Bliss - http://about.me/jbliss
>



-- 
John Bliss - http://about.me/jbliss


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:354039
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CFLOCATION and urlencodedformat

2013-01-23 Thread John M Bliss

On Wed, Jan 23, 2013 at 2:16 PM, Torrent Girl  wrote:

> this is a test


I just ran that and ended up looking at this URL:

http://citiprogram.desk.com/customer/portal/articles/search?q=this%20is%20a%20test


...where that page reads:

1 results found for "this is a test"

...all of which is correct.

What are you seeing?

P.S. You do not need those  tags.


-- 
John Bliss - http://about.me/jbliss


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:354038
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CFLOCATION and urlencodedformat

2013-01-23 Thread Raymond Camden

By any wild chance did you urlencode it already? If you output

form.searchparam

_before_ the cflocation, and throw in an abort, is it encoded?

Also - you don't need cfoutput tags around a cflocation.


On Wed, Jan 23, 2013 at 2:16 PM, Torrent Girl  wrote:

>
> >Still not clear RE: which page is which and where you're seeing what.
> >
> >Let's say you have:
> >
> >page1.cfm
> >
> >
> >
> >
> >...then, on page2.cfm, you should see in the browser's URL/location bar:
> >
> >...page2.cfm?variable=this%20is%20a%20test
> >
> >...and, on page2.cfm, if you do this:
> >
> >#url.variable#
> >
> >...that should produce:
> >
> >this is a test
> >
> >If you do exactly that (and nothing else) and it's not behaving as I've
> >described than something truly bizarre is going on.
> >
> >
> >On Wed, Jan 23, 2013 at 10:40 AM, Torrent Girl  >wrote:
> >
> >>
>
>
> I guess I should have noted that I am posting to an external URL which is:
>
> http://citiprogram.desk.com/customer/portal/articles/search?q=#URLEncodedFormat(form.SEARCHPARAM)#"
> addtoken="no">
>
>
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:354037
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CFLOCATION and urlencodedformat

2013-01-23 Thread Torrent Girl

>Still not clear RE: which page is which and where you're seeing what.
>
>Let's say you have:
>
>page1.cfm
>
>
>
>
>...then, on page2.cfm, you should see in the browser's URL/location bar:
>
>...page2.cfm?variable=this%20is%20a%20test
>
>...and, on page2.cfm, if you do this:
>
>#url.variable#
>
>...that should produce:
>
>this is a test
>
>If you do exactly that (and nothing else) and it's not behaving as I've
>described than something truly bizarre is going on.
>
>
>On Wed, Jan 23, 2013 at 10:40 AM, Torrent Girl wrote:
>
>>


I guess I should have noted that I am posting to an external URL which is:

http://citiprogram.desk.com/customer/portal/articles/search?q=#URLEncodedFormat(form.SEARCHPARAM)#"
 addtoken="no"> 



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:354036
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CFLOCATION and urlencodedformat

2013-01-23 Thread Raymond Camden

index.cfm is part of the variable? So your telling cflocation to go to a
url and pass along a value that also includes a file name in it??

Is this online someplace? Because this is a SERIOUSLY simple thing and I
think all of us are missing something obvious.



On Wed, Jan 23, 2013 at 1:59 PM, Torrent Girl  wrote:

>
> >"When I output the var on the page I see the encoded version:
> >index.cfm?variable=this%20is%20a%20test"
> >
> >Eh? You wouldn't see index.cfm, etc. Seriously, like, do this:
> >
> >#url.variable#
> >
> >Do you see "this is a test" or "this%20etc"
> >
> >
> >
> >On Wed, Jan 23, 2013 at 10:38 AM, Torrent Girl  >wrote:
> >
> >>
>
> I see this:"this%20etc"
>
> P.s. index.cfm is part of the variable :)
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:354035
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CFLOCATION and urlencodedformat

2013-01-23 Thread Torrent Girl

>Still not clear RE: which page is which and where you're seeing what.
>
>Let's say you have:
>
>page1.cfm
>
>
>
>
>...then, on page2.cfm, you should see in the browser's URL/location bar:
>
>...page2.cfm?variable=this%20is%20a%20test
>
>...and, on page2.cfm, if you do this:
>
>#url.variable#
>
>...that should produce:
>
>this is a test
>
>If you do exactly that (and nothing else) and it's not behaving as I've
>described than something truly bizarre is going on.
>
>
>On Wed, Jan 23, 2013 at 10:40 AM, Torrent Girl wrote:
>
>>


Sorry in the browser url, instead of this: 
.page2.cfm?variable=this%20is%20a%20test


I see this .page2.cfm?variable=this is a test 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:354034
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CFLOCATION and urlencodedformat

2013-01-23 Thread Torrent Girl

>"When I output the var on the page I see the encoded version:
>index.cfm?variable=this%20is%20a%20test"
>
>Eh? You wouldn't see index.cfm, etc. Seriously, like, do this:
>
>#url.variable#
>
>Do you see "this is a test" or "this%20etc"
>
>
>
>On Wed, Jan 23, 2013 at 10:38 AM, Torrent Girl wrote:
>
>>

I see this:"this%20etc"

P.s. index.cfm is part of the variable :) 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:354033
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CFLOCATION and urlencodedformat

2013-01-23 Thread Raymond Camden

"When I output the var on the page I see the encoded version:
index.cfm?variable=this%20is%20a%20test"

Eh? You wouldn't see index.cfm, etc. Seriously, like, do this:

#url.variable#

Do you see "this is a test" or "this%20etc"



On Wed, Jan 23, 2013 at 10:38 AM, Torrent Girl wrote:

>
> >Dumb question - what are you seeing in the browser? When you output
> >#url.variable# what do you see?
> >
> >
> >On Wed, Jan 23, 2013 at 10:22 AM, Torrent Girl  >wrote:
> >
> >>
>
> When I output the var on the page I see the encoded version:
> index.cfm?variable=this%20is%20a%20test
>
> when it passes as a URL string, it is not encoded. I see the spaces:
> /index.cfm?variable=this is a test
>
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:354029
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CFLOCATION and urlencodedformat

2013-01-23 Thread John M Bliss

Still not clear RE: which page is which and where you're seeing what.

Let's say you have:

page1.cfm




...then, on page2.cfm, you should see in the browser's URL/location bar:

...page2.cfm?variable=this%20is%20a%20test

...and, on page2.cfm, if you do this:

#url.variable#

...that should produce:

this is a test

If you do exactly that (and nothing else) and it's not behaving as I've
described than something truly bizarre is going on.


On Wed, Jan 23, 2013 at 10:40 AM, Torrent Girl wrote:

>
> >> but when I pass the var using cflocation it isn't.
> >
> >Where, specifically? In the browser's URL/location bar? Or when you
> >#url.variable#? (If the latter, that's the way it's
> >supposed to work.)
> >
> >
> >On Wed, Jan 23, 2013 at 10:22 AM, Torrent Girl  >wrote:
> >
> >>
>
>
> When I output the var on the page I see the encoded version:
>
> index.cfm?variable=this%20is%20a%20test
>
> when it passes as a URL string, it is not encoded. I see the spaces:
> /index.cfm?variable=this is a test
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:354028
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CFLOCATION and urlencodedformat

2013-01-23 Thread Torrent Girl

>> but when I pass the var using cflocation it isn't.
>
>Where, specifically? In the browser's URL/location bar? Or when you
>#url.variable#? (If the latter, that's the way it's
>supposed to work.)
>
>
>On Wed, Jan 23, 2013 at 10:22 AM, Torrent Girl wrote:
>
>>


When I output the var on the page I see the encoded version: 

index.cfm?variable=this%20is%20a%20test 

when it passes as a URL string, it is not encoded. I see the spaces: 
/index.cfm?variable=this is a test 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:354027
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CFLOCATION and urlencodedformat

2013-01-23 Thread Torrent Girl

>Dumb question - what are you seeing in the browser? When you output
>#url.variable# what do you see?
>
>
>On Wed, Jan 23, 2013 at 10:22 AM, Torrent Girl wrote:
>
>>

When I output the var on the page I see the encoded version: 
index.cfm?variable=this%20is%20a%20test 

when it passes as a URL string, it is not encoded. I see the spaces:
/index.cfm?variable=this is a test


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:354026
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CFLOCATION and urlencodedformat

2013-01-23 Thread John M Bliss

> but when I pass the var using cflocation it isn't.

Where, specifically? In the browser's URL/location bar? Or when you
#url.variable#? (If the latter, that's the way it's
supposed to work.)


On Wed, Jan 23, 2013 at 10:22 AM, Torrent Girl wrote:

>
> >Yep try this
> >
> >
> >
> >
> >
> >
> >That should work, especially if this is suffering the same problem as
> >cfsavecontent and a few other tags and functions.
> >
> >--
> >Regards,
> >Andrew Scott
> >WebSite: http://www.andyscott.id.au/
> >Google+:  http://plus.google.com/113032480415921517411
>
>
>
> That still didn't work. Do I need to turn on a specific setting?
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:354025
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CFLOCATION and urlencodedformat

2013-01-23 Thread Raymond Camden

Dumb question - what are you seeing in the browser? When you output
#url.variable# what do you see?


On Wed, Jan 23, 2013 at 10:22 AM, Torrent Girl wrote:

>
> >Yep try this
> >
> >
> >
> >
> >
> >
> >That should work, especially if this is suffering the same problem as
> >cfsavecontent and a few other tags and functions.
> >
> >--
> >Regards,
> >Andrew Scott
> >WebSite: http://www.andyscott.id.au/
> >Google+:  http://plus.google.com/113032480415921517411
>
>
>
> That still didn't work. Do I need to turn on a specific setting?
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:354024
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CFLOCATION and urlencodedformat

2013-01-23 Thread Torrent Girl

>Yep try this
>
>
>
>
>
>
>That should work, especially if this is suffering the same problem as
>cfsavecontent and a few other tags and functions.
>
>-- 
>Regards,
>Andrew Scott
>WebSite: http://www.andyscott.id.au/
>Google+:  http://plus.google.com/113032480415921517411



That still didn't work. Do I need to turn on a specific setting? 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:354023
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CFLOCATION and urlencodedformat

2013-01-23 Thread Andrew Scott

Yep try this






That should work, especially if this is suffering the same problem as
cfsavecontent and a few other tags and functions.

-- 
Regards,
Andrew Scott
WebSite: http://www.andyscott.id.au/
Google+:  http://plus.google.com/113032480415921517411


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:354022
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cflocation not working

2012-11-15 Thread funand learning

I put this code in application.cfm, but when I put it in some other common
include file it works. How to make this work in application.cfm file?

On Thu, Nov 15, 2012 at 11:42 AM, Robert Harrison <
rob...@austin-williams.com> wrote:

>
> Your problem is the cgi vars. Test it without the if statements and see if
> it works. If it does, it's you cgi var statements that need some work.
>
> Robert Harrison
> Director of Interactive Services
>
> Austin & Williams
> Advertising I Branding I Digital I Direct
> 125 Kennedy Drive,  Suite 100   I  Hauppauge, NY 11788
> T 631.231.6600 X 119   F 631.434.7022
> http://www.austin-williams.com
>
> Blog:  http://www.austin-williams.com/blog
> Twitter:  http://www.twitter.com/austin_
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:353194
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: cflocation not working

2012-11-15 Thread Robert Harrison

Your problem is the cgi vars. Test it without the if statements and see if it 
works. If it does, it's you cgi var statements that need some work.

Robert Harrison 
Director of Interactive Services

Austin & Williams
Advertising I Branding I Digital I Direct  
125 Kennedy Drive,  Suite 100   I  Hauppauge, NY 11788
T 631.231.6600 X 119   F 631.434.7022   
http://www.austin-williams.com

Blog:  http://www.austin-williams.com/blog
Twitter:  http://www.twitter.com/austin_

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:353191
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cflocation not working

2012-11-15 Thread Raymond Camden

And if you output some text before the cflocation, does it work?


On Thu, Nov 15, 2012 at 11:34 AM, funand learning
wrote:

>
> I see "/test/folder1"
>
> On Thu, Nov 15, 2012 at 11:32 AM, Raymond Camden  >wrote:
>
> >
> > So when you output cgi.http_url, what do you see?
> >
> >
> >
> > On Thu, Nov 15, 2012 at 11:31 AM, fun and learning
> > wrote:
> >
> > >
> > > Hi All -
> > >
> > > I am using the following code to redirect a page
> > >
> > > 
> > >  
> > >  http://abc.com/test/folder2";>
> > >  
> > > 
> > >
> > > The second if statement does not work. if I do the redirect just using
> > the
> > > first if statement, it works. ANy ideas on why this could be happening?
> > >
> > >
> >
> >
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:353190
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cflocation not working

2012-11-15 Thread funand learning

I see "/test/folder1"

On Thu, Nov 15, 2012 at 11:32 AM, Raymond Camden wrote:

>
> So when you output cgi.http_url, what do you see?
>
>
>
> On Thu, Nov 15, 2012 at 11:31 AM, fun and learning
> wrote:
>
> >
> > Hi All -
> >
> > I am using the following code to redirect a page
> >
> > 
> >  
> >  http://abc.com/test/folder2";>
> >  
> > 
> >
> > The second if statement does not work. if I do the redirect just using
> the
> > first if statement, it works. ANy ideas on why this could be happening?
> >
> >
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:353188
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cflocation not working

2012-11-15 Thread Raymond Camden

So when you output cgi.http_url, what do you see?



On Thu, Nov 15, 2012 at 11:31 AM, fun and learning
wrote:

>
> Hi All -
>
> I am using the following code to redirect a page
>
> 
>  
>  http://abc.com/test/folder2";>
>  
> 
>
> The second if statement does not work. if I do the redirect just using the
> first if statement, it works. ANy ideas on why this could be happening?
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:353186
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cflocation in cfc

2010-05-22 Thread Mark Mandel

I would say so, yes... but given that you've given us no details, its very
hard to say for sure.

Sent from my mobile device

On 23 May 2010 10:34, "Matthew P. Smith"  wrote:


bad idea?




~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:333921
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cflocation tag

2009-12-04 Thread Mike Stromme

Barney,

Thank you, thank you, thank you  I had a  in the 
application.cfm file.

thanks,
Mike



 Do you have CFFLUSH above the CFLOCATION tag anywhere (like another
> template or Application.cfm)?  Once you flush the page, you can no
> longer do a CFLOCATION (or CFHEADER, CFCONTENT, etc.).
> 
> cheers,
> barneyb
> 
> On Fri, Dec 4, 2009 at 11:27 AM, Mike Stromme  com> wrote:
> >
> > Anyone ever have cflocation stop working.  It is happening on our 
> MX7 test server but works fine on our production MX7 server.  I 
> created a test page with just the cflocation tag with and without the 
> addToken attribute and it just stays on the test page.
> >
> > Thanks,
> > Mike
> >
> > 


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:328875
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: cflocation tag

2009-12-04 Thread Barney Boisvert

Do you have CFFLUSH above the CFLOCATION tag anywhere (like another
template or Application.cfm)?  Once you flush the page, you can no
longer do a CFLOCATION (or CFHEADER, CFCONTENT, etc.).

cheers,
barneyb

On Fri, Dec 4, 2009 at 11:27 AM, Mike Stromme  wrote:
>
> Anyone ever have cflocation stop working.  It is happening on our MX7 test 
> server but works fine on our production MX7 server.  I created a test page 
> with just the cflocation tag with and without the addToken attribute and it 
> just stays on the test page.
>
> Thanks,
> Mike
>
> 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:328874
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: cflocation problem

2008-05-06 Thread alex poyaoan
thanks to all the inputs will try which is best ...


> Hi everybody
> need help on this
> 
> I have this code on an action template
> 
> 
> INSERT into table1(listID, secondID, emailID)
> VALUES('#Form.ListID#','#Form.secondID#','#form.emailID#' )
> 
> 
> 
> I need to go back to the previous form with the value of form.id which 
> comes from the calling template. Is there a way to insert that value 
> in the cflocation url? I tried it but it gives me an error wHAT i WANT 
> TO DI IS 
> 
> 
> 
> thanks 


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

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


Re: cflocation problem

2008-05-05 Thread Axel Schultze
1) URL parameter absolutely works in cflocation
In
/wwwroot/cfdocs... you find this example







2) I use session.returnpage ="../somewhere/pagename.cfm" 
   and pair it with 
   

   

   ...it's pretty flexible

3) If you need to do more than URL parameter like go out of a frameset or so 
you may want to consider this:

parent.location.href = '/base/somewhere/index.cfm';


Axel




> Hi everybody
> need help on this
> 
> I have this code on an action template
> 
> 
> INSERT into table1(listID, secondID, emailID)
> VALUES('#Form.ListID#','#Form.secondID#','#form.emailID#' )
> 
> 
> I need to go back to the previous form with the value of form.id which 
> comes from the calling template. Is there a way to insert that value 
> in the cflocation url? I tried it but it gives me an error wHAT i WANT 
> TO DI IS 
> 
> 
> 
> thanks 


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

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


Re: cflocation problem

2008-05-05 Thread Axel Schultze
In
/wwwroot/cfdocs... you find this example






so
1) URL parameter absolutely works
2) I use session.returnpage ="../somewhere/pagename.cfm"



> Hi everybody
> need help on this
> 
> I have this code on an action template
> 
> 
> INSERT into table1(listID, secondID, emailID)
> VALUES('#Form.ListID#','#Form.secondID#','#form.emailID#' )
> 
> 
> 
> I need to go back to the previous form with the value of form.id which 
> comes from the calling template. Is there a way to insert that value 
> in the cflocation url? I tried it but it gives me an error wHAT i WANT 
> TO DI IS 
> 
> 
> 
> thanks 


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

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


RE: cflocation problem

2008-05-05 Thread Dave Francis
Shouldn't that be


-Original Message-
From: Phillip Vector [mailto:[EMAIL PROTECTED] 
Sent: Monday, May 05, 2008 12:12 PM
To: CF-Talk
Subject: Re: cflocation problem

"Is there a way to insert that value in the cflocation url? I tried it
but it gives me an error wHAT i WANT TO DI IS

"

Ok... So Alex... What's the problem again?

On Mon, May 5, 2008 at 9:08 AM, Dave Watts <[EMAIL PROTECTED]> wrote:
> > I don't believe you can send url variables with cflocation.
>
>  You can do this.
>
>  Dave Watts, CTO, Fig Leaf Software
>  http://www.figleaf.com/
>
>  Fig Leaf Training: Adobe/Google/Paperthin Certified Partners
>  http://training.figleaf.com/
>
>  WebManiacs 2008: the ultimate conference for CF/Flex/AIR developers!
>  http://www.webmaniacsconference.com/
>
>  



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

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


RE: cflocation problem

2008-05-05 Thread Leitch, Oblio
You beat me to it.  It's my understanding that the  tag simply 
inserts a 302(?) http status and corresponding Location header.  Per the specs 
(http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html), I believe the 
Location can be any valid URI; which includes using a query string.
 
However, you're right - it would expose it to tampering.



From: Dave Watts [mailto:[EMAIL PROTECTED]
Sent: Mon 5/5/2008 12:08 PM
To: CF-Talk
Subject: RE: cflocation problem



> I don't believe you can send url variables with cflocation.

You can do this.


This email message may contain privileged and/or confidential information. If 
you are not the intended recipient(s), you are hereby notified that any 
dissemination, distribution, or copying of this email message is strictly 
prohibited. If you have received this message in error, please immediately 
notify the sender and delete this email message from your computer.

CAUTION: The Agency of Human Services cannot ensure the confidentiality or 
security of email transmissions.


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

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


Re: cflocation problem

2008-05-05 Thread Phillip Vector
"Is there a way to insert that value in the cflocation url? I tried it
but it gives me an error wHAT i WANT TO DI IS

"

Ok... So Alex... What's the problem again?

On Mon, May 5, 2008 at 9:08 AM, Dave Watts <[EMAIL PROTECTED]> wrote:
> > I don't believe you can send url variables with cflocation.
>
>  You can do this.
>
>  Dave Watts, CTO, Fig Leaf Software
>  http://www.figleaf.com/
>
>  Fig Leaf Training: Adobe/Google/Paperthin Certified Partners
>  http://training.figleaf.com/
>
>  WebManiacs 2008: the ultimate conference for CF/Flex/AIR developers!
>  http://www.webmaniacsconference.com/
>
>  

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

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


RE: cflocation problem

2008-05-05 Thread Dave Watts
> I don't believe you can send url variables with cflocation.

You can do this.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Training: Adobe/Google/Paperthin Certified Partners
http://training.figleaf.com/

WebManiacs 2008: the ultimate conference for CF/Flex/AIR developers!
http://www.webmaniacsconference.com/

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

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


Re: cflocation problem

2008-05-05 Thread Phillip Vector
I don't believe you can send url variables with cflocation. I'm also
assuming from what you wrote that you already tried that.

Anyway, you don't want to do that anyway because it opens up a way for
people to manipulate the URL and get into areas they shouldn't be.

Good practice?

On Mon, May 5, 2008 at 8:33 AM, Leitch, Oblio
<[EMAIL PROTECTED]> wrote:
> So, why can't you?
>
>  
>
>
>
>  
>
>  From: alex poyaoan [mailto:[EMAIL PROTECTED]
>  Sent: Mon 5/5/2008 11:16 AM
>  To: CF-Talk
>  Subject: cflocation problem
>
>
>
>
>  Hi everybody
>  need help on this
>
>  I have this code on an action template
>
>  
>  INSERT into table1(listID, secondID, emailID)
>  VALUES('#Form.ListID#','#Form.secondID#','#form.emailID#' )
>  
>  
>
>  I need to go back to the previous form with the value of form.id which comes 
> from the calling template. Is there a way to insert that value in the 
> cflocation url? I tried it but it gives me an error wHAT i WANT TO DI IS
>
>  
>
>  thanks
>
>
>
>  

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

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


RE: cflocation problem

2008-05-05 Thread Leitch, Oblio
So, why can't you?



 



From: alex poyaoan [mailto:[EMAIL PROTECTED]
Sent: Mon 5/5/2008 11:16 AM
To: CF-Talk
Subject: cflocation problem



Hi everybody
need help on this

I have this code on an action template


INSERT into table1(listID, secondID, emailID)
VALUES('#Form.ListID#','#Form.secondID#','#form.emailID#' )



I need to go back to the previous form with the value of form.id which comes 
from the calling template. Is there a way to insert that value in the 
cflocation url? I tried it but it gives me an error wHAT i WANT TO DI IS



thanks



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

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


Re: cflocation problem

2008-05-05 Thread Phillip Vector
A quick and easy solution would be to store form.id into a session.



then cflocation to it and call it from #session.formid#.

Might not be the BEST answer, but I'm still waking up. :)

On Mon, May 5, 2008 at 8:16 AM, alex poyaoan <[EMAIL PROTECTED]> wrote:
> Hi everybody
>  need help on this
>
>  I have this code on an action template
>
>  
>  INSERT into table1(listID, secondID, emailID)
>  VALUES('#Form.ListID#','#Form.secondID#','#form.emailID#' )
>  
>  
>
>  I need to go back to the previous form with the value of form.id which comes 
> from the calling template. Is there a way to insert that value in the 
> cflocation url? I tried it but it gives me an error wHAT i WANT TO DI IS
>
>  
>
>  thanks
>
>  

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

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


RE: CFLOCATION, but with a form

2007-12-18 Thread Dave Merrill
Ian, that's exactly what I was looking for, a server response that asks the
browser to submit a form, the form analog of what cflocation does. It
doesn't surprise me that no such thing exists.

Dave Merrill  

> -Original Message-
> From: Ian Skinner 
> Sent: Tuesday, December 18, 2007 3:09 PM
> To: CF-Talk
> Subject: Re: CFLOCATION, but with a form
> 
> Semi-relevant: cfhttp can submit a form with specified data 
> to a specified url, but the whole thing happens on the 
> server, without the browser relocating anywhere. What I'm 
> looking for is just like that, but navigating the browser to 
> that submitted pg.
> 
> Dave Merrill  
> 
> I am not seeing how this mechanism would work.  You want the 
> server to build a request for the client so that the client 
> ends up somewhere else by submitting a form post?  This 
> sounds like a mixing of the server/client - request/response schema.
> 
>  generates a response to the client request.  
> This is a response (HTTP status 301 IIRC) that the client 
> recognizes.  Most browsers then handle this response by 
> sending a new request to the suggested location.  But of 
> course they do not have to do this.
> 
> There are no responses that I know of that suggests the 
> browser to make a new form post request.  I have done 
> something like this in the ancient past (10 years ago) by 
> building an HTML form with a JavaScript auto-submit that is 
> sent to the browser.  Of course this may not be looked on too 
> friendly in todays environment and would be easily defeated.
> 
> Bottom line: NO I know of no way to do this and it does not 
> make sense to me from a client/server perspective.
> 
> 
> 

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

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


Re: CFLOCATION, but with a form

2007-12-18 Thread Ian Skinner
Semi-relevant: cfhttp can submit a form with specified data to a specified
url, but the whole thing happens on the server, without the browser
relocating anywhere. What I'm looking for is just like that, but navigating
the browser to that submitted pg.

Dave Merrill  

I am not seeing how this mechanism would work.  You want the server to build a 
request for the client so that the client ends up somewhere else by submitting 
a form post?  This sounds like a mixing of the server/client - request/response 
schema.

 generates a response to the client request.  This is a response 
(HTTP status 301 IIRC) that the client recognizes.  Most browsers then handle 
this response by sending a new request to the suggested location.  But of 
course they do not have to do this.

There are no responses that I know of that suggests the browser to make a new 
form post request.  I have done something like this in the ancient past (10 
years ago) by building an HTML form with a JavaScript auto-submit that is sent 
to the browser.  Of course this may not be looked on too friendly in todays 
environment and would be easily defeated.

Bottom line: NO I know of no way to do this and it does not make sense to me 
from a client/server perspective.


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

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


RE: CFLOCATION, but with a form

2007-12-18 Thread Dave Watts
> Is there a form equivalent to the http mechanism used by 
> cflocation, where the server side generates info that gets 
> passed to a new page?

No, there isn't.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!


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

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


Re: CFLOCATION, but with a form

2007-12-18 Thread Todd
Without javascript involved or using GetPageContext().Forward() ( read:
http://www.bennadel.com/blog/382-Is-ColdFusion-s-GetPageContext-Forward-Method-Worth-Using-.htm),
then I don't think you're going to find what you're looking for.

On Dec 18, 2007 2:48 PM, Dave Merrill <[EMAIL PROTECTED]> wrote:

> Well yes, you could use those other mechanisms to hand off the data, or
> push
> it into a db table, but that's not really what I'm trying to think about.
>
> Is there a form equivalent to the http mechanism used by cflocation, where
> the server side generates info that gets passed to a new page?
>
> Semi-relevant: cfhttp can submit a form with specified data to a specified
> url, but the whole thing happens on the server, without the browser
> relocating anywhere. What I'm looking for is just like that, but
> navigating
> the browser to that submitted pg.
>
> Dave Merrill
>


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

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


RE: CFLOCATION, but with a form

2007-12-18 Thread Dave Merrill
Well yes, you could use those other mechanisms to hand off the data, or push
it into a db table, but that's not really what I'm trying to think about. 

Is there a form equivalent to the http mechanism used by cflocation, where
the server side generates info that gets passed to a new page? 

Semi-relevant: cfhttp can submit a form with specified data to a specified
url, but the whole thing happens on the server, without the browser
relocating anywhere. What I'm looking for is just like that, but navigating
the browser to that submitted pg.

Dave Merrill  

> -Original Message-
> From: Tom Chiverton
> Sent: Tuesday, December 18, 2007 11:17 AM
> To: CF-Talk
> Subject: Re: CFLOCATION, but with a form
> 
> On Tuesday 18 Dec 2007, Dave Merrill wrote:
> > As I understand it, cflocation sends a redirect to the browser, 
> > navigating it to a new page, potentially including url 
> parameters. Is 
> > there any way to do a similar thing, but emulating a form, 
> so passed 
> > parameters can be kept out of the url?
> 
> Store them in the session, or as cookies.
> 
> --
> Tom Chiverton
> Helping to simultaneously coordinate user-centric communities
> on: http://thefalken.livejournal.com
> 
> 
> Halliwells wishes all of its clients and suppliers the Very 
> Best for Christmas & the New Year
> 
> 
> This email is sent for and on behalf of Halliwells LLP.
> 
> Halliwells LLP is a limited liability partnership registered 
> in England and Wales under registered number OC307980 whose 
> registered office address is at Halliwells LLP, 3 Hardman 
> Square, Spinningfields, Manchester, M3 3EB.  A list of 
> members is available for inspection at the registered office. 
> Any reference to a partner in relation to Halliwells LLP 
> means a member of Halliwells LLP.  Regulated by The 
> Solicitors Regulation Authority.
> 
> CONFIDENTIALITY
> 
> This email is intended only for the use of the addressee 
> named above and may be confidential or legally privileged.  
> If you are not the addressee you must not read it and must 
> not use any information contained in nor copy it nor inform 
> any person other than Halliwells LLP or the addressee of its 
> existence or contents.  If you have received this email in 
> error please delete it and notify Halliwells LLP IT 
> Department on 0870 365 2500.
> 
> For more information about Halliwells LLP visit www.halliwells.com.
> 
> 

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

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


Re: CFLOCATION, but with a form

2007-12-18 Thread Tom Chiverton
On Tuesday 18 Dec 2007, Dave Merrill wrote:
> As I understand it, cflocation sends a redirect to the browser, navigating
> it to a new page, potentially including url parameters. Is there any way to
> do a similar thing, but emulating a form, so passed parameters can be kept
> out of the url?

Store them in the session, or as cookies.

-- 
Tom Chiverton
Helping to simultaneously coordinate user-centric communities
on: http://thefalken.livejournal.com


Halliwells wishes all of its clients and suppliers the Very Best for Christmas 
& the New Year


This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at 
Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A list 
of members is available for inspection at the registered office. Any reference 
to a partner in relation to Halliwells LLP means a member of Halliwells LLP.  
Regulated by The Solicitors Regulation Authority.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 2500.

For more information about Halliwells LLP visit www.halliwells.com.

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

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


Re: cflocation to cflayout

2007-09-04 Thread Raymond Camden
Use JavaScript.

ColdFusion.navigate(...)

Check the docs on the exact syntax.

On 9/4/07, Steve Sequenzia <[EMAIL PROTECTED]> wrote:
> Anyone know if it is possible to use  to redirect a page inside 
> of a  to a ? I don't want it to break the page out.
>
> Thanks in advance for any help.
>
> 

~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

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


Re: cflocation to cflayout

2007-09-04 Thread Brian Kotek
It isn't possible. cflocation will redirect the entire page.

On 9/4/07, Steve Sequenzia <[EMAIL PROTECTED]> wrote:
>
> Anyone know if it is possible to use  to redirect a page
> inside of a  to a ? I don't want it to break the
> page out.
>
> Thanks in advance for any help.
>
> 

~|
Get involved in the latest ColdFusion discussions, product
development sharing, and articles on the Adobe Labs wiki.
http://labs/adobe.com/wiki/index.php/ColdFusion_8

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


Re: cflocation/ie 6 bug - possible workaround

2007-05-30 Thread Rick Root
I see the JRun update but for an instant solution, I'm going to
try the &#anchor hack.

You IE6 people wanna hit this?

http://www.it.dev.duke.edu/public/test.cfm

Thanks

Rick

~|
Macromedia ColdFusion MX7
Upgrade to MX7 & experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

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


Re: cflocation/ie 6 bug - possible workaround

2007-05-30 Thread Catherine Alleva
This is the updated URL for Jrun hot fix: 
http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=5c9389c8

This fixed the cflocation problem.

FYI: If you upgrade to CFMX7, you'll have to install the hot fix again.

~|
Deploy Web Applications Quickly across the enterprise with ColdFusion MX7 & 
Flex 2
Free Trial 
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU

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


Re: cflocation/ie 6 bug - possible workaround

2007-05-30 Thread Catherine Alleva
Update: URL for Jrun hot fix: 
http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=5c9389c8

This fixed the cflocation problem. FYI: If you upgrade to CFMX7, you'll have to 
install the hot fix again.

~|
Create Web Applications With ColdFusion MX7 & Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

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


RE: cflocation sporadic file truncation on Jrun4, cannot install hotfix

2007-04-24 Thread Dave Watts
> I've seen your name on the boards here many times.  Thanks 
> for taking the time to answer my question.

You're welcome!

> I have tried everything I can think of and that certainly 
> never occurred to me.

I can see where it might not be immediately obvious, to say the least.

> One other thing I noticed is that on Win2003 server (after I 
> unzipped the jar file) the DLL's had an option on the 
> Properties tab to "unblock" the DLL because it came from a 
> different computer.  Since the source file will be a zipped 
> file do you think the update will fail if I cannot go into 
> the zipped file and change that option?

You shouldn't have to do anything inside the zipped file, which essentially
contains its own installer. It should extract the DLLs properly all on its
own.

> p.s. Dave Galarizzo [?sp] from figleaf was my first CF 
> instructor many years ago.

He's still here, and no one still can spell his name.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!

This email has been processed by SmoothZap - www.smoothwall.net


~|
Macromedia ColdFusion MX7
Upgrade to MX7 & experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

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


Re: cflocation sporadic file truncation on Jrun4, cannot install hotfix

2007-04-24 Thread Gerald Weir
Hi Dave,

I've seen your name on the boards here many times.  Thanks for taking the time 
to answer my question.

I have tried everything I can think of and that certainly never occurred to me.

My browser definitely renames the file as wsconfig.zip and there is already a 
file in the D:/Jrun4/lib called wsconfig.jar which is simply a single file so 
that definitely would not have occurred to me.

It would be nice if the tech note from Adobe/Macromedia would have stated that.

One other thing I noticed is that on Win2003 server (after I unzipped the jar 
file) the DLL's had an option on the Properties tab to "unblock" the DLL 
because it came from a different computer.  Since the source file will be a 
zipped file do you think the update will fail if I cannot go into the zipped 
file and change that option?

Thanks, Jerry

p.s. Dave Galarizzo [?sp] from figleaf was my first CF instructor many years 
ago.

>> We are running CF MX6.1 on Jrun4 with Updater 6. We are 
>
>You shouldn't extract anything at all manually. The download is a JAR file.
>When you download it, your browser may rename it as a ZIP file. Just go
>ahead and rename it to wsconfig.jar. Then, put it where the current
>wsconfig.jar is, and run the command as described.
>
>Dave Watts, CTO, Fig Leaf Software
>http://www.figleaf.com/
>
>Fig Leaf Software provides the highest caliber vendor-authorized
>instruction at our training centers in Washington DC, Atlanta,
>Chicago, Baltimore, Northern Virginia, or on-site at your location.
>Visit http://training.figleaf.com/ for more information!
>
>This email has been processed by SmoothZap - www.smoothwall.net

~|
Create robust enterprise, web RIAs.
Upgrade & integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

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


RE: cflocation sporadic file truncation on Jrun4, cannot install hotfix

2007-04-24 Thread Dave Watts
> We are running CF MX6.1 on Jrun4 with Updater 6. We are 
> experiencing sporadic truncated pages being downloaded to our 
> clients. The pages start properly but break and some code is exposed.
> 
> I am not asking about this question in particular but rather 
> the Hot Fix for this JRun issue which is issue 61210.
> 
> The installation instructions seem incomplete and not being a 
> java programmer am having a bit of a challenge installing it.
> 
> The extracted Zip file contains folders such as ...

You shouldn't extract anything at all manually. The download is a JAR file.
When you download it, your browser may rename it as a ZIP file. Just go
ahead and rename it to wsconfig.jar. Then, put it where the current
wsconfig.jar is, and run the command as described.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!

This email has been processed by SmoothZap - www.smoothwall.net


~|
Create robust enterprise, web RIAs.
Upgrade & integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

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


RE: Cflocation back to calling page

2007-02-26 Thread Andy Matthews
Assuming you're using a form, then add in a hidden field with the value of
the current page. Then on submission, after your processing is done, use
that value for the redirect. 

-Original Message-
From: Richard Colman [mailto:[EMAIL PROTECTED] 
Sent: Sunday, February 25, 2007 10:11 PM
To: CF-Talk
Subject: Cflocation back to calling page

What is the easiest way to do a  back to the calling page?

Rick Colman



~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/

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


RE: Cflocation back to calling page

2007-02-26 Thread Coldfusion
The only problem is not all servers return the HTTP_REFERER variable. It is not 
reliable.
What I try to do is set a variable (either url or form) to indicate the page 
name where
the request came from and use that.


-Original Message-
From: Charlie Griefer [mailto:[EMAIL PROTECTED] 
Sent: Sunday, February 25, 2007 11:24 PM
To: CF-Talk
Subject: Re: Cflocation back to calling page

assuming there -is- a calling page...


  

On 2/25/07, Richard Colman <[EMAIL PROTECTED]> wrote:
> What is the easiest way to do a  back to the calling page?
>
> Rick Colman
>
> 



~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion

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


Re: Cflocation back to calling page

2007-02-25 Thread Charlie Griefer
assuming there -is- a calling page...


 


On 2/25/07, Richard Colman <[EMAIL PROTECTED]> wrote:
> What is the easiest way to do a  back to the calling page?
>
> Rick Colman
>
> 

~|
ColdFusion MX7 and Flex 2 
Build sales & marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2

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


RE: cflocation - requires hitting submit button twice

2006-12-17 Thread Bobby Hartsfield
If your queries are cached, it's not going to make difference so make sure
that's not the case.

I do all of this in one template with smaller single step forms.

1) Check to see if the form was submitted. If so, validate any fields and
update the record then redirect right back the same page so the request
method is no longer 'post' and the user is looking at the latest data.

2) get the data you want from the database

3) build your form that submits right back to itself.
















Update 
  









Select the info here...








the form


..:.:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com

-- 
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.5.432 / Virus Database: 268.15.23/591 - Release Date: 12/17/2006
3:17 PM
 



~|
Create robust enterprise, web RIAs.
Upgrade & integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

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


Re: CFLocation to an exe on another server

2006-08-28 Thread Ben Doom
>Use javascript?
>
>Use the meta tag?

Tried both.  Both triggered IE to block the download of a "potentially harmful 
file".

>Use the Java page context thing (I can't remember it off the top of my head
>should be easy to find if you google it).

Hadn't thought of that.  Maybe worth a look if this ever comes up again.

--Ben

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

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


Re: CFLocation to an exe on another server

2006-08-28 Thread Ben Doom
>Redirect to server 2 to a file that redirects locally to the exe and see if 
>that works (it most likely won't if it is not working already).

We're redirecting to someone else's server, anyway.  Thanks for the idea, 
though.

--Ben

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

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


RE: CFLocation to an exe on another server

2006-08-28 Thread loathe
Use javascript?

Use the meta tag?

Use the Java page context thing (I can't remember it off the top of my head
should be easy to find if you google it).

> -Original Message-
> From: Paul Giesenhagen [mailto:[EMAIL PROTECTED]
> Sent: Monday, August 28, 2006 3:15 PM
> To: CF-Talk
> Subject: Re: CFLocation to an exe on another server
> 
> This may sound like a bad solution .. (but it's all I could come up with
> quickly).
> 
> Redirect to server 2 to a file that redirects locally to the exe and see
> if
> that works (it most likely won't if it is not working already).
> 
> 
> Paul Giesenhagen
> QuillDesign
> 417-885-1375
> http://www.quilldesign.com
> 
> 
> - Original Message -
> From: "Ben Doom" <[EMAIL PROTECTED]>
> To: "CF-Talk" 
> Sent: Monday, August 28, 2006 1:51 PM
> Subject: CFLocation to an exe on another server
> 
> 
> > Here's the quandary:
> >
> > We're trying to redirect to a downloadable executable on another server.
> > If I type the address directly into the address bar of IE/Win, it works
> > fine.  If I CFLocation to the file in Firefox, it works fine.  If I
> > CFLocation to the file in IE/Win, it drops the .exe extension from the
> > download.
> >
> > Ideas?
> >
> > --Ben Doom
> >
> >
> 
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

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


Re: CFLocation to an exe on another server

2006-08-28 Thread Ben Doom
> Here's the quandary:
> 
> We're trying to redirect to a downloadable executable on another 
> server.  If I type the address directly into the address bar of IE/Win, 
> it works fine.  If I CFLocation to the file in Firefox, it works fine.  
> If I CFLocation to the file in IE/Win, it drops the .exe extension 
> from the download.
> 
> Ideas?
> 
> --Ben 

Nevermind.  addtoken="no" seems to have resolved the problem.  Stupid IE.

--Ben

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

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


Re: CFLocation to an exe on another server

2006-08-28 Thread Paul Giesenhagen
This may sound like a bad solution .. (but it's all I could come up with 
quickly).

Redirect to server 2 to a file that redirects locally to the exe and see if 
that works (it most likely won't if it is not working already).


Paul Giesenhagen
QuillDesign
417-885-1375
http://www.quilldesign.com


- Original Message - 
From: "Ben Doom" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Monday, August 28, 2006 1:51 PM
Subject: CFLocation to an exe on another server


> Here's the quandary:
>
> We're trying to redirect to a downloadable executable on another server. 
> If I type the address directly into the address bar of IE/Win, it works 
> fine.  If I CFLocation to the file in Firefox, it works fine.  If I 
> CFLocation to the file in IE/Win, it drops the .exe extension from the 
> download.
>
> Ideas?
>
> --Ben Doom
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

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


Re: cflocation and HTTPS/HTTP

2006-05-11 Thread Crow T . Robot
Thanks Mike.  I figured it was something like that, even if Google didn't give 
me any love on the subject.  I'm going to go ahead and use this method.

Does anyone else have a "better" way to redirect between http and https pages 
without having to hard-code the absolute links?  Just making sure I'm doing 
this as efficiently as possible.

Ray

>This popped-up recently (weeks ago?) and I ran into it last year.  IIRC,
>cflocation does a temp redirect and that messes up the HTTPS.  You need
>to do a javascript redirect, and if a user has disabled javascript, you
>need to follow-up with a META refresh to the correct protocol.
>
>M!ke 
>
>-Original Message-
>From: Snake [mailto:[EMAIL PROTECTED] 
>Sent: Wednesday, May 10, 2006 4:55 PM
>To: CF-Talk
>Subject: RE: cflocation and HTTPS/HTTP
>
>Try doing a javascript redirection and see if it still happens.
>I have had numerous problems with cflocation, sometimes it just doesn't
>work on some peopels browsers at all.
>What I resorted to doing was on a NON display page where a cflocation
>was required, I just generated a meta refresh tag that redirected the
>page instead.
>
>-Original Message-
>From: Ray Champagne [mailto:[EMAIL PROTECTED]
>Sent: 10 May 2006 22:43
>To: CF-Talk
>Subject: Re: cflocation and HTTPS/HTTP
>
>Yea, I appreciate that, guys, but that's not the error I'm getting.  
>Everything's fine on that front.  Believe me, I *was* getting it, but I
>have fixed that much.  Now I'm down to the cflocation issue.
>
>Ray
>
>Snake wrote:
>> If you have full HTTP paths on all the image  src that is, if they are

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240206
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: cflocation and HTTPS/HTTP

2006-05-11 Thread Dawson, Michael
This popped-up recently (weeks ago?) and I ran into it last year.  IIRC,
cflocation does a temp redirect and that messes up the HTTPS.  You need
to do a javascript redirect, and if a user has disabled javascript, you
need to follow-up with a META refresh to the correct protocol.

M!ke 

-Original Message-
From: Snake [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, May 10, 2006 4:55 PM
To: CF-Talk
Subject: RE: cflocation and HTTPS/HTTP

Try doing a javascript redirection and see if it still happens.
I have had numerous problems with cflocation, sometimes it just doesn't
work on some peopels browsers at all.
What I resorted to doing was on a NON display page where a cflocation
was required, I just generated a meta refresh tag that redirected the
page instead.

-Original Message-
From: Ray Champagne [mailto:[EMAIL PROTECTED]
Sent: 10 May 2006 22:43
To: CF-Talk
Subject: Re: cflocation and HTTPS/HTTP

Yea, I appreciate that, guys, but that's not the error I'm getting.  
Everything's fine on that front.  Believe me, I *was* getting it, but I
have fixed that much.  Now I'm down to the cflocation issue.

Ray

Snake wrote:
> If you have full HTTP paths on all the image  src that is, if they are

> relative img paths without http that wont happen.
>
> -Original Message-
> From: Everett, Al (NIH/NIGMS) [C] [mailto:[EMAIL PROTECTED]
> Sent: 10 May 2006 21:32
> To: CF-Talk
> Subject: RE: cflocation and HTTPS/HTTP
>
> Do you have images on the page? If you are hitting a page with https:
> but the  tags are http: you'll get that message for every image.
>
>
>
> 





~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240205
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: cflocation and HTTPS/HTTP

2006-05-10 Thread Snake
Try doing a javascript redirection and see if it still happens.
I have had numerous problems with cflocation, sometimes it just doesn't work
on some peopels browsers at all.
What I resorted to doing was on a NON display page where a cflocation was
required, I just generated a meta refresh tag that redirected the page
instead.

-Original Message-
From: Ray Champagne [mailto:[EMAIL PROTECTED] 
Sent: 10 May 2006 22:43
To: CF-Talk
Subject: Re: cflocation and HTTPS/HTTP

Yea, I appreciate that, guys, but that's not the error I'm getting.  
Everything's fine on that front.  Believe me, I *was* getting it, but I have
fixed that much.  Now I'm down to the cflocation issue.

Ray

Snake wrote:
> If you have full HTTP paths on all the image  src that is, if they are 
> relative img paths without http that wont happen.
>
> -Original Message-
> From: Everett, Al (NIH/NIGMS) [C] [mailto:[EMAIL PROTECTED]
> Sent: 10 May 2006 21:32
> To: CF-Talk
> Subject: RE: cflocation and HTTPS/HTTP
>
> Do you have images on the page? If you are hitting a page with https:
> but the  tags are http: you'll get that message for every image.
>
>
>
> 



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240186
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: cflocation and HTTPS/HTTP

2006-05-10 Thread Ray Champagne
Yea, I appreciate that, guys, but that's not the error I'm getting.  
Everything's fine on that front.  Believe me, I *was* getting it, but I 
have fixed that much.  Now I'm down to the cflocation issue.

Ray

Snake wrote:
> If you have full HTTP paths on all the image  src that is, if they are
> relative img paths without http that wont happen. 
>
> -Original Message-
> From: Everett, Al (NIH/NIGMS) [C] [mailto:[EMAIL PROTECTED] 
> Sent: 10 May 2006 21:32
> To: CF-Talk
> Subject: RE: cflocation and HTTPS/HTTP
>
> Do you have images on the page? If you are hitting a page with https:
> but the  tags are http: you'll get that message for every image.
>
>
>
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240185
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: cflocation and HTTPS/HTTP

2006-05-10 Thread Snake
If you have full HTTP paths on all the image  src that is, if they are
relative img paths without http that wont happen. 

-Original Message-
From: Everett, Al (NIH/NIGMS) [C] [mailto:[EMAIL PROTECTED] 
Sent: 10 May 2006 21:32
To: CF-Talk
Subject: RE: cflocation and HTTPS/HTTP

Do you have images on the page? If you are hitting a page with https:
but the  tags are http: you'll get that message for every image.



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240182
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: cflocation and HTTPS/HTTP

2006-05-10 Thread Crow T. Robot
Hi Al:

Thanks for taking the time to look this over.

The security warning I get isn't the "There are secure and unsecure 
portions of this page, do you want to see only the secure items?" (I'm 
paraphrasing) one, it's the one that tells you when you're navigating 
from a secure page to a non-secure page and vice-versa.  That one 
usually only shows up if you have your browser security set at 
super-high levels.  It's OK for it to show up once when transitioning 
between the two types of pages, but I have to click it about 10 times to 
get rid of it.

I know it's some kind of cflocation issue.  When I replace cflocation 
with a META redirect, everything works as it should.  I just would like 
to know why it's happening.

Ray

Everett, Al (NIH/NIGMS) [C] wrote:
> Do you have images on the page? If you are hitting a page with https:
> but the  tags are http: you'll get that message for every image.
>
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240180
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: cflocation and HTTPS/HTTP

2006-05-10 Thread Everett, Al \(NIH/NIGMS\) [C]
Do you have images on the page? If you are hitting a page with https:
but the  tags are http: you'll get that message for every image.

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240166
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: cflocation and cfcontent

2006-03-23 Thread Ray Champagne
Yea, me neither.  Which makes it all the more frustrating.

I figured out a way to do what I needed with a "hidden" text box on the 
page that changes via javascript when the "Download" button is clicked. 
  I just needed a "last downloaded" date to appear as if it had changed 
on the page.  Works well enough to fool the user's eye.

Thanks for the help.

Ray

Rob Wilkerson wrote:
> I've done this using a hidden iframe and I imagine you could also do
> it using AJaX, but I haven't tried it that way.  For me, this isn't a
> problem that comes up very often.
> 
> On 3/23/06, Ray Champagne <[EMAIL PROTECTED]> wrote:
>> Yea, that's pretty much my thought, but I thought someone might have
>> come up with a workaround, not necessarily using both in the same
>> template, maybe a popup, I dunno.  I've tried to think of elaborate ways
>> to do what I want, and I've come close, but no cigar.
>>
>> Rob Wilkerson wrote:
>>> I've never tried it, but I would assume it's impossible in the same
>>> way it's impossible to display page content if there's a cflocation
>>> tag present.  The cflocation occurs on the server side.  Content
>>> delivery - in any form - takes place on the client side.
>>>
>>> On 3/23/06, Ray Champagne <[EMAIL PROTECTED]> wrote:
 So, what's the verdict of the best workaround if I want to refresh a
 page after using cfcontent to download a file?  Is this possible at all?


>>>
>>
> 
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:236046
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: cflocation and cfcontent

2006-03-23 Thread Rob Wilkerson
I've done this using a hidden iframe and I imagine you could also do
it using AJaX, but I haven't tried it that way.  For me, this isn't a
problem that comes up very often.

On 3/23/06, Ray Champagne <[EMAIL PROTECTED]> wrote:
> Yea, that's pretty much my thought, but I thought someone might have
> come up with a workaround, not necessarily using both in the same
> template, maybe a popup, I dunno.  I've tried to think of elaborate ways
> to do what I want, and I've come close, but no cigar.
>
> Rob Wilkerson wrote:
> > I've never tried it, but I would assume it's impossible in the same
> > way it's impossible to display page content if there's a cflocation
> > tag present.  The cflocation occurs on the server side.  Content
> > delivery - in any form - takes place on the client side.
> >
> > On 3/23/06, Ray Champagne <[EMAIL PROTECTED]> wrote:
> >> So, what's the verdict of the best workaround if I want to refresh a
> >> page after using cfcontent to download a file?  Is this possible at all?
> >>
> >>
> >
> >
>
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:236041
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: cflocation and cfcontent

2006-03-23 Thread Ray Champagne
Yea, that's pretty much my thought, but I thought someone might have 
come up with a workaround, not necessarily using both in the same 
template, maybe a popup, I dunno.  I've tried to think of elaborate ways 
to do what I want, and I've come close, but no cigar.

Rob Wilkerson wrote:
> I've never tried it, but I would assume it's impossible in the same
> way it's impossible to display page content if there's a cflocation
> tag present.  The cflocation occurs on the server side.  Content
> delivery - in any form - takes place on the client side.
> 
> On 3/23/06, Ray Champagne <[EMAIL PROTECTED]> wrote:
>> So, what's the verdict of the best workaround if I want to refresh a
>> page after using cfcontent to download a file?  Is this possible at all?
>>
>>
> 
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:236040
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: cflocation and cfcontent

2006-03-23 Thread Rob Wilkerson
I've never tried it, but I would assume it's impossible in the same
way it's impossible to display page content if there's a cflocation
tag present.  The cflocation occurs on the server side.  Content
delivery - in any form - takes place on the client side.

On 3/23/06, Ray Champagne <[EMAIL PROTECTED]> wrote:
> So, what's the verdict of the best workaround if I want to refresh a
> page after using cfcontent to download a file?  Is this possible at all?
>
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:236038
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: cflocation/ie 6 bug - possible workaround

2006-03-15 Thread Catherine Alleva
Thanks Robert. Will forward the TechNote url to our sys admin. - Catherine

>Catherine,
>
>I had the same problem last year.  It was fixed after installing JRun4
>Updater 6.
>
>http://www.macromedia.com/go/5c9389c8
>
>Robert
>
>-Original Message-
>From: Catherine Alleva [mailto:[EMAIL PROTECTED] 
>Sent: Tuesday, January 17, 2006 4:38 PM
>To: CF-Talk
>Subject: Re: cflocation/ie 6 bug - possible workaround
>
>
>Having the same problem..or similar. cflocation only works with IE 6
>once in a while. I noticed the problem about a month ago. I tried the
>keep-alive fix but it didn't work. Still having the same problem. Only
>thing that seems to work is replacing all the cflocations with meta tags
>or cfheaders.
>
>Catherine Alleva

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:235504
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: cflocation/ie 6 bug - possible workaround

2006-01-18 Thread FROEHLING, ROBERT \(AIT\)
Catherine,

I had the same problem last year.  It was fixed after installing JRun4
Updater 6.

http://www.macromedia.com/go/5c9389c8

Robert

-Original Message-
From: Catherine Alleva [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, January 17, 2006 4:38 PM
To: CF-Talk
Subject: Re: cflocation/ie 6 bug - possible workaround


Having the same problem..or similar. cflocation only works with IE 6
once in a while. I noticed the problem about a month ago. I tried the
keep-alive fix but it didn't work. Still having the same problem. Only
thing that seems to work is replacing all the cflocations with meta tags
or cfheaders.

Catherine Alleva



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:229950
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: cflocation/ie 6 bug - possible workaround

2006-01-18 Thread Larry Lyons
>On 1/18/06, Larry Lyons <[EMAIL PROTECTED]> wrote:
>
>First off, I believe the syntax should be
>getPageContext.forward("whatever.cfm"). That being said, the thing you
>need to be careful with when using the server-side re-direct is that
>if you attempt to reload a page that was the result of one of these
>re-directs, the data from the previous page will be re-submitted. For
>example, say I have a form and want to display a "thank you" page. If
>I use getPageContext.forward() to get to the "thank you" page and the
>user hits reload, the form will be re-submitted. I've actually stopped
>using getPageContext for that reason.
>
>Regards,
>Dave.

to quote the great philosopher

D'oh!

yes I forgot the forward part. it should have read 
getpageContext.forward("whatever.cfm")

but that's a good call about the reload. I'll have to remember that.

larry

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:229927
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: cflocation/ie 6 bug - possible workaround

2006-01-18 Thread Dave Carabetta
On 1/18/06, Larry Lyons <[EMAIL PROTECTED]> wrote:
> >A number of our client sites have had problems where a page will display
> >HTTP headers and/or simply "hang" if the page is referred to via a
> >cflocation.
> >
> >This most often happens if the cflocation is inside other ColdFusion
> >tags, and seems to only be a problem in IE 6. The page itself would run
> >but the results would never appear, or would appear with HTTP headers at
> >the top of the page. (example: user submits a form, form is processed,
> >but cflocation to confirmation page results in the above)
> >
>
> As an alternative why not try getpageContext("whatever.cfm")? It performs a 
> server side redirect instead of a client side which is what cflocation does.
>

First off, I believe the syntax should be
getPageContext.forward("whatever.cfm"). That being said, the thing you
need to be careful with when using the server-side re-direct is that
if you attempt to reload a page that was the result of one of these
re-directs, the data from the previous page will be re-submitted. For
example, say I have a form and want to display a "thank you" page. If
I use getPageContext.forward() to get to the "thank you" page and the
user hits reload, the form will be re-submitted. I've actually stopped
using getPageContext for that reason.

Regards,
Dave.

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:229916
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


  1   2   3   4   >