Hi,
I'm getting a completely unknown error message when I make at POST request with PHP8.2. The request is somewhat large but post_max_size is 32M so this shouldn't be a problem.
This is the message
PHP message: PHP Warning: PHP Request Startup: Unable to create temporary file, Check permissions in temporary files directory. in Unknown on line 0;
PHP message: PHP Warning: PHP Request Startup: POST data can't be buffered; all data discarded in Unknown on line 0" while reading response header from upstream
Anyone have an idea what this could be?
Solved! Go to Solution.
Turns out that adding this to the form tag solved the problem.
<form method="post" action="" enctype="multipart/form-data">
Still a bit weird, imo, since far for 32M data was sent.
Turns out that adding this to the form tag solved the problem.
<form method="post" action="" enctype="multipart/form-data">
Still a bit weird, imo, since far for 32M data was sent.