Upload stuck at approx. 200 MB
-
Hi Thom,
I run a site for sharing large files with your plugin (it’s great!).
When trying to upload files larger than 200MB (say 450MB) the upload hangs at about 200MB. I tried several big files with different filetypes. I have changed server settings to 2G (we have a VPS Cloud and can change max size using Plesk). This is not enough.
I changed the php.ini file with the following rules:
upload_max_filesize = 2000M
post_max_size = 2000M
max_execution_time = -1
max_input_time = -1
memory_limit = 2000M
file_uploads = On
upload_max_filesize memory_limit = 2000MThis didn’t help also. At last I also tried changing htaccess file:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /share/
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /share/index.php [L]
php_value upload_max_filesize 2000M
php_value post_max_size 2000M
php_value max_execution_time -1
php_value max_input_time -1
</IfModule>
# END WordPressUnfortunaly this also doesn’t resolve the problem. I’m starting to pull hears out of my head ??
When I check the page in Chrome I see this:
https://mydomain/share/wp-admin/admin-ajax.php?action=fileaway-manager Failed to load resource: net::ERR_CONNECTION_RESETMaybe you can help so I doen’t get bald ??
Thanks in advance.
- The topic ‘Upload stuck at approx. 200 MB’ is closed to new replies.