* Thus wrote AJL:
> On Wed, Aug 04, 2004 at 02:55:16PM -0700, Justin Patrin wrote:
> > 
> > Sounds like Apache just isn't passing in POST data. Are you *sure*
> > there's Apache directive for this?
> Yeah, that's what I'm thinking more and more, apache not passing it in
> or in a way that php is not understanding.
> 
> Anyone know of possible apache settings/directives that affect how CGI
> programs are invoked and/or how data is passed to them?

<Location /cgi-bin> # or similar
  <Limit POST>
    Order deny,allow
    Deny from all
  </Limit>
</Location>

But, you technically should get a 50x error with that.


Curt
-- 
First, let me assure you that this is not one of those shady pyramid schemes
you've been hearing about.  No, sir.  Our model is the trapezoid!

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to