Problems with upload files pluploader

my configuration use wwww.domain.com/pydio url

here i don’t usea a subdirectory and I confirm that plupload works.
Can you see if there is some error in the apache error log ?

Can you tell me how I can configure it to does use this subdirectory.
i test with virtualhost but not works.

This is my conf-file: /etc/apache2/sites-available/000-default-le-ssl.conf

  <IfModule mod_ssl.c>
  <VirtualHost *:443>
          ServerAdmin webmaster@localhost
          DocumentRoot /var/www/html
          ErrorLog ${APACHE_LOG_DIR}/error.log
          CustomLog ${APACHE_LOG_DIR}/access.log combined
          SSLCertificateFile /etc/letsencrypt/live/mywebsite/fullchain.pem
          SSLCertificateKeyFile /etc/letsencrypt/live/mywebsite/privkey.pem
          Include /etc/letsencrypt/options-ssl-apache.conf
          ServerName mywebsite.fullyqualified.name
          <Directory /var/www/html>
                  AllowOverride All
                  Require all granted
          </Directory>
          AllowEncodedSlashes NoDecode
          SSLProxyEngine On
          SSLProxyVerify None
          SSLProxyCheckPeerCN Off
          SSLProxyCheckPeerName Off
          ProxyPreserveHost On
          ProxyPass /loleaflet https://127.0.0.1:9980/loleaflet retry=0
          ProxyPassReverse /loleaflet https://127.0.0.1:9980/loleaflet
          ProxyPass /hosting/discovery https://127.0.0.1:9980/hosting/discovery retry=0
          ProxyPassReverse /hosting/discovery https://127.0.0.1:9980/hosting/discovery
          ProxyPassMatch "/lool/(.*)/ws$" wss://127.0.0.1:9980/lool/$1/ws nocanon
          ProxyPass /lool/adminws wss://127.0.0.1:9980/lool/adminws
          ProxyPass /lool https://127.0.0.1:9980/lool
          ProxyPassReverse /lool https://127.0.0.1:9980/lool
 </VirtualHost>
 </IfModule>

pydio installation is directly in in /var/www/html/
the .htaccess file in /var/www/html/ is the following

<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.*) index.php [L]
</IfModule>

My apache is configured as mpm-prefork.
In the site configuration is also included the part related to collabora.
The real host name has been changed as mywebsite.fullyqualified.name

Hi I used to use Pluploader too on Pydio until I came to the same problem as you. It was an issue that never resolved, perhaps due to design limitation. Looks like they still haven’t fix it in latest versions.

The solution for me was simply use the default HTML5 uploader, which already has ‘file-chunking’ capability so it essentially can be use instead of Pluploader (to overcome php file size limitation for large file size uploads).

It works perfectly here on my installation even on public shares.

for me config not works
i set it up candura said with default HTML5 uploader
pluploader does not work at all

The problem indeed is with whether pydio is installed in sub-directory or not… When it is not working, you can see in browser debugger that pydio is trying to look for plupload’s js and css files under “domain_name.com/plugins/…” instead of “domain_name.com/sub_dir/plugins…” . I reported this problem back last year when it was still v7. https://pydio.com/forum/f/topic/plupload-not-working-within-shared-folder/

It looks like they did attempt to fix this in v8.0,


but unfortunately the problem is still there.

I didn’t tested on an installation in a subdir, but in the shared folders of an installation in the root dir of a web site it works. So at least for shared folders they fixed it.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.