in my .htaccess file I have our old friend:
ErrorDocument 404 /appliction_404.php
I have a file with a form, whose action is to a VIRTUAL file, and for reasons I won't get into, I have to do it that way. In other words
<form name="form1" method="post" action="process_page.php">
Again, process_page.php doesn't exist, but instead it is picked up by application_404.php.
the problem is that the _POST collection is gone!
I am running PHP5 with PHPSuExec, when I print out globals I see this var:
REDIRECT_REQUEST_METHOD] => POST
but again, there IS no post showing in globals.
Is there any way around this - quite frankly I am disappointed in PHP as I have been in needing flash to upload a file with a progress bar - does anyone know how to overcome this one?
Thanks,
Samuel