Failed to load resource: the server responded with a status of 413 (Request Entity Too Large)

1ogrenci (15) 2 hafta önce sordu

Wordpress ile yaptığım sitemdeki formdan veri yollamak istiyorum (bi docx dosyası) ama form Failed to load resource: the server responded with a status of 413 (Request Entity Too Large) hatası veriyor. Sorun ne olabilir?

Toplam 1 cevap


1ogrenci (15) 2 hafta önce cevapladı

internetten sorunu çözdüm. Şu şekilde hallettim.

Nginx sunucuda nginx.conf içinde şu düzenleme yapılması gerekiyor (Eğer sununu senin değilse o zaman Hosting sağlayıcın ile iletişime geçmelisin)

nginx.conf, http context içinde

http {    
    client_max_body_size 8M;
} 

Bu işe yaramazsa o zaman location bloğuna da eklemek gerekir

location / {
    
    client_max_body_size 8M;
}

Burada 8M anlamı 8 Megabyte sen bunu istediğin gibi değiştirebilirsin.