-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Description
Steps to reproduce
Web based large file upload
Expected behaviour
File gets chunked and multiple ajax requests send the chunks to the server for reassembly
Actual behaviour
File is uploaded as a whole file. A single request is made
Server configuration
Operating system: RHEL 6
Web server: NGINX
Database: MySQL
PHP version: 5.5
ownCloud version: 6.0.3
Updated from an older ownCloud or fresh install:
List of activated apps: Files, Activity, Contacts, Pictures
The content of config/config.php:
I had to remove the identifying URLs so it seems a little empty.
<?php
$CONFIG = array (
'instanceid' => 'oc8fdcdb7be6',
'passwordsalt' => '',
'datadirectory' => '/var/www/html/macdrop_assets',
'dbtype' => 'mysql',
'version' => '6.0.3.1',
'dbname' => '',
'dbhost' => '',
'dbtableprefix' => '',
'dbuser' => '',
'dbpassword' => '',
'installed' => true,
'forcessl' => true,
'theme' => 'macdrop',
'proxy' => '',
'loglevel' => '2',
'maxZipInputSize' => 1073741824,
'allowZipDownload' => true,
'mail_domain' => '',
'mail_smtphost' => '',
'mail_smtpname' => 'macDrop',
'maintenance' => false,
'trusted_domains' =>
array (
0 => 'url1',
1 => 'url2',
),
);
Are you using external storage, if yes which one: local/smb/sftp/...
Are you using encryption: yes/no
Client configuration
Browser: Chrome
Operating system: Windows
Browser log
This is a 1.7GB file. One request taking 3.2 minutes.

If this feature does not exist I am willing to look into implementing it and making a pull request.