Error yang muncul di desktop client “HEADERS on invalid system”, error ini muncul waktu mengupload file gambar. Lebih jelasnya bisa dilihat dibawah ini
screenshot error nextcloud

di log web server

[error] 22941#22941: *6 client intended to send too large body: 1646496 bytes

dari log web server tersebut kelihatan errornya di webserver atau PHP yang butuh di naikin limit uploadnya. Edit file php.ini, ubah menjadi

post_max_size = 30M
upload_max_filesize = 30M

nilainya sesuaikan dengan kebutuhan.

Web server : Nginx
Edit file nginx.conf tambahkan code dibawah ini diantara block http { }

client_max_body_size 30M

kurang lebih hasilnya jadi

http {
...
client_max_body_size 30M
...
}

Untuk apache, yang perlu diubah hanya di php.ini. Setelah perubahan tersebut restart nginx dan php-fpm

systemctl restart php7.1-fpm.service
systemctl restart nginx

Leave a comment

Your email address will not be published. Required fields are marked *