Hi,
I am trying to upload a large file with an OkHttpClient, using multipartpost.php on the server:
With smaller files it works fine, but with larger files I get "InterruptedIOException: timeout".
The PHP-file says
Is the reason on the client or the server side? I get the timeout after approx. 1 minute.
I am trying to upload a large file with an OkHttpClient, using multipartpost.php on the server:
With smaller files it works fine, but with larger files I get "InterruptedIOException: timeout".
The PHP-file says
B4X:
ini_set('max_execution_time', 36000);
set_time_limit(36000);
ini_set('post_max_size','200M');
ini_set('upload_max_filesize','200M');
ini_set('max_input_time','-1');
ini_set('memory_limit','200M');
...
Is the reason on the client or the server side? I get the timeout after approx. 1 minute.