Such a thing as POST time-out?

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
User avatar
voltrader
Forum Contributor
Posts: 223
Joined: Wed Jul 07, 2004 12:44 pm
Location: SF Bay Area

Such a thing as POST time-out?

Post by voltrader »

My registration script allows uploading of a user photo of modest size (<100k). Occasionally, all I get is a white screen when I submit the form. This is remedied by clicking the IE back arrow and resubmitting.

Sometimes it happens other times it doesn't so I'm finding the exact problem hard to pin-down.

Thoughts?
User avatar
feyd
Neighborhood Spidermoddy
Posts: 31559
Joined: Mon Mar 29, 2004 3:24 pm
Location: Bothell, Washington, USA

Post by feyd »

if your php isn't set to E_ALL for errors, and also isn't set to display errors, you can often get this kind of problem (if there are unexpected errors somewhere in the process) ... I can't think of anything else right now.. :?
User avatar
voltrader
Forum Contributor
Posts: 223
Joined: Wed Jul 07, 2004 12:44 pm
Location: SF Bay Area

Post by voltrader »

Thanks again... I'll step through the code to see if I'm missing anything. Any decent tracers or debuggers for PHP that anyone can recommend?
User avatar
feyd
Neighborhood Spidermoddy
Posts: 31559
Joined: Mon Mar 29, 2004 3:24 pm
Location: Bothell, Washington, USA

Post by feyd »

Zend Studio..

there is a max_input_time setting as well.. check your phpinfo() for what your server's setting is at..
Post Reply