I'd start by removing the interval attribute -- it's not required and
without it, the tag just flushes everything in the buffer at the point the
flush is reached -- the interval is intended for something like this:

<cfoutput query="myquery">
        #some query variables here#
        <cfflush interval="1000">
</cfoutput>

The idea being that the page will load faster overall if it flushes only
after every 1kb of display instead of after every iteration of the loop,
since each flush takes some time away from the CF thread which is processing
the page.

hth

Isaac
Certified Advanced ColdFusion 5 Developer

www.turnkey.to
954-776-0046

> I am trying to flush a very small amount of data on mx but
> don't seem to be
> able to get the following to flush:

> <cfoutput>
>  <html>
>  <head>
>   <title>Processing.....</title>
>  </head>
>  <body>
>  processing....<br>
>  </cfoutput>
>  <cfflush interval="1">

> I would like it to flush immeadiately--its a payment page
> and I want to let
> users know something is happening.  The text does not
> appear until the page
> loads (15-30 seconds later).

> Any ideas?

> Thanks,

> Sam




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



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

Reply via email to