Hello all,
when attempting to post a form with enctype="multipart/form-data" for
file uploading, I receive the following errors in my error_log and the
upload fails:
[Tue Nov 16 00:20:49 2004] [error] [client xx.xx.xx.xx] [libapreq] file upload forbidden
[Tue Nov 16 00:20:49 2004] [error] Apach
Thank you much for the quick response.
I tried setting the TMPDIR in startup.pl and in httpd.conf to no avail. The "[libapreq] file upload forbidden" error message is almost certainly coming from ibapreq's apache_request.c, line 591:
if (req->disable_uploads) {
ap_log_rerror(RE
It turned out to be a misplaced PerlInithandler Apache::RequestNotes - was in the main config instead of just in the 's where I wanted it to be.
>Here, disable_uploads is set to one if you have called either of:
>
> Apache::Request->new($r, disable_uploads => 1);
> Apache::Request->new($r, D