I have xenforo and yetishare. In both, when i try to upload files around 256 mb, the progrss bar starts, goes till 150mb + and then the progess bar again comes back to 0% and start uploading again. It does like 4 times then shows error that the file can't be uploaded.
I can upload a file, 126mb without any problem.
My Php Info : http://dl.godgivens.com/temp.php
I have set them temp directory of php to /tmp and uploaded a .htaccess file there with this settings, [these are the only lines in it]
LimitRequestBody 0
php_value upload_max_filesize 0
php_value post_max_size 4939212390
My file uploader, is index.php, and the .htaccess file also has the above settings as well as the folder which the files are saved also have the above settings.
You could see my php.ini settings, link i gave above.
IN httpd.conf under my httpd folder in /etc i have set timeout to 900.
I couldn't find limit request body anywhere.
In php.conf, i have added this to the last section,
<Files *.php>
SetOutputFilter PHP
SetInputFilter PHP
LimitRequestBody 0
</Files>
and i have added this line to fcgid.conf,
FcgidMaxRequestLen 1073741824
So it looks like,
# This is the Apache server configuration file for providing FastCGI support
# via mod_fcgid
#
# Documentation is available at http://fastcgi.coremail.cn/doc.htm
LoadModule fcgid_module modules/mod_fcgid.so
<IfModule mod_fcgid.c>
<IfModule !mod_fastcgi.c>
AddHandler fcgid-script fcg fcgi fpl
</IfModule>
FcgidIPCDir /var/run/mod_fcgid/sock
FcgidProcessTableFile /var/run/mod_fcgid/fcgid_shm
FcgidIdleTimeout 40
FcgidProcessLifeTime 30
FcgidMaxProcesses 20
FcgidMaxProcessesPerClass 8
FcgidMinProcessesPerClass 0
FcgidConnectTimeout 30
FcgidIOTimeout 45000
FcgidInitialEnv RAILS_ENV production
FcgidIdleScanInterval 10
FcgidMaxRequestLen 1073741824
</IfModule>
I have also added edited it, in domain configuration, nginxdomainvirtualhost.php.
Rebooted servers, reloaded httpd, restarted https, reconfigured things, but still it is just as same as before:/
I want to be able to upload 1gb-2gb files in my forum.
Here is the example of it uploading, Please see the link below to see it uploading. http://gyazo.com/c40cb03c503f172a3bc737d688f7cb00.gif
This is the one I followed : 4GB HTTP File Uploads Using jQuery-File-Upload, Apache and PHP