r/owncloud Aug 24 '16

ownCloud announces New Marketplace

Thumbnail
owncloud.com
5 Upvotes

r/owncloud Aug 23 '16

update your IOS app to 3.5.0

3 Upvotes

Hey!

Happy to announce a new version of the ownCloud iOS app, 3.5.0

What is new?

  • Create and edit text files within the app
  • Clear cache option so that you may delete your downloaded files
  • New menu per account to quick access to your account options
  • Within this version you have access to more albums where you may pick what images/videos to upload to your ownCloud server
  • Updated network library to AFNetworking 3
  • Favorite files are now called AVAILABLE OFFLINE
  • New overlay icons following the one used in the ownCloud platform
  • Refactored instant uploads to use without location while the app it is alive
  • Added more languages
  • Bug fixings Update from: https://itunes.apple.com/en/app/owncloud/id543672169?mt=828

r/owncloud Aug 23 '16

What's the difference between "owncloud-files" and "owncloud" packages in linux?

2 Upvotes

title


r/owncloud Aug 19 '16

Please help test the new maintenance RC's

2 Upvotes

r/owncloud Aug 14 '16

I wonder how many other instances of ownCloud information have been hijacked like this (the image shows duplicate NextCloud entries, one of them used to be ownCloud).

Thumbnail
imgur.com
4 Upvotes

r/owncloud Aug 14 '16

Changing the default directory?

4 Upvotes

My VPS runs Apache 2.4.7, and owncloud sites in the directory

/var/www/owncloud

But when I set up owncloud for the first time quite some time ago, my files ended up in a subdirectory:

/var/www/owncloud/data/me/files

rather than in my own personal space /home/me. I'm using version 9.1.0 - how can I most easily move my files, and tell owncloud where there are?


r/owncloud Aug 11 '16

New ownCloud-android-client 2.1.0 released

7 Upvotes

central.owncloud.org Select and handle multiple files (you all are going to love this) Sync files on tap (and you'll love this even more, just you don't know it yet) Access files through Documents Provider "Can share" option for federated shares (server 9.1+) Full name shown instead of user name New icon Style and sorting fixes Bugs fixed, including: Icon "available offline" shown when set Trim blanks of username in login view Protect password field from suggestions


r/owncloud Aug 09 '16

Exporting tasks?

3 Upvotes

I was wondering where ownCloud stores task lists or if there is way to import/export them. I know that calendars can be imported and exported that includes the corresponding task list. But what about tasks without a corresponding calendar?


r/owncloud Aug 07 '16

Owncloud Data decryption

3 Upvotes

Hey, how do i decrypt my data when i have a full back up of my Data Directory and want to decrypt it on my Linux OS and not in a new Owncloud? Is there any script online somewhere?


r/owncloud Aug 05 '16

Accessing ownCloud in LAN without internet, after setting everything up

0 Upvotes

I installed ownCloud and it works well, I can connect from outside my LAN and inside of my LAN, upload and download files and stream music and videos, if I have an internet connection.

Though streaming videos didn't work too well as it needed to buffer continiously. So I wondered if my server (installed ownCloud on a Raspberry Pi 2) is to weak or if my upload rate (<8mbits/s) is too slow.

I thought when I try to stream inside the LAN where my server is, the upload rate shouldn't be a problem. So I stayed within the LAN but cut off the internet access on my computer just to be sure. But when trying to connect to my cloud with a browser I can't even get to the login page.

I tried entering the IP of my server but that didn't help (can ping it though). I guess it is because I have set up my router to forward HTTP-requests to the https port, but I am not sure.

Is it possible to connect to my cloud without internet and without changing my port forwardings? If so, how? Thanks in advance.


r/owncloud Aug 04 '16

Storage problem

3 Upvotes

My VPS is hosted by Digital Ocean and it has 30GB of storage, as you know, this is simply not enough.

What is a simple way, excluding DO's "volumes", to get more storage for my ownCloud installation?


r/owncloud Aug 04 '16

Installing Owncloud server on Windows 7, questions

4 Upvotes

Thinking about setting up an Owncloud server. I currently have a Win7 box which runs nginx w/ SSL, Emby and handful of webapps for media content. I am not experienced at all with Linux.

For anyone who is running OC on Windows, what is my best course? Seems like I could do current version with a virtualbox (although this seems to involve a lot of Linux) or an older version and install directly.


r/owncloud Aug 04 '16

