[ SOLVED ] Owncloud isn´t uploading more than 3.8GB files ( Big files )

Status
Not open for further replies.

Oscarhannud

Dabbler
Joined
Jun 29, 2012
Messages
10
Hi guys!

I installed the Owncloud plugin 8.2.1 and changed than max file size on php.ini to 10G, but when i was trying to upload an ISO with 4GB on Firefox or IE, it wasn´t possible to complete, it fills the progress bar but doesn´t upload to the server and doens´t show on file list. even on used storage space.

I teste a file with 3.8GB and it worked, but more than that, no :(

Any idea?

Thanks!
 

Oscarhannud

Dabbler
Joined
Jun 29, 2012
Messages
10
Hi Joshua!

Thanks! i read that page to change the upload max size but didn read the full text about problems with big files.

Here is my solution

I added 2 lines on .htaccess ( /usr/pbi/owncloud-amd64/www/owncloud/.htaccess )

php_value max_input_time 36000
php_value max_execution_time 36000

My .htacess is like this:

php_value upload_max_filesize 20G
php_value post_max_size 20G
php_value memory_limit 512M
php_value mbstring.func_overload 0
php_value always_populate_raw_post_data -1
php_value default_charset 'UTF-8'
#php_value LimitRequestBody 0 (i tried to add this line but it didn´t help me)
php_value max_input_time 36000
php_value max_execution_time 36000

php_value output_buffering 0

I tried to change the httpd.conf ( /usr/pbi/owncloud-amd64/etc/apache24/httpd.conf ) from Apache and commented the line :

LoadModule reqtimeout_module libexec/apache24/mod_reqtimeout.so

BUT IT DIDN´T HELP AS WELL.

My final Solution was just adding 2 lines on .htacess


php_value max_input_time 36000
php_value max_execution_time 36000


Thanks Joshua!!
 

Joshua Parker Ruehlig

Hall of Famer
Joined
Dec 5, 2011
Messages
5,949
welcome, glad you got it working!
 
Status
Not open for further replies.
Top