Level 67
You set upload_max_filesize and post_max_size very, very, very small. See the php docs. Should be like "24M" for 24 megabytes, etc.
1 like
I get an error when I upload a 14 MB file. it occurs at the time of request and does not allow me to take any action. I am changing php.ini settings in index.php. Small files are loading, but stream_socket_sendto (): Broken pipe in large files.
ini_set('file_uploads', 'On'); ini_set('upload_tmp_dir', '/tmp'); ini_set('upload_max_filesize', 24); ini_set('post_max_size', 32);
Please or to participate in this conversation.