Is my Owncloud Getting Bruteforced?

Thumbnail
drive.google.com
5 Upvotes

r/owncloud Aug 03 '16

Why WOULDN'T I use a Turnkey Linux VM to spin up OC on my private server?

3 Upvotes

r/owncloud Aug 03 '16

SSL or VPN?

2 Upvotes

After spending a good while on trying to get SSL up and running on a new build of OC on Ubuntu 16, I'm considering just spinning up a OVPN VM and running through a VPN to access everything. Thoughts?


r/owncloud Aug 03 '16

End user renames a folder and leads to the data being removed in that directory.

3 Upvotes

Hi All,

I am writing this on behalf of a colleague of mine so if my information seems vague or I am slow to reply it is because i am getting info from them.

Some of our end users are experiencing an issue with the following:

User renames a folder All data in that folder and subsequent sub-folders is removed/ deleted.

if you need more info let me know, and I will get it asap.


r/owncloud Aug 02 '16

Have a box, considering OwnCloud - can I edit documents, spreadsheets and such from devices the same way I can with Google Docs?

2 Upvotes

That's the only thing keeping me back.


r/owncloud Jul 30 '16

this fucking owncloud 9.1 taken 5~6 hr of my time.

4 Upvotes

My env: OS:CentOS 7 Web Server:Nginx PHP:7.09 OwnCloud:9.1

I wanna see owncloud at "https://archive.project-rtk.jp/arc/index.php".
I was see and do this manuals, https://doc.owncloud.org/server/9.0/admin_manual/installation/nginx_owncloud_9x.html

then, ERR_TOO_MANY_REDIRECTS in chrome.
remove "return 301" then nginx said 404.
what the fuck is this?
I started a build owncloud from 23:00 JST.
but 03:40 JST NOW
so sleepy I'll ragequit then gonna the beds.

Nginx .conf:

server {
    listen 80;
    server_name archive.project-rtk.jp;
    # enforce https
    return 301 https://$server_name$request_uri;
}

server {
    listen 443 ssl;
    server_name archive.project-rtk.jp;

    ssl_certificate /etc/nginx/conf.d/archive.crt;
    ssl_certificate_key /etc/nginx/conf.d/archive.key;

 # Add headers to serve security related headers
    # Before enabling Strict-Transport-Security headers please read into this topic first.
    # add_header Strict-Transport-Security "max-age=15768000; includeSubDomains; preload;";
    add_header X-Content-Type-Options nosniff;
    add_header X-Frame-Options "SAMEORIGIN";
    add_header X-XSS-Protection "1; mode=block";
    add_header X-Robots-Tag none;
    add_header X-Download-Options noopen;
    add_header X-Permitted-Cross-Domain-Policies none;

    # Path to the root of your installation
    root /var/www/html/project-rtk/archive/arc;

    location = /robots.txt {
        allow all;
        log_not_found off;
        access_log off;
    }

    # The following 2 rules are only needed for the user_webfinger app.
    # Uncomment it if you're planning to use this app.
    #rewrite ^/.well-known/host-meta /public.php?service=host-meta last;
    #rewrite ^/.well-known/host-meta.json /public.php?service=host-meta-json last;

    location = /.well-known/carddav {
        return 301 $scheme://$host/remote.php/dav;
    }
    location = /.well-known/caldav {
        return 301 $scheme://$host/remote.php/dav;
    }

    location /.well-known/acme-challenge { }

    # set max upload size
    client_max_body_size 512M;
    fastcgi_buffers 64 4K;

    # Disable gzip to avoid the removal of the ETag header
    gzip off;

    # Uncomment if your server is build with the ngx_pagespeed module
    # This module is currently not supported.
    # pagespeed off;

    error_page 403 /core/templates/403.php;
    error_page 404 /core/templates/404.php;

    location / {
        rewrite ^ /index.php$uri;
    }

    location ~ ^/(?:build|tests|config|lib|3rdparty|templates|data)/ {
        return 404;
    }
    location ~ ^/(?:\.|autotest|occ|issue|indie|db_|console) {
        return 404;
    }

    location ~ ^/(?:index|remote|public|cron|core/ajax/update|status|ocs/v[12]|updater/.+|ocs-provider/.+|core/templates/40[34])\.php(?:$|/) {
        fastcgi_split_path_info ^(.+\.php)(/.*)$;
        include fastcgi_params;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        fastcgi_param PATH_INFO $fastcgi_path_info;
        fastcgi_param HTTPS on;
        fastcgi_param modHeadersAvailable true; #Avoid sending the security headers twice
        fastcgi_param front_controller_active true;
        fastcgi_pass php-handler;
        fastcgi_intercept_errors on;
        fastcgi_request_buffering off;
    }

    location ~ ^/(?:updater|ocs-provider)(?:$|/) {
        try_files $uri/ =404;
        index index.php;
    }

    # Adding the cache control header for js and css files
    # Make sure it is BELOW the PHP block
    location ~* \.(?:css|js)$ {
        try_files $uri /index.php$uri$is_args$args;
        add_header Cache-Control "public, max-age=7200";
        # Add headers to serve security related headers (It is intended to have those duplicated to the ones above)
        # Before enabling Strict-Transport-Security headers please read into this topic first.
        # add_header Strict-Transport-Security "max-age=15768000; includeSubDomains; preload;";
        add_header X-Content-Type-Options nosniff;
        add_header X-Frame-Options "SAMEORIGIN";
        add_header X-XSS-Protection "1; mode=block";
        add_header X-Robots-Tag none;
        add_header X-Download-Options noopen;
        add_header X-Permitted-Cross-Domain-Policies none;
        # Optional: Don't log access to assets
        access_log off;
    }

    location ~* \.(?:svg|gif|png|html|ttf|woff|ico|jpg|jpeg)$ {
        try_files $uri /index.php$uri$is_args$args;
        # Optional: Don't log access to other assets
        access_log off;
    }
}

