Is there an upload limit when using Web Client in C#?

前端 未结 2 588
北荒
北荒 2020-12-21 09:09

Using UploadFile(\"upload.php\", \"POST\", filePath) with WebClient anything over 4mb will not upload. The limit in PHP is set at 48mb. Is there I need to set in C# ?

2条回答
  •  旧时难觅i
    2020-12-21 09:37

    I have solved the problem. By changing the following in the php.ini

    post_max_size = 40M

    I had already changed the upload_max_filesize but was not aware of this other param which needed changing.

提交回复
热议问题