-1

When I upload a big file, it stops for a long time and responds with this error:

has expired: ... AH01075: Error dispatching request to : (reading input brigade) ...

I saw that on server the file is nearly uploaded, only few bytes remaining, but it stops receiving. Maybe it checks the file in memory finding the type and stops.

more here: phpinfo

php code like in example code: upload.php

konenas
  • 80
  • 1
  • 12
  • 2
    There's no code here, just an error and links to a PDF which doesn't have a valid SSL certificate and a link to W3 Schools. I think this is too localized. – Funk Forty Niner Jan 06 '19 at 17:09
  • This php code from w3school executes with no problem uploading small files, but when I tried to upload a big file the above error occurred. – konenas Jan 06 '19 at 19:17

1 Answers1

1

Fix SSLRenegBufferSize to your need in apache2 configuration

in apache2 sites-enabled conf file add the following line inside <Directory ...> brackets :

"SSLRenegBufferSize 1024000" or more
konenas
  • 80
  • 1
  • 12