Re: [PHP] Re: Browser displays blank page, while request still being handled

2006-05-11 Thread Rolf Wouters
Others have mentioned that the browser timeout could be a problem. So I'm wondering if your script really was completing all the way, but the browser just gave up on waiting. Could you try a little test to take the spaces back out, and write the output of connection_status()

Re: [PHP] Re: Browser displays blank page, while request still being handled

2006-05-11 Thread Rolf Wouters
Edward Vermillion wrote: On May 10, 2006, at 10:54 AM, Rolf Wouters wrote: Yet another update. Strange thing happened. I fixed the problem... It's not a clean solution, it's not the right solution, but for now, it'll (have to) do :-) I changed my little test-script to include

[PHP] Re: Browser displays blank page, while request still being handled

2006-05-10 Thread Rolf Wouters
Yet another update. Strange thing happened. I fixed the problem... It's not a clean solution, it's not the right solution, but for now, it'll (have to) do :-) I changed my little test-script to include directives like max_input_time, set_time_limit(0) etc. Than I thought, why not try to

Re: [PHP] Browser displays blank page, while request still being handled

2006-05-09 Thread Rolf Wouters
I know I used to have an issue with some of that type of stuff, but I also went in and did an output buffering at the beginning of the script, ran everything, then output the buffer. That helped me to clear it up. One of the pieces might be outputting something you just aren't seeing yet...

Re: [PHP] Browser displays blank page, while request still being handled

2006-05-09 Thread Rolf Wouters
Do you have short open tags allowed in this server setting? why not just do ?php print $_REQUEST[result]; ? Yes, short open tags are allowed on this server. As mentioned before, all instances of this app are running on the same server, using the same configuration etc. Differences

Re: [PHP] Browser displays blank page, while request still being handled

2006-05-09 Thread Rolf Wouters
The script behind the request does the following: - delete some files - copy files from dir A to dir B - read some data from a database and generates some XML-files (i.e. a basic publish procedure) The problem isn't the script itself, nor the server. I know this, because the same code is

Re: [PHP] Browser displays blank page, while request still being handled

2006-05-09 Thread Rolf Wouters
I don't think it's a timeout issue on the server-side, because I've already tried setting MAX_EXECUTION_TIME and MAX_INPUT_TIME to extremly high values, and got the same result (i.e. the blank page). By setting them to extremly low values I was able to verify the app/script/server 's behaviour

[PHP] Re: Browser displays blank page, while request still being handled

2006-05-09 Thread Rolf Wouters
a status of OK - 200. I've also tried using @copy, but this didn't seem to help either. I still can't figure out why I'm becoming that stupid blank page... Anywho... I hope this helps other people help me :-s Greetz Rolf Wouters -- PHP General Mailing List (http://www.php.net/) To unsubscribe

Re: [PHP] Re: Browser displays blank page, while request still being handled

2006-05-09 Thread Rolf Wouters
Have you tried tailing the error log on the server to see if it throws any error messages that might be clues? Yes, I have (although I only have limited access to the server) and nothing of interest shows up :-( I've also changed my code so PHP shows me all errors etc. but nothing shows

[PHP] Browser displays blank page, while request still being handled

2006-05-08 Thread Rolf Wouters
if I want to send the request again :-( I've been searching the Web for a long time now, and I'm really desperate for some answers. If anyone could help me, even a hint of where to start, it would be greatly appreciated. With kind regards and many, many thanks in advance Rolf Wouters -- PHP

Re: [PHP] Browser displays blank page, while request still being handled

2006-05-08 Thread Rolf Wouters
Chris wrote: Rolf Wouters wrote: Hello everybody I'm having some strange behaviour in a PHP4 app I'm working on. When I send my request to the server, it returns a blank page to me within ca. 40 sec. On the server itself, my request is still being handled. What exactly do you want help

Re: [PHP] Browser displays blank page, while request still being handled

2006-05-08 Thread Rolf Wouters
Chris wrote: Rolf Wouters wrote: Chris wrote: Rolf Wouters wrote: Hello everybody I'm having some strange behaviour in a PHP4 app I'm working on. When I send my request to the server, it returns a blank page to me within ca. 40 sec. On the server itself, my request is still being

Re: [PHP] Browser displays blank page, while request still being handled

2006-05-08 Thread Rolf Wouters
I'm guessing it's just a timeout issue - maximum execution time exceeded type thing - check your php or apache error logs and see what that tells you.. if nothing shows up, turn log_errors on, restart apache and see what you get. I don't think it's a timeout issue on the server-side,

Re: [PHP] Browser displays blank page, while request still being handled

2006-05-08 Thread Rolf Wouters
BTW, would a timeout explain why the browser wants to repost the request when I trie to view the source-code of the blank-page? I think that's a firefox thing.. does the same thing happen in IE? Yes, this also happens IE, but IE doesn't show a blank page, instead it show me a Page cannot be

Re: [PHP] Browser displays blank page, while request still being handled

2006-05-08 Thread Rolf Wouters
One thing I forgot... Thanks for taking the time and helping me out with this problem, I should have said that a little bit earlier, but I hope I'm not to late yet :-) Greetz Rolf -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php