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

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

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

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

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

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

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.