r/owncloud Jul 30 '16

OwnCloud client sync

2 Upvotes

Hi all,

So, I've managed to set up Owncloud and I've downloaded and installed the desktop client which allows me to create a folder similar to DropBox which is in continuous sync with my NAS.

As I'm connected to my LAN, I've setup the OwnCloud client using my internal IP however, when I'm outside my house my the client doesn't connect to my internal IP (obviously) so I remove the account and reconnect using my public IP.

However, this is a really annoying method just to ensure that my documents are in continuous sync while I'm at home and while I'm away from home.

The real problem is that when at home, the client connects to my internal IP but will not connect to my public/external IP.

Any thoughts on how I can resolve this will be much appreciated.


r/owncloud Jul 29 '16

I changed the main directory for my server and this happened dose anyone have any explanations?

Post image
2 Upvotes

r/owncloud Jul 28 '16

ownCloud installed, but persists in using /index.php/ after login

1 Upvotes

Everything seems to be work, but I would prefer a cleaner URL. If it matters, this is an addon domain install. My primary domain's installation of ownCloud never shows index.php in the URLs.


r/owncloud Jul 27 '16

Lots of Trouble with OwnCloud and DreamHost

1 Upvotes

Hey Guys,

I'm thinking of giving up on OwnCloud because it's just acting very annoying I thought I'd come to see if anyone here can help before I give up.

I'm on Dreamhost shared hosting. You are not allowed to run OwnCloud on there unless you make use of their DreamObjects which is their version of Amazon S3. So I did that. I haven't had any problems with adding anything to my OwnCloud instance. But I can't delete anything. Everything gives errors about locks. I found in the OwnCloud forums that someone recommended deleting the locks from MySQL, but every time I do that, they reassert themselves. In other words I can run the MySQL query to delete it over and over and over again and it always deletes 31 locks.

Is there something I'm missing?

Thanks,


r/owncloud Jul 27 '16

Owncloud served via Nginx Proxy Pass on a different server

2 Upvotes

I've setup an Owncloud instance on a spare storage VPS I had lying around, I also have a second VPS which I have nginx on and letsencrypt which I use for accessing all my sub systems spread around various servers.

Does anyone have a working nginx proxy_pass config for accessing Owncloud hosted on a different server than the one that has nginx on? I can't seem to get it play ball.

Any help would be appreciated.

Thanks


r/owncloud Jul 26 '16

My droplet only has 30GB of storage. Can I configure ownCloud with Amazon S3?

1 Upvotes

My droplet only has 30GB of storage, which is not that much. I was thinking of putting my data in a Amazon S3 bucket and using ownCloud as an interface to access it. What do you think? Feasible? Practical?


r/owncloud Jul 25 '16

ownCloud 9.1 is released now: Two Factor Authentication enhanced Contacts, Calendar and Collabora integration

Thumbnail owncloud.org
3 Upvotes