Re: [PHP] ErrorDocument 404 Form

2002-07-19 Thread Fabien Penso
Peter a écrit : If you removed the ErrorDocument 404 /phpinfo.php from the apache conf (or reset it to original value), what happens? Do you get a standard 404 not found error page? Sure. But it's an apache problem, it drops the body as soon as you do have a 404 error. Sux :p --

Re: [PHP] ErrorDocument 404 Form

2002-07-18 Thread Fabien Penso
Michael a écrit : Well it could have been it, but it doesn't work neither trying to set the ErrorDocument into a .htaccess file. The problem is I am not even sure where is the trouble, and if it should work or not (I guess it should), so I don't know exactly where to ask, the dev

Re: [PHP] ErrorDocument 404 Form

2002-07-18 Thread Matt
Well it still is in GET method because the url does still exist with the ?plop=foobar but in case I want to use POST method (which I will as my form has huge textarea) everything disappear. Also this is a turn around I don't like, I would first understand why it doesn't work, and if I can

Re: [PHP] ErrorDocument 404 Form

2002-07-18 Thread Fabien Penso
Matt a écrit : Well it still is in GET method because the url does still exist with the ?plop=foobar but in case I want to use POST method (which I will as my form has huge textarea) everything disappear. Also this is a turn around I don't like, I would first understand why it

Re: [PHP] ErrorDocument 404 Form

2002-07-18 Thread Peter
If you removed the ErrorDocument 404 /phpinfo.php from the apache conf (or reset it to original value), what happens? Do you get a standard 404 not found error page? Fabien Penso [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Matt a écrit : Well it still

Re: [PHP] ErrorDocument 404 Form

2002-07-17 Thread Tom Ray
Actaully, neither Apache or PHP is at fault. The ErrorDocument (either in httpd.conf or an .htaccess file) follows absolute paths, so you are calling your engine.php out of the root directory of the machine. So the question is, do you have engine.php in the / folder? If not you can put it there

Re: [PHP] ErrorDocument 404 Form

2002-07-17 Thread Fabien Penso
Tom a écrit : Actaully, neither Apache or PHP is at fault. The ErrorDocument (either in httpd.conf or an .htaccess file) follows absolute paths, so you are calling your engine.php out of the root directory of the machine. So the question is, do you have engine.php in the / folder? If

Re: [PHP] ErrorDocument 404 Form

2002-07-17 Thread David Robley
In article [EMAIL PROTECTED], [EMAIL PROTECTED] says... Tom a écrit : Actaully, neither Apache or PHP is at fault. The ErrorDocument (either in httpd.conf or an .htaccess file) follows absolute paths, so you are calling your engine.php out of the root directory of the machine. So

Re: [PHP] ErrorDocument 404 Form

2002-07-17 Thread Fabien Penso
David a écrit : In article [EMAIL PROTECTED], [EMAIL PROTECTED] says... [...] but $plop won't be set, and there is no way to get the variables back. In POST method I won't even see the REDIRECT_QUERY_STRING at all. So should this work, if not why, and is there a way to fix it ? I

Re: [PHP] ErrorDocument 404 Form

2002-07-17 Thread Michael Sims
On Thu, 18 Jul 2002 03:21:48 +0200, you wrote: Then again, I might not be remembering correctly, so ... Well it could have been it, but it doesn't work neither trying to set the ErrorDocument into a .htaccess file. The problem is I am not even sure where is the trouble, and if it should work