Navigation menu

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Find you apps folder within your ownCloud installation (Linux: /var/www/oc/apps )
  2. Unzip the e2eeShare zip package into this folder:

    Code Block
    cd /var/www/oc/apps
    unzip ~/Downloads/e2eeshare-1.0.zip
  3. Verify that the zip is successfully extracted:

    Code Block
    owncloud
    ├── apps
    ...
    │   ├── e2eeshare
    │   │   ├── appinfo
    │   │   ├── controller
    │   │   ├── css
    │   │   ├── db
    │   │   ├── img
    │   │   ├── js
    │   │   ├── l10n
    │   │   ├── lib
    │   │   └── templates
    ...
  4. Patch the guest plugin by editing app/guest/settings/admin.php (line ~46) so it looks like:

    Code Block
    ....
            public function getSectionID() {
                    return 'sharing';
            }
    ....
    Warning

    You must MUST patch the guest plugin 0.4.1 , otherwise you will not be able to enable e2ee for guests!

     

     

  5. Login to ownCloud with the admin user and finish installation by running the database upgrade

  6. Enter your license key in the configuration under 
     
  7. Add E2ee to allowed apps for guest access:
     
  8. Create a group for all e2ee users and add it within the group setup:
     

...