Re: Possible time out

2014-02-13 Thread Matthew Williams

Is the form re-submitting each time you check a box?  I bet it's the post 
parameter limit thing.  The behavior you're describing (white screen) is 
exactly what happens when you hit that post param limit.  Cutter did a great 
blog post on it 
http://www.cutterscrossing.com/index.cfm/2012/3/27/ColdFusion-Security-Hotfix-and-Big-Forms.


--
Matthew Williams
Geodesic GraFX 

~|
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:357668
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Possible time out - Not

2014-02-13 Thread Rob Voyle

Hi Matthew and Anthony
It was the post param limit issue
There were lots of hidden input variables associated with the check box.
Bummer just getting a white screen without any error message.

Thanks

Rob 


On 13 Feb 2014 at 9:11, Matthew Williams wrote:

 
 Is the form re-submitting each time you check a box?  I bet it's the
 post parameter limit thing.  The behavior you're describing (white
 screen) is exactly what happens when you hit that post param limit. 
 Cutter did a great blog post on it
 http://www.cutterscrossing.com/index.cfm/2012/3/27/ColdFusion-Securi
 ty-Hotfix-and-Big-Forms.
 
 



~|
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:357669
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Possible time out

2014-02-13 Thread Steve 'Cutter' Blades

I don't know if it was a great blog post... (Thanks Matt) ;)

Steve 'Cutter' Blades
Adobe Community Professional
Adobe Certified Expert
Advanced Macromedia ColdFusion MX 7 Developer

http://cutterscrossing.com


Co-Author Learning Ext JS 3.2 Packt Publishing 2010
https://www.packtpub.com/learning-ext-js-3-2-for-building-dynamic-desktop-style-user-interfaces/book

The best way to predict the future is to help create it



~|
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:357677
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Possible time out

2014-02-13 Thread Cameron Childress

On Thu, Feb 13, 2014 at 11:08 AM, Steve 'Cutter' Blades wrote:

 I don't know if it was a great blog post... (Thanks Matt) ;)


I am JUST dealing with the postparam problem with a client (yes that
client) and came across this post from you about 10 minutes ago in my
searching. It's a real tough problem to figure out sometimes.

See also: http://www.petefreitag.com/item/808.cfm

-Cameron

-- 
Cameron Childress
--
p:   678.637.5072
im: cameroncf
facebook http://www.facebook.com/cameroncf |
twitterhttp://twitter.com/cameronc |
google+ https://profiles.google.com/u/0/117829379451708140985


~|
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:357679
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Possible time out

2014-02-13 Thread Matthew Williams

I find that it bites me every time I do a CF9 install (for instance, after 
rebuilding my dev laptop).  So it happened in the last month or so to me, which 
is the only reason I even remember the cause ;).  Though WHY there's no error 
output to the screen is highly annoying.

--
Matthew Williams
Geodesic GraFX 

~|
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:357684
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Possible time out

2014-02-12 Thread Rob Voyle

Hi Folks
Running CF9 developer

I have a form with 24 items and check boxes.
When over 13 check boxes are checked the screen just goes white,
no error message is displayed, nor is the CF debug info shown.

Each check box initiates Database queries. 
Total time on the template is 2449 ms when 12 boxes are checked.

The timeout request in CF is not checked. 

I don't have any problems on the production server with exact same template.

Any ideas?

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:357665
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Possible time out

2014-02-12 Thread Mike K

To check your theory,  try setting the timeout to a large number and see if
the problem goes away.Then you know for sure what is causing the
problem.   There are a number of things you can do to  reduce the impact of
a long processing time:

[A] look for ways to reduce the processing time.I dont know what you're
doing so I can't be specific about what you could do but maybe combine some
of those checkbox results so you have only one query between them.  Or
cache some of the queries so they come back faster from the database.

[B] If you can't speed up the processing time,  look for ways to reduce the
effect.   For example use threading (CFTHREAD tag)  to run simultaneous
queries and start displaying the result even though not all the queries
have processed yet.You can use force coldfusion to display the
incomplete page if you use CFFLUSH tags to output the page up to that
point, even though the page processing isnt complete yet.   Often, even
though you can't speed up the page process, you can give the user the
appearance of a faster page process by displaying parts of the page while
processing still continues.

[C]   Use both A and B above.

Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com
ColdFusion Enterprise, PHP, ASP, ASP.NET hosting from AUD$15/month


Hope this helps.   Probably I've just told you something you already know,
and if so, I'm sorry.  If you give us more details or maybe some code
to look at,  no doubt we can think of other things you can do too.



On Thu, Feb 13, 2014 at 5:52 PM, Rob Voyle robvo...@voyle.com wrote:


 Hi Folks
 Running CF9 developer

 I have a form with 24 items and check boxes.
 When over 13 check boxes are checked the screen just goes white,
 no error message is displayed, nor is the CF debug info shown.

 Each check box initiates Database queries.
 Total time on the template is 2449 ms when 12 boxes are checked.

 The timeout request in CF is not checked.

 I don't have any problems on the production server with exact same
 template.

 Any ideas?

 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:357666
